:root {
  --bg: #f7f0e5;
  --paper: #fff9f1;
  --ink: #1d2630;
  --muted: #5f665f;
  --line: #d7c9b5;
  --accent: #d56737;
  --accent-soft: #f1c08c;
  --sage: #cfd4bf;
  --deep: #25333a;
  --shadow: 0 24px 70px rgba(29, 38, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(241, 192, 140, 0.18), transparent 22%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-color: rgba(213, 103, 55, 0.6);
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-color: var(--accent);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.topbar,
.legal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 14px 0 28px;
}

.mark,
.back-link {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 18px;
}

.hero {
  margin-bottom: 22px;
}

.hero-strip {
  grid-column: 1 / -1;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255, 249, 241, 0.82);
  box-shadow: var(--shadow);
}

.panel-hero {
  padding: 42px;
  min-height: 100%;
}

.panel-note {
  padding: 28px;
  background: linear-gradient(180deg, rgba(207, 212, 191, 0.42), rgba(255, 249, 241, 0.9));
}

.panel-accent {
  padding: 22px 26px;
  background: linear-gradient(90deg, rgba(213, 103, 55, 0.1), rgba(255, 249, 241, 0.95));
}

.panel-heading,
.panel-soft,
.panel-contrast,
.panel-form,
.panel-legal {
  padding: 30px;
}

.panel-soft {
  background: rgba(255, 249, 241, 0.9);
}

.panel-contrast {
  color: var(--paper);
  background: var(--deep);
  border-color: rgba(255,255,255,0.12);
}

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

h1,
h2,
h3,
summary {
  margin-top: 0;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  line-height: 1.03;
  margin-bottom: 14px;
}

h3,
summary {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

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

.button-primary,
.button-secondary,
.request-form button {
  appearance: none;
  border: 1px solid var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary,
.request-form button {
  background: var(--ink);
  color: var(--paper);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-primary:hover,
.button-secondary:hover,
.request-form button:hover {
  transform: translateY(-2px);
}

.section-block {
  margin: 20px 0;
}

.guide-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.guide-band:last-of-type {
  border-bottom: none;
}

.guide-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.guide-number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage);
  font-weight: 700;
}

.guide-price {
  font-size: 1.15rem;
  font-weight: 700;
}

.two-column-layout,
.request-layout,
.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-list {
  padding-left: 18px;
  margin: 0;
}

.benefit-list li + li {
  margin-top: 12px;
}

.narrow-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline-step {
  padding: 24px 18px;
  background: rgba(255, 249, 241, 0.78);
  border: 1px solid var(--line);
  min-height: 100%;
}

.timeline-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 700;
}

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

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 249, 241, 0.82);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(213, 103, 55, 0.22);
  border-color: var(--accent);
}

.contact-card {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer {
  margin-top: 26px;
  padding: 26px 0 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  width: 100%;
  margin: 0;
  color: var(--muted);
}

.legal-shell,
.thankyou-shell {
  min-height: 100vh;
}

.legal-sidebar {
  align-self: start;
  position: sticky;
  top: 18px;
}

.legal-content section + section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-footer {
  margin-top: 20px;
}

.thankyou-shell {
  display: grid;
  place-items: center;
}

.thankyou-card {
  width: min(760px, 100%);
}

.thankyou-points {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.34);
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .editorial-grid,
  .two-column-layout,
  .request-layout,
  .legal-layout,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .guide-band {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .legal-header,
  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .panel-hero,
  .panel-note,
  .panel-accent,
  .panel-heading,
  .panel-soft,
  .panel-contrast,
  .panel-form,
  .panel-legal {
    padding: 22px;
  }

  h1 {
    max-width: 100%;
  }
}
