
:root {
  --bg: #f4f1ea;
  --paper: #fbf8f1;
  --panel: #ebe4d8;
  --ink: #12233a;
  --muted: #5b6879;
  --line: rgba(18, 35, 58, 0.16);
  --accent: #536b95;
  --accent-soft: #dce4f1;
  --warm: #b47b5b;
  --success: #dde7dc;
  --shadow: 0 22px 52px rgba(18, 35, 58, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(83,107,149,0.12), transparent 30%),
    linear-gradient(180deg, #f7f5ef 0%, var(--bg) 58%, #efe8dc 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
img { max-width: 100%; }

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px;
}

.topbar {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.brand-spine {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand-spine .overline,
.overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-spine h1,
.hero-title,
.section-title,
.legal-title,
.thankyou-title {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.03em;
}

.brand-spine h1 {
  font-size: 2.2rem;
  line-height: 0.95;
  margin: 0.45rem 0 1rem;
}

.spine-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.spine-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.spine-card {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.spine-card strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.main-column {
  display: grid;
  gap: 18px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr;
  gap: 18px;
}

.hero-copy,
.hero-aside,
.section,
.footer-card,
.legal-shell,
.thankyou-shell {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255,255,255,0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 36px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  margin: 0.4rem 0 1rem;
  max-width: 10ch;
}

.hero-lead {
  font-size: 1.12rem;
  max-width: 56ch;
  color: var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.meta-block {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.meta-block span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-aside {
  padding: 22px;
  background: linear-gradient(180deg, rgba(236,228,216,0.85), rgba(255,255,255,0.74));
}

.hero-aside h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}

.guide-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.guide-band {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0 6px;
}

.muted { color: var(--muted); }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid rgba(83,107,149,0.18);
  font-size: 0.9rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.section {
  padding: 30px;
}

.section-title {
  font-size: 2.35rem;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.feature-list,
.step-list,
.faq-list,
.link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item,
.step-item,
.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-weight: 700;
  margin-right: 12px;
  flex: 0 0 auto;
}

.step-head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
}

.split-note {
  padding: 18px 20px;
  background: var(--panel);
  border-radius: 18px;
  margin-top: 20px;
}

.callout {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(83,107,149,0.08), rgba(255,255,255,0.7));
  border: 1px solid var(--line);
  margin-top: 18px;
}

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

.form-grid .full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 6px;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(18,35,58,0.18);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button {
  padding: 14px 20px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
}

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

.disclaimer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-card {
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin: 18px 0 28px;
}

.footer-card small,
.legal-note,
.thankyou-note {
  color: var(--muted);
}

.link-list a { text-decoration: underline; text-underline-offset: 3px; }

.legal-shell,
.thankyou-shell {
  padding: 34px;
  margin: 28px auto;
  max-width: 920px;
}

.legal-title,
.thankyou-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 0.4rem 0 1rem;
}

.legal-shell section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}

.legal-shell h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.contact-block {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--panel);
  margin: 18px 0;
}

.thankyou-shell {
  text-align: left;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.timeline div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.76);
}

@media (max-width: 1080px) {
  .topbar,
  .hero-panel,
  .section-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }
  .brand-spine {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell { padding: 16px; }
  .hero-copy,
  .hero-aside,
  .section,
  .legal-shell,
  .thankyou-shell,
  .brand-spine,
  .footer-card { padding: 22px; }
  .hero-meta,
  .form-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: none; }
}
