:root {
  --bg: #f2eee6;
  --paper: #fbf7f1;
  --panel: #efe7db;
  --ink: #201c18;
  --muted: #6b6259;
  --line: #d3c4b2;
  --accent: #b15a3c;
  --accent-2: #9a874e;
  --accent-3: #556b5c;
  --deep: #1f2520;
  --deep-soft: #2b332d;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(38, 27, 17, 0.08);
}

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

a { color: inherit; }

.site-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}

.rail {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 34px 26px;
  border-right: 1px solid rgba(32, 28, 24, 0.08);
  background: rgba(251, 247, 241, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.kicker,
.section-label,
.light {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

.rail-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 16px;
}

.rail-copy,
.section-intro,
.guide-item p,
.benefit-grid p,
.timeline p,
.faq-list p,
.request-form span,
.footer p,
.legal-wrap p,
.thankyou-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.rail-nav {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.rail-nav a,
.footer-links a,
.legal-wrap a {
  text-decoration: none;
}

.rail-contact {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.content {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.panel {
  background: rgba(251, 247, 241, 0.92);
  border: 1px solid rgba(32, 28, 24, 0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.soft-panel { background: rgba(239, 231, 219, 0.66); }
.dark-panel {
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-soft) 100%);
  color: #f6efe4;
}
.dark-panel .section-label,
.dark-panel p { color: rgba(246, 239, 228, 0.74); }

.hero-grid,
.split,
.stats-row,
.benefit-grid {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.6fr 0.9fr;
  align-items: end;
}

.hero h2,
.section-head h3,
.legal-wrap h1,
.thankyou-wrap h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}

.hero h2 { font-size: clamp(44px, 7vw, 76px); max-width: 880px; }
.section-head h3 { font-size: clamp(28px, 4vw, 42px); max-width: 760px; }
.hero-note {
  padding: 22px;
  border-radius: 24px;
  background: rgba(177, 90, 60, 0.09);
  border: 1px solid rgba(177, 90, 60, 0.15);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
}
.button-dark { background: var(--deep); }

.stats-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.stats-row div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.stats-row span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.stats-row strong { font-size: 18px; }

.guide-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.guide-item {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(32, 28, 24, 0.08);
}
.guide-item h4,
.benefit-grid h4,
.timeline h4,
.footer-name {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.guide-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(32, 28, 24, 0.07);
}
.accent-a { background: rgba(177, 90, 60, 0.12); }
.accent-b { background: rgba(154, 135, 78, 0.15); }
.accent-c { background: rgba(85, 107, 92, 0.14); }
.offset { margin-left: 9%; }

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}
.benefit-grid > div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.timeline li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.timeline li span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.faq-list details {
  background: rgba(251, 247, 241, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-list p { margin: 12px 0 0; }

.request-panel {
  display: grid;
  gap: 22px;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.request-form label {
  display: grid;
  gap: 8px;
}
.request-form label:last-of-type { grid-column: 1 / -1; }
.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf4;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}
.request-form button { justify-self: start; }

.footer {
  display: grid;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.disclaimer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.legal-body,
.thankyou-body {
  min-height: 100vh;
  padding: 28px;
}
.legal-wrap,
.thankyou-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(251, 247, 241, 0.96);
  border-radius: 30px;
  border: 1px solid rgba(32, 28, 24, 0.08);
  box-shadow: var(--shadow);
  padding: 34px;
}
.legal-wrap h1,
.thankyou-wrap h1 { font-size: clamp(36px, 6vw, 58px); margin-bottom: 12px; }
.legal-wrap h2 {
  font-size: 22px;
  margin: 28px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.legal-contact { margin-bottom: 24px; }
.legal-disclaimer { margin-top: 34px; }
.thankyou-card {
  margin: 28px 0;
  padding: 22px;
  border-radius: 24px;
  background: rgba(177, 90, 60, 0.09);
  border: 1px solid rgba(177, 90, 60, 0.15);
}

@media (max-width: 980px) {
  .site-shell { grid-template-columns: 1fr; }
  .rail {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 28, 24, 0.08);
    gap: 24px;
  }
  .hero-grid,
  .stats-row,
  .benefit-grid,
  .request-form,
  .split { grid-template-columns: 1fr; }
  .offset { margin-left: 0; }
}

@media (max-width: 640px) {
  .content,
  .legal-body,
  .thankyou-body { padding: 16px; }
  .panel,
  .legal-wrap,
  .thankyou-wrap,
  .rail { padding: 22px; }
  .hero h2 { font-size: 40px; }
  .timeline li { grid-template-columns: 48px 1fr; }
}
