:root {
  --bg: #f3efe7;
  --paper: #fffdf8;
  --ink: #1f1a17;
  --muted: #6d635b;
  --line: #d8cdc1;
  --accent: #a65a3a;
  --accent-soft: #efe0d7;
  --dark: #201b18;
}

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

a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto;
}

.topbar {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 24px;
  align-items: end;
  padding: 26px 0 34px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.topbar h1,
.hero-copy h2,
.section-heading h2,
.legal-header h1,
.thanks-panel h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.02;
}

.topbar h1 { font-size: clamp(42px, 6vw, 78px); max-width: 9.5ch; }
.topcard {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(48, 34, 24, 0.06);
}
.topcard .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.topcard p, .topcard strong { display: block; margin: 8px 0 0; line-height: 1.5; }

.hero-layout,
.request-section {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
}

.hero-copy {
  background: var(--paper);
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
}

.lead,
.hero-copy p,
.product-card p,
.benefit-list p,
.timeline span,
.faq-list p,
.request-copy p,
.request-form label,
.legal-content p,
.legal-content li,
.thanks-panel p {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.microcopy { color: var(--muted); margin-top: 18px; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.button.primary,
.request-form button {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.button.secondary {
  background: transparent;
}

.hero-panel {
  display: grid;
  gap: 16px;
}
.metric-block {
  background: #2a2420;
  color: #f7f2ea;
  padding: 24px;
  border-radius: 24px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.metric-block span {
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  opacity: .8;
}
.metric-block strong { font-size: 26px; font-weight: 500; line-height: 1.15; }

section { margin-top: 28px; }
.section-heading { margin-bottom: 20px; }
.section-heading h2 { font-size: clamp(32px, 4vw, 54px); max-width: 12ch; }
.section-heading.narrow h2 { max-width: 11ch; }

.product-ribbon,
.editorial-grid,
.process-band,
.faq-wrap,
.request-section,
.legal-shell,
.thanks-panel {
  background: rgba(255,253,248,0.8);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(48, 34, 24, 0.05);
}

.product-ribbon,
.editorial-grid,
.process-band,
.faq-wrap,
.request-section { padding: 30px; }

.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  background: #fcfaf5;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.product-card.accent { background: var(--accent-soft); }
.product-card.dark { background: #292321; color: #f6efe7; }
.product-card.dark p, .product-card.dark .kicker { color: #f1e7db; }
.product-card .kicker {
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
}
.product-card h3 { font-size: 30px; font-weight: 500; line-height: 1.08; margin: 12px 0; }
.price-row { margin-top: auto; padding-top: 18px; }
.price-row span { font-size: 28px; }

.benefit-list,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-list article,
.faq-list article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.benefit-list h3,
.faq-list h3 { margin: 0 0 10px; font-size: 24px; font-weight: 500; }

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.timeline strong { font-size: 24px; }

.disclaimer-box {
  background: #f8efe8;
  border: 1px solid #e4cab9;
  border-radius: 22px;
  padding: 18px 20px;
}
.disclaimer-box p,
.legal-note p,
.legal-inline {
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  line-height: 1.7;
}

.request-copy { padding: 6px 4px 0 0; }
.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.request-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.request-form label:nth-child(5) { grid-column: 1 / -1; }
.request-form button { width: fit-content; margin-top: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: #fffdfa;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }

.site-footer,
.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 26px 0 40px;
  font-family: Inter, Arial, sans-serif;
}
.site-footer div:last-child,
.legal-footer { display: flex; gap: 18px; flex-wrap: wrap; }

.legal-body,
.thanks-body { min-height: 100vh; }
.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 28px auto;
  padding: 28px;
}
.legal-header { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.legal-header h1 { font-size: clamp(34px, 4.5vw, 58px); }
.legal-content section { margin-top: 22px; }
.legal-content h2 { font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.legal-note {
  background: #f8efe8;
  border: 1px solid #e4cab9;
  border-radius: 18px;
  padding: 18px;
}

.thanks-body {
  display: grid;
  place-items: center;
  padding: 24px;
}
.thanks-panel {
  width: min(760px, 100%);
  padding: 34px;
  text-align: left;
}
.thanks-panel h1 { font-size: clamp(36px, 6vw, 64px); max-width: 10ch; }
.thanks-meta {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .topbar,
  .hero-layout,
  .request-section,
  .cards.three-up,
  .benefit-list,
  .faq-list,
  .request-form { grid-template-columns: 1fr; }
  .page-shell,
  .legal-shell { width: min(100% - 24px, 100%); }
  .site-footer,
  .legal-footer { flex-direction: column; align-items: flex-start; }
}
