:root {
  --bg: #16130f;
  --bg-2: #1c1813;
  --bg-3: #221d17;
  --line: rgba(236, 230, 220, 0.08);
  --line-strong: rgba(236, 230, 220, 0.16);
  --text: #ece6dc;
  --text-soft: #b8b0a3;
  --text-mute: #7a7367;
  --text-faint: rgba(236, 230, 220, 0.04);
  --accent: #d4a574;
  --accent-2: #e8c39a;
  --accent-soft: rgba(212, 165, 116, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

/* ============== layout primitives ============== */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

.section {
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .section { padding: 88px 0; } }

/* huge faded section labels behind sections */
.ghost-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-faint);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}
.section > .wrap { position: relative; z-index: 1; }

/* small tracked-out section label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
}
.eyebrow .num { color: var(--accent); font-weight: 700; }
.eyebrow .dash {
  flex: 0 0 28px;
  height: 1px;
  background: var(--text-mute);
  opacity: 0.5;
}

/* big section title */
.title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 28px;
  max-width: 18ch;
  text-wrap: pretty;
}
.title strong { font-weight: 600; color: var(--text); }
.title .em { color: var(--accent); font-style: normal; font-weight: 400; }

/* body paragraph default */
.p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 56ch;
}
.p + .p { margin-top: 18px; }
.p strong { color: var(--text); font-weight: 600; }

/* ============== nav ============== */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  background: rgba(22, 19, 15, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
nav.top.scrolled { border-bottom-color: var(--line); }
nav .brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
nav .brand .dot { color: var(--accent); }
nav .links {
  display: flex;
  gap: 38px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
nav .links a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
nav .links a:hover { color: var(--accent); }
nav .pill {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}
nav .pill:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
@media (max-width: 880px) {
  nav.top { padding: 18px 24px; }
  nav .links { display: none; }
}

/* ============== buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: #1a1410;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(212, 165, 116, 0.4);
}
.btn .arrow {
  width: 18px;
  height: 1px;
  background: #1a1410;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #1a1410;
  border-right: 1px solid #1a1410;
  transform: rotate(45deg);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: none; }
.btn-ghost .arrow, .btn-ghost .arrow::after { background: currentColor; border-color: currentColor; }
.micro {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
}

/* ============== hero ============== */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(212, 165, 116, 0.05), transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(212, 165, 116, 0.03), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 16ch;
  text-wrap: balance;
  margin-top: 36px;
}
.hero h1 strong { font-weight: 600; }
.hero h1 .em { color: var(--accent); font-weight: 400; }
.hero-sub {
  margin-top: 36px;
  max-width: 56ch;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}
.hero-cta-row {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-side .meta { display: flex; gap: 48px; }
.hero-side .meta div span { display: block; color: var(--text); margin-top: 6px; letter-spacing: 0.04em; text-transform: none; font-size: 14px; }
.hero-counter {
  font-family: "Fraunces", serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--text-mute);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-counter span.frac { color: var(--accent); font-size: 24px; vertical-align: super; }

@media (max-width: 720px) {
  .hero { padding-top: 110px; min-height: auto; }
  .hero-side .meta { flex-direction: column; gap: 18px; }
}

/* ============== section: diagnostic ============== */
.diag {
  background: var(--bg);
}
.diag-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 80px;
  margin-top: 80px;
}
@media (max-width: 880px) {
  .diag-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
}
.diag-list { display: flex; flex-direction: column; }
.diag-item {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: start;
}
.diag-item:last-child { border-bottom: 1px solid var(--line); }
.diag-item .idx {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  padding-top: 4px;
}
.diag-item p { font-size: 17px; color: var(--text-soft); line-height: 1.65; }

/* ============== section: method ============== */
.method {
  background: var(--bg-2);
}
.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
}
@media (max-width: 880px) {
  .method-cards { grid-template-columns: 1fr; }
}
.m-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 48px 36px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.m-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.m-card .num {
  font-family: "Fraunces", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.m-card .num::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-top: 28px;
  opacity: 0.6;
}
.m-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 28px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}
.m-card p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}
.method-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.method-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}
.method-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.method-sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 50ch;
}

