@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #f2efe9;
  --paper: #fbf9f5;
  --ink: #161616;
  --muted: #5e5a55;
  --line: #d9d2c8;
  --panel: #e7dfd3;
  --accent: #202c25;
  --accent-soft: #d4e0d8;
  --radius: 28px;
  --shadow: 0 18px 50px rgba(24, 18, 8, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(180deg, #efe8dd 0%, #f7f3ec 100%);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.7; color: var(--muted); margin: 0 0 16px; }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.05; color: var(--ink); }
h1, h2 { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.02em; }
h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.6rem); }
h3 { font-size: 1.35rem; }

.page-shell { width: min(1180px, calc(100% - 40px)); margin: 24px auto; }
.hero, .section, .site-footer, .legal-wrap, .thanks-wrap {
  background: rgba(251, 249, 245, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 210, 200, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero { padding: 28px; }
.eyebrow, .section-label, .product-kicker, .micro {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #6c665f;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: start;
}
.hero-copy { padding: 30px 8px 10px; }
.lead { font-size: 1.12rem; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
}
.btn-dark { background: var(--accent); color: #f7f3ec; }
.btn-light { background: transparent; border-color: var(--line); }
.btn-full { width: 100%; }
.hero-panel { display: grid; gap: 16px; }
.panel-card {
  border-radius: 24px; padding: 24px; background: linear-gradient(180deg, #efe6d8 0%, #e5dbc9 100%);
}
.stat-card strong { display: block; font-size: 1.5rem; margin: 8px 0 10px; }
.steps-card ol { padding-left: 18px; margin: 12px 0 0; color: var(--ink); }
.steps-card li { margin-bottom: 10px; line-height: 1.5; }
.section { margin-top: 18px; padding: 30px; }
.intro-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.disclaimer {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  color: #5b534b; font-size: 0.97rem;
}
.split-head {
  display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px;
}
.product-list { display: grid; gap: 16px; }
.product-item {
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: #fcfaf6;
}
.product-item.alt { background: #f0ece4; }
.price-block {
  min-width: 110px; text-align: center; padding: 18px 16px; border-radius: 18px;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 1.2rem;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.benefit-card {
  padding: 24px; border-radius: 24px; background: linear-gradient(180deg, #f8f4ed 0%, #efe5d7 100%); border: 1px solid var(--line);
}
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 22px;
}
.time-step {
  padding: 18px; border-radius: 20px; background: #fcfaf6; border: 1px solid var(--line);
}
.time-step strong { display: block; margin-bottom: 12px; font-size: 1.2rem; }
.request-section {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 22px; align-items: start;
}
.contact-card {
  margin-top: 24px; padding: 22px; border-radius: 24px; background: var(--panel); border: 1px solid var(--line);
}
.request-form {
  padding: 24px; border-radius: 24px; background: #fcfaf6; border: 1px solid var(--line);
}
.request-form label {
  display: block; font-weight: 700; margin-bottom: 16px; color: var(--ink);
}
input, select, textarea {
  width: 100%; margin-top: 8px; border: 1px solid #cfc6ba; background: #fffdfa; color: var(--ink);
  border-radius: 16px; padding: 14px 16px; font: inherit;
}
textarea { resize: vertical; }
.form-note { font-size: 0.92rem; margin-top: 14px; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px; background: #fcfaf6;
}
summary { cursor: pointer; font-weight: 800; color: var(--ink); }
summary::-webkit-details-marker { display: none; }
.site-footer {
  margin: 18px 0 36px; padding: 28px 30px; text-align: center;
}
.site-footer nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 12px; }
.legal-body, .thanks-body { min-height: 100vh; display: grid; place-items: center; padding: 22px; }
.legal-wrap, .thanks-wrap {
  width: min(860px, 100%); padding: 34px;
}
.legal-box {
  margin: 24px 0; padding: 22px; border-radius: 22px; background: #f0ece4; border: 1px solid var(--line);
}
.back-link { display: inline-block; margin-bottom: 20px; font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid, .intro-band, .request-section, .benefits-grid, .timeline { grid-template-columns: 1fr; }
  .split-head, .product-item { grid-template-columns: 1fr; }
  .price-block { width: fit-content; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 100%); }
  .hero, .section, .site-footer, .legal-wrap, .thanks-wrap { padding: 22px; border-radius: 24px; }
  .hero-copy { padding: 10px 0 0; }
}
