:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --bg-accent: #efe7db;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf2;
  --border: rgba(111, 89, 58, 0.14);
  --text: #201a15;
  --muted: #6c6055;
  --accent: #8c6b43;
  --accent-strong: #6f5130;
  --accent-soft: rgba(140, 107, 67, 0.12);
  --shadow: 0 18px 60px rgba(61, 44, 23, 0.10);
  --shadow-strong: 0 18px 40px rgba(33, 25, 19, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 152, 113, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(143, 125, 102, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f5f1ea 40%, #f2ede6 100%);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.95em;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.7;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(160, 132, 96, 0.18), transparent 70%);
}

.page-shell::after {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(115, 150, 136, 0.14), transparent 70%);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 40px 0 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 234, 0.86)),
    var(--surface);
  border: 1px solid rgba(111, 89, 58, 0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 18%, transparent 42%);
  pointer-events: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.brand-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 21, 48, 0.20);
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #a78358, #765433);
  box-shadow: 0 0 0 6px rgba(140, 107, 67, 0.08);
}

h1 {
  margin: 18px 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.action-button:hover {
  transform: translateY(-1px);
}

.action-button--primary {
  color: #fffaf3;
  background: linear-gradient(180deg, #8f6c44, #6e4e2f);
  box-shadow: 0 14px 28px rgba(111, 81, 48, 0.20);
}

.action-button--secondary {
  color: var(--accent-strong);
  background: rgba(255, 251, 246, 0.72);
  border-color: var(--border);
}

.layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 8px 0 56px;
}

.side-nav {
  position: sticky;
  top: 20px;
  align-self: start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(61, 44, 23, 0.05);
}

.side-nav h2 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.side-nav ol {
  margin: 0;
  padding-left: 18px;
}

.side-nav li {
  margin: 8px 0;
  color: var(--muted);
}

.side-nav a {
  text-decoration: none;
}

.side-nav a:hover,
.inline-link:hover {
  color: var(--accent-strong);
}

.content {
  display: grid;
  gap: 18px;
}

.section-card {
  padding: 26px 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 14px 44px rgba(61, 44, 23, 0.06);
  backdrop-filter: blur(14px);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9e7a50, #755533);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(117, 85, 51, 0.22);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 14px;
}

p:last-child,
ul:last-child,
.feature-grid:last-child,
.faq-list:last-child,
.callout:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.callout {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(140, 107, 67, 0.08), rgba(140, 107, 67, 0.04));
  border: 1px solid rgba(140, 107, 67, 0.12);
  color: #4f4338;
}

.inline-link {
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.mini-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.80);
  border: 1px solid rgba(111, 89, 58, 0.10);
}

.mini-card strong,
.faq-item strong {
  font-size: 1rem;
}

.mini-card span,
.faq-item span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(111, 89, 58, 0.10);
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  margin-top: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2d241d, #423327);
  color: #f8efe4;
  box-shadow: var(--shadow-strong);
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-card a {
  color: #f8efe4;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(248, 239, 228, 0.35);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 0 56px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 920px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: relative;
    top: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    padding-top: 18px;
  }

  .hero-card,
  .section-card,
  .side-nav {
    padding: 20px;
    border-radius: 22px;
  }

  .brand-lockup {
    gap: 12px;
    margin-bottom: 18px;
  }

  .brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-meta,
  .hero-actions {
    gap: 10px;
  }

  .meta-pill,
  .action-button {
    width: 100%;
  }
}