.before-after {
  background: var(--bg);
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .before-after-grid { grid-template-columns: 1fr; }
}
.before-after-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: var(--bg-2);
}
.before-after-card.before {
  background: rgba(236, 230, 220, 0.03);
}
.before-after-card.after {
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.14), rgba(36, 28, 20, 0.95));
}
.before-after-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(236, 230, 220, 0.08);
  border: 1px solid rgba(236, 230, 220, 0.12);
}
.before-after-card.after .tag {
  color: var(--accent);
  background: rgba(212, 165, 116, 0.16);
  border-color: rgba(212, 165, 116, 0.24);
}
.before-after-card .preview {
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 18px;
  background: rgba(236, 230, 220, 0.04);
}
.before-after-card.after .preview {
  background: rgba(236, 230, 220, 0.08);
}
.preview-top {
  width: 120px;
  height: 12px;
  border-radius: 999px;
  background: rgba(236, 230, 220, 0.16);
}
.preview-content {
  display: grid;
  gap: 12px;
}
.preview-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(236, 230, 220, 0.12);
}
.preview-line.short { width: 36%; }
.preview-line.mid { width: 60%; }
.preview-line.long { width: 92%; }
.before-after-card p {
  margin-top: auto;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}
.before-after-quote {
  margin-top: 44px;
  padding: 36px;
  border-radius: 28px;
  background: rgba(236, 230, 220, 0.03);
  border: 1px solid var(--line);
}
.before-after-quote p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 17px;
  max-width: 60ch;
}
.before-after-quote .author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.quote-avatar {
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2e2419 0%, #1f1810 100%);
  border: 1px solid var(--line);
  color: rgba(236, 230, 220, 0.55);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.quote-meta .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.quote-meta .role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============== section: included / not included ============== */
.lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 80px;
}
@media (max-width: 880px) {
  .lists-grid { grid-template-columns: 1fr; gap: 80px; }
}
.list-block h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.list-block .lead {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-soft);
  max-width: 44ch;
}
.checklist {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.checklist li {
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.checklist.minus li { color: var(--text-soft); }
.checklist.minus li::before {
  background: var(--text-mute);
  opacity: 0.6;
}
.closing {
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-mute);
  font-style: italic;
  max-width: 44ch;
  line-height: 1.65;
}
.investment-block {
  margin-top: 56px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  max-width: 720px;
}
.investment-block h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}
.investment-block p {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: var(--text);
  font-family: "Fraunces", serif;
  letter-spacing: 0;
}
.investment-block p strong {
  color: var(--accent);
  font-weight: 400;
}
.investment-block span {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============== section: limit ============== */
.limit {
  background: var(--bg);
  text-align: center;
  padding: 180px 0;
}
@media (max-width: 720px) { .limit { padding: 120px 0; } }
.limit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin: 56px 0;
  flex-wrap: wrap;
}
.limit-num {
  font-family: "Fraunces", serif;
  font-size: clamp(140px, 18vw, 220px);
  font-weight: 200;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 60%, #8c6a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.limit-text {
  text-align: left;
  max-width: 38ch;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
}
.limit-text strong { color: var(--text); font-weight: 600; }
.limit .label-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.limit .label-stack .k { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-mute); }
.limit .label-stack .v { font-size: 18px; color: var(--text); font-weight: 500; }
@media (max-width: 720px) {
  .limit-text { text-align: center; }
  .limit .label-stack { align-items: center; }
}

/* ============== section: about ============== */
.about {
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 80px;
  margin-top: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.portrait {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(236, 230, 220, 0.025),
      rgba(236, 230, 220, 0.025) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(180deg, #2a241d 0%, #1f1a14 100%);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait::after {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.portrait .silhouette {
  width: 60%;
  height: 70%;
  background: linear-gradient(180deg, transparent 0%, transparent 18%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.6) 100%);
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  margin-top: 18%;
  opacity: 0.5;
  display: none;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-text .name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about-text .role {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-text p {
  margin-top: 28px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 50ch;
}
.about-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.about-meta .k { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-mute); }
.about-meta .v { margin-top: 8px; font-size: 15px; color: var(--text); }

/* ============== section: cta final ============== */
.cta-final {
  background: var(--bg);
  text-align: center;
  padding: 180px 0;
}
.cta-final .title { margin: 28px auto 0; text-align: center; }
.cta-final .p { margin: 28px auto 0; text-align: center; }
.cta-final .btn { margin-top: 48px; }
.cta-final .micro { text-align: center; }
.cta-final .eyebrow { justify-content: center; }

/* ============== footer ============== */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--bg);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }
.foot-grid .brand-mark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.foot-grid .brand-mark span.dot { color: var(--accent); }
.foot-grid .col-mid { font-size: 13px; color: var(--text-soft); line-height: 1.7; text-align: center; }
.foot-grid .col-end { font-size: 12px; color: var(--text-mute); line-height: 1.6; text-align: right; }
.foot-grid .col-end .compl { margin-top: 8px; font-size: 11px; letter-spacing: 0.04em; }
@media (max-width: 720px) {
  .foot-grid .col-mid, .foot-grid .col-end { text-align: left; }
}

