:root {
  --color-bg: #f8f5f0;
  --color-bg-soft: #efe7dc;
  --color-text: #1f1b18;
  --color-muted: #6f6259;
  --color-accent: #ff7456;
  --color-accent-dark: #d95c42;
  --color-highlight: #dddd6b;
  --color-border: #e4d8cb;
  --color-white: #ffffff;
  --shadow: 0 24px 80px rgba(31, 27, 24, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% -10%, rgba(221, 221, 107, .14), transparent 26rem),
    radial-gradient(circle at 94% 2%, rgba(255, 116, 86, .11), transparent 28rem),
    linear-gradient(180deg, #fffaf5 0, var(--color-bg) 360px, #f3eadf 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote { margin-top: 0; }
.container { width: min(1380px, 100%); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 240, .88);
  border-bottom: 1px solid rgba(228, 216, 203, .7);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-inner > *, .hero > *, .intro-flow > *, .program-layout > *, .decision > *, .cta-box > * { min-width: 0; }
.brand { display: inline-flex; flex-direction: column; gap: 1px; width: fit-content; letter-spacing: .08em; text-transform: uppercase; }
.brand strong { font-size: .92rem; font-weight: 700; }
.brand span { color: var(--color-muted); font-size: .68rem; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--color-muted); font-size: .88rem; font-weight: 600; }
.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--color-text); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .06em;
}
.btn-primary {
  padding: 16px 28px;
  color: var(--color-text);
  background: var(--color-highlight);
  border: 1px solid rgba(31, 27, 24, .08);
  box-shadow: 0 14px 30px rgba(31, 27, 24, .08);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--color-accent); color: var(--color-white); }
