:root {
  --bg: #f4ede3;
  --paper: #fbf7f1;
  --ink: #1f1c18;
  --muted: #6d665e;
  --line: rgba(31, 28, 24, 0.14);
  --accent: #a65f37;
  --accent-soft: #ead6c6;
  --accent-deep: #60351d;
  --olive: #71765a;
  --rose: #d4b3a5;
  --shadow: 0 20px 50px rgba(50, 35, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: linear-gradient(180deg, #efe5d7 0%, var(--bg) 52%, #f7f2eb 100%);
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.65; margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.05; margin: 0 0 1rem; font-weight: 600; letter-spacing: -0.03em; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 13ch; }
h3 { font-size: 1.45rem; }

.page-shell, .legal-shell { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.topbar, .site-footer, .legal-header, .legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.topbar {
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.01em; }
.brand.small { font-size: 1rem; }
.eyebrow, .section-tag, .tile-kicker, .ribbon-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
}
.topnav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
  padding-top: 6px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.4fr 0.86fr;
  gap: 42px;
  padding: 56px 0 34px;
}
.hero-copy .lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}
.hero-panel {
  align-self: start;
  display: grid;
  gap: 16px;
  padding-top: 28px;
}
.metric-card, .note-card, .guide-tile, .request-form, .thanks-card, .faq-items details {
  background: rgba(251, 247, 241, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.metric-card {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
}
.metric-card span { color: var(--muted); }
.note-card {
  border-radius: 26px;
  padding: 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--accent);
  color: #fff8f0;
  border-color: transparent;
}
.button.secondary { background: transparent; }
.button.full { width: 100%; }
.feature-ribbon {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 10px 0 56px;
}
.guide-grid, .editorial-band, .process-strip, .faq-stack, .request-section { padding: 26px 0 64px; }
.section-head { margin-bottom: 26px; }
.section-head.narrow h2 { max-width: 16ch; }
.guides-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.guide-tile {
  min-height: 320px;
  padding: 26px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.accent-a { background: linear-gradient(180deg, rgba(234, 214, 198, 0.96), rgba(251, 247, 241, 0.94)); }
.accent-b { background: linear-gradient(180deg, rgba(212, 179, 165, 0.82), rgba(251, 247, 241, 0.95)); }
.accent-c { background: linear-gradient(180deg, rgba(113, 118, 90, 0.22), rgba(251, 247, 241, 0.95)); }
.tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tile-meta span { color: var(--muted); }
.editorial-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-column { padding: 34px 0; }
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-list h3 { font-size: 1.1rem; }
.benefit-list p { color: var(--muted); }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  font-size: 1.2rem;
}
.faq-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-items details {
  border-radius: 20px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 600; margin-bottom: 10px; }
.request-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.contact-list li { margin-bottom: 12px; color: var(--muted); }
.request-form {
  border-radius: 28px;
  padding: 24px;
}
label { display: block; margin-bottom: 16px; }
label span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  font: inherit;
  color: var(--ink);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.disclaimer {
  color: var(--accent-deep);
  font-size: 0.92rem;
  max-width: 64ch;
}
.disclaimer.compact { margin-top: 18px; }

.legal-shell { padding: 26px 0 40px; }
.legal-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--muted);
}
.legal-content {
  width: min(820px, 100%);
  padding: 38px 0;
}
.legal-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-content h2 { font-size: 1.45rem; margin-top: 30px; max-width: none; }
.legal-footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
}

.theme-thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.thanks-wrap {
  width: min(760px, calc(100% - 32px));
  padding: 32px 0;
}
.thanks-card {
  border-radius: 34px;
  padding: 42px;
  text-align: left;
}
.center { justify-content: center; }
.thanks-list {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 960px) {
  .hero-split,
  .guides-layout,
  .editorial-band,
  .request-section,
  .faq-items,
  .benefit-list,
  .topbar,
  .site-footer,
  .legal-header,
  .legal-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .guides-layout,
  .benefit-list,
  .faq-items { display: grid; }
  h1 { max-width: none; }
}

@media (max-width: 640px) {
  .page-shell, .legal-shell { width: min(100% - 24px, 1240px); }
  .hero-split { padding-top: 34px; }
  .guide-tile, .request-form, .thanks-card { padding: 20px; }
  .timeline li { grid-template-columns: 52px 1fr; }
  .button { width: 100%; }
}