/* ============== modal ============== */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.78);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 56px 56px 48px;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.modal-back.open .modal { transform: translateY(0); }
@media (max-width: 720px) { .modal { padding: 40px 28px; } }
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--text); border-color: var(--line-strong); }
.modal .step-counter {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.modal .step-counter .now { color: var(--accent); }
.modal h2 {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
}
.modal .help {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-mute);
}
.progress {
  margin-top: 28px;
  display: flex;
  gap: 6px;
}
.progress div {
  flex: 1;
  height: 2px;
  background: var(--line-strong);
  transition: background 0.3s ease;
}
.progress div.on { background: var(--accent); }

.field {
  margin-top: 36px;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  color: var(--text);
  font-family: inherit;
  font-size: 18px;
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus { border-bottom-color: var(--accent); }
.field input::placeholder { color: var(--text-mute); }

.options {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 18px 22px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option:hover { border-color: var(--accent); }
.option.selected { border-color: var(--accent); background: var(--accent-soft); }
.option .o-arrow {
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
}

.modal-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link-btn {
  background: transparent;
  border: none;
  color: var(--text-mute);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.link-btn:hover { color: var(--text); }
.link-btn:disabled { opacity: 0.3; cursor: default; }

/* ============== stages ============== */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .stages { grid-template-columns: 1fr; } }
.stage {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stage:last-child { border-right: none; }
@media (max-width: 880px) {
  .stage { border-right: none; border-bottom: 1px solid var(--line); }
  .stage:last-child { border-bottom: none; }
}
.stage .st-num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stage .st-label {
  margin-top: 18px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
.stage .st-body {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}
.stages-tail {
  margin-top: 40px;
  font-size: 16px;
  color: var(--text-mute);
  font-style: italic;
  max-width: 60ch;
  line-height: 1.65;
}

/* ============== results bullets ============== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
  row-gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .results-grid { grid-template-columns: 1fr; } }
.results-grid .r-item {
  padding: 22px 0 22px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}
.results-grid .r-item::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}
.results-tail {
  margin-top: 40px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.65;
}
.results-tail strong { color: var(--text); }

/* ============== callout ============== */
.callout {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
@media (max-width: 720px) { .callout { padding: 72px 0; } }
.callout p {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300;
  color: var(--text);
  max-width: 32ch;
  margin: 0 auto;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.callout p .em { color: var(--accent); font-style: italic; }

/* ============== inline form section ============== */
.form-section {
  background: var(--bg);
  padding: 140px 0 160px;
  border-top: 1px solid var(--line);
  position: relative;
}
@media (max-width: 720px) { .form-section { padding: 88px 0 96px; } }
.form-box {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  max-width: 920px;
}
.form-box .full { grid-column: 1 / -1; }
.form-honey {
  display: none;
}
.form-box .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-box .label .num {
  font-family: "Fraunces", serif;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.form-box input.text-in,
.form-box select.text-in {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  color: var(--text);
  font-family: inherit;
  font-size: 18px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-box input.text-in:focus,
.form-box select.text-in:focus { border-bottom-color: var(--accent); }
.form-box input.text-in::placeholder { color: var(--text-mute); }
.form-box select.text-in {
  appearance: none;
  cursor: pointer;
}
.form-box select.text-in option {
  color: #1f1a15;
  background: #f5efe6;
}
.form-message a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.radio-opt:hover { border-color: var(--accent); }
.radio-opt.on { border-color: var(--accent); background: var(--accent-soft); }
.radio-opt .dot-box {
  width: 14px;
  height: 14px;
  border: 1px solid var(--text-mute);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.radio-opt.on .dot-box { border-color: var(--accent); }
.radio-opt.on .dot-box::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 18px;
}
.form-actions .micro-inline { font-size: 13px; color: var(--text-mute); font-style: italic; }
.form-message {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.5;
}
.form-message.success { color: var(--accent-2); }
.form-message.error { color: #f0b7a8; }
@media (max-width: 720px) {
  .form-box { grid-template-columns: 1fr; gap: 32px; max-width: 100%; }
  .radio-grid { grid-template-columns: 1fr; }
  .form-actions { justify-content: flex-start; }
}
/* fade-up scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