.btn-secondary { color: var(--color-text); background: transparent; }
.btn-area { min-height: 44px; padding: 12px 18px; border: 1px solid var(--color-border); background: rgba(255, 255, 255, .54); }
.btn-area:hover { border-color: var(--color-accent); background: var(--color-white); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  grid-template-areas:
    "copy image"
    "note image";
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: 54px;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-image { grid-area: image; }
.hero-note { grid-area: note; align-self: start; }
.eyebrow { margin-bottom: 16px; color: var(--color-accent-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-title, .section-title, .quote, .route-card h3, .program-cards h3, .decision h3 {
  font-family: "Playfair Display", Georgia, serif;
}
.hero-title { max-width: 860px; margin-bottom: 22px; font-size: clamp(3.2rem, 6.3vw, 6.1rem); font-weight: 500; line-height: .96; letter-spacing: -.04em; }
.italic-accent { color: var(--color-accent); font-style: italic; font-weight: 500; }
.hero-lead, .body-text { color: var(--color-muted); font-size: 1.02rem; line-height: 1.72; overflow-wrap: break-word; }
.hero-lead { max-width: 600px; margin-bottom: 0; font-weight: 500; }
.body-text { max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.hero-link { min-height: 52px; padding: 0 4px; color: var(--color-accent-dark); }
.hero-image, .about-image, .cta-image { overflow: hidden; border-radius: 30px; background: var(--color-bg-soft); box-shadow: var(--shadow); }
.hero-image { min-height: min(660px, calc(100vh - 156px)); }
.hero-note {
  width: min(430px, 100%);
  padding: 18px 20px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}
.hero-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-accent-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-note strong { display: block; font-size: .98rem; line-height: 1.35; }

.symptoms-band {
  background: rgba(239, 231, 220, .74);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.symptoms-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(320px, 1.3fr);
  gap: 40px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-title { max-width: 780px; margin-bottom: 24px; font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -.03em; }
.symptoms-layout .section-title { margin-bottom: 0; }
.symptom-list { display: flex; flex-wrap: wrap; gap: 12px; }
.symptom-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 92, 66, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  color: var(--color-text);
  font-weight: 700;
}

.intro-flow {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.about-image { min-height: 570px; }
.intro-copy .body-text + .body-text { margin-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; color: var(--color-accent-dark); font-weight: 800; }

.route { padding-top: 88px; padding-bottom: 88px; border-top: 1px solid var(--color-border); }
.route-head {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.route-head .section-title { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.route-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: 16px; }
.route-card, .program-cards article, .decision article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.route-card:hover, .program-cards article:hover, .decision article:hover { transform: translateY(-3px); background: rgba(255,255,255,.78); border-color: rgba(255,116,86,.42); }
.route-card span, .program-cards span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.route-card h3, .program-cards h3, .decision h3 { margin-bottom: 8px; font-size: 1.48rem; line-height: 1.15; }
.route-card strong { display: block; margin-bottom: 12px; color: var(--color-text); }
.route-card p, .program-cards p, .decision p { margin-bottom: 0; color: var(--color-muted); }
.primary-step {
  background: linear-gradient(180deg, rgba(255, 240, 234, .95), rgba(255, 255, 255, .64));
  border-color: rgba(255,116,86,.35);
}
.mini-cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--color-accent-dark);
  font-weight: 800;
}

.program-section { padding: 88px 0; background: var(--color-bg-soft); }
.program-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(34px, 6vw, 80px); align-items: start; }
.program-price { width: min(360px, 100%); margin-top: 28px; padding: 24px; background: rgba(255,255,255,.58); border: 1px solid var(--color-border); border-radius: 22px; }
.program-price span { color: var(--color-accent-dark); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.program-price strong { display: block; margin: 6px 0 8px; font-family: "Playfair Display", Georgia, serif; font-size: 3.2rem; font-weight: 500; line-height: 1; }
.program-price p { margin: 0; color: var(--color-muted); }
.program-cards { display: grid; gap: 16px; }
.program-cards article { min-height: 0; }
.program-cards span { margin-bottom: 18px; }

.decision { padding-top: 88px; padding-bottom: 88px; display: grid; grid-template-columns: minmax(280px, .75fr) minmax(320px, 1.25fr); gap: 50px; align-items: start; }
.decision-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.decision article { min-height: 210px; }

.testimonial { padding: 92px 0; text-align: center; background: rgba(255,250,245,.55); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.quote { max-width: 840px; margin: 0 auto 24px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.03em; }
.testimonial cite { color: var(--color-muted); font-style: normal; font-weight: 700; }

.cta { padding-top: 88px; padding-bottom: 96px; }
.cta-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; overflow: hidden; padding: clamp(34px, 5vw, 62px); background: var(--color-bg-soft); border-radius: 30px; }
.cta-copy p { max-width: 560px; }
.cta-image { min-height: 350px; }
.footer { padding: 34px 0; border-top: 1px solid var(--color-border); color: var(--color-muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; font-size: .9rem; }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .header-inner, .hero, .symptoms-layout, .intro-flow, .route-head, .program-layout, .decision, .cta-box { grid-template-columns: 1fr; }
  .header-inner { display: flex; justify-content: space-between; }
  .nav, .btn-area { display: none; }
  .hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "image"
      "note";
    padding-top: 34px;
  }
  .hero-copy { align-self: auto; }
  .hero-image { min-height: 430px; }
  .about-image { min-height: 460px; }
  .route-head .body-text { max-width: 720px; }
}

@media (max-width: 640px) {
  .container { width: 100%; max-width: 100vw; padding: 0 20px; }
  .header-inner { height: 70px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand { max-width: 100%; letter-spacing: .06em; }
  .brand strong { font-size: .8rem; }
  .brand span { max-width: 180px; font-size: .6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-actions { display: flex; }
  .header-cta {
    min-height: 40px;
    width: auto;
    padding: 11px 14px;
    font-size: .62rem;
    white-space: nowrap;
  }
  .eyebrow { max-width: 34ch; margin-bottom: 12px; font-size: .66rem; letter-spacing: .08em; }
  .hero { gap: 18px; padding-top: 24px; padding-bottom: 40px; }
  .hero-title { max-width: 9.5ch; margin-bottom: 16px; font-size: clamp(2.35rem, 11vw, 3rem); line-height: .98; }
  .hero-lead, .body-text { max-width: 35ch; font-size: .98rem; line-height: 1.62; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 22px; }
  .btn-primary, .btn-secondary { width: 100%; min-height: 50px; }
  .hero-link { justify-content: center; color: var(--color-accent-dark); }
  .hero-image, .about-image, .cta-image { min-height: 335px; border-radius: 22px; }
  .hero-note { padding: 15px 16px; border-radius: 18px; }
  .symptoms-layout { gap: 22px; padding-top: 40px; padding-bottom: 40px; }
  .section-title { margin-bottom: 18px; font-size: clamp(2rem, 9vw, 2.72rem); line-height: 1.08; }
  .symptom-list { gap: 9px; }
  .symptom-list span { min-height: 38px; padding: 8px 12px; font-size: .9rem; }
  .intro-flow, .route, .program-section, .decision, .testimonial, .cta { padding-top: 56px; padding-bottom: 56px; }
  .route-head { gap: 18px; margin-bottom: 24px; }
  .route-head .section-title { font-size: clamp(2rem, 8.4vw, 2.65rem); }
  .route-grid { grid-template-columns: 1fr; gap: 12px; }
  .route-card, .program-cards article, .decision article { min-height: 0; padding: 22px; border-radius: 18px; }
  .route-card span { margin-bottom: 18px; }
  .primary-step { order: -1; }
  .program-price strong { font-size: 2.75rem; }
  .decision { gap: 22px; }
  .decision-grid { gap: 12px; }
  .quote { font-size: clamp(2rem, 9vw, 2.85rem); }
  .cta-box { gap: 28px; padding: 26px; border-radius: 24px; }
  .footer { padding-bottom: 30px; }
  .footer-inner { flex-direction: column; }
}
