/* ===== Design tokens (brand: navy · gold · rose · cream) ===== */
:root {
  --bg: #f8f3ea;
  --bg-alt: #f2e7e1;
  --navy: #1f2a44;
  --navy-dark: #16203a;
  --gold: #b8924f;
  --gold-soft: #cda76a;
  --rose: #d8a79f;
  --ink: #232a3a;
  --muted: #6c6f7c;
  --line: #e6d8cd;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1140px;
  --photo-fallback: linear-gradient(150deg, #e9d4cc 0%, #dcb4ab 45%, #c9a08f 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold); }

/* ===== Navigation ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(248, 243, 234, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; white-space: nowrap; }
.nav__logo { height: 40px; width: auto; display: block; }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1; }
.nav__brandmain { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: 0.02em; color: var(--navy); }
.nav__brandsub { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 0.32rem; }
.nav__label { margin-left: auto; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.nav__cta { padding: 0.6rem 1.3rem; font-size: 0.7rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 0.9rem 1.9rem;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: all 0.25s ease; text-align: center;
}
.btn--primary { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--bg); }
.btn--gold { background: var(--gold); color: var(--navy-dark); border: 1px solid var(--gold); font-size: 0.82rem; padding: 1.05rem 2.4rem; }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

/* ===== Hero ===== */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 3.5rem);
  max-width: var(--max); margin: 0 auto; min-height: 84vh;
}
.hero__logo { height: 70px; width: auto; display: block; margin-bottom: 1.6rem; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; color: var(--gold); margin-bottom: 1.3rem; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: 0.01em; color: var(--navy); }
.hero__subtitle { color: var(--muted); font-size: 1.12rem; margin: 1.4rem 0 2.3rem; max-width: 33rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__prepared { margin-top: 2.4rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; }
.hero__line { display: inline-block; min-width: 9rem; border-bottom: 1px solid var(--gold); margin-left: 0.4rem; }
.hero__media {
  aspect-ratio: 4 / 5; border-radius: 4px; border: 1px solid var(--line);
  background: var(--photo-fallback);
  background-image: url("images/hero.jpg"), var(--photo-fallback);
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -30px rgba(31, 42, 68, 0.45);
}

/* ===== Quote band ===== */
.quote-band { background: var(--navy); color: var(--bg); text-align: center; padding: clamp(3rem, 7vw, 4.5rem) clamp(1.5rem, 6vw, 4rem); }
.quote-band__text { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3.5vw, 2.3rem); line-height: 1.35; max-width: 52rem; margin: 0 auto 1rem; }
.quote-band__by { letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.74rem; color: var(--gold-soft); }
.quote-band--promise { background: var(--navy-dark); }
.promise__eyebrow { color: var(--gold-soft); margin-bottom: 1.2rem; }

/* ===== Sections ===== */
.section { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3.5rem); max-width: var(--max); margin: 0 auto; }
.section--alt { max-width: none; background: var(--bg-alt); }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; color: var(--gold); margin-bottom: 0.8rem; }
.section__eyebrow--center { text-align: center; }
.section__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.15; margin-bottom: 1.3rem; color: var(--navy); }
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 22ch; }
.lead { color: var(--muted); font-size: 1.1rem; }
.lead--center { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }

/* ===== Five tracks ===== */
.tracks__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1rem; }
.track { background: var(--bg); border: 1px solid var(--line); border-radius: 5px; padding: 1.6rem 1.3rem; text-align: center; }
.track__num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.track h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.1; }
.track p { color: var(--muted); font-size: 0.9rem; }

/* ===== The two phases ===== */
.phases { display: grid; gap: 1.2rem; max-width: 900px; margin: 0 auto; }
.phase { display: grid; grid-template-columns: 180px 1fr; align-items: stretch; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.phase__tag { display: flex; flex-direction: column; justify-content: center; gap: 0.55rem; text-align: center; padding: 1.6rem 1.3rem; background: var(--navy); }
.phase__weeks { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--gold-soft); line-height: 1; }
.phase__label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bg); }
.phase__body { padding: 1.8rem 2rem; }
.phase__body h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 0.6rem; }
.phase__body p { color: var(--muted); font-size: 1rem; }
.phase--feature { border-color: var(--gold); box-shadow: 0 24px 50px -32px rgba(31, 42, 68, 0.5); }
.phase--feature .phase__tag { background: var(--navy-dark); }
.phases__close { text-align: center; margin: 2.4rem auto 0; max-width: 38rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--navy); }

/* ===== Result ===== */
.result__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 880px; margin: 0 auto; }
.result__item { font-family: var(--serif); font-size: 1.32rem; line-height: 1.35; color: var(--navy); background: var(--bg); border-left: 3px solid var(--gold); border-radius: 3px; padding: 1.1rem 1.3rem; }
.result__note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 2.2rem; max-width: 46rem; margin-left: auto; margin-right: auto; }

/* ===== Included ===== */
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.included__item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg); border: 1px solid var(--line); border-radius: 5px; padding: 1.4rem 1.5rem; }
.included__item span { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--gold); min-width: 1.6rem; }
.included__item p { color: var(--muted); font-size: 0.95rem; }

/* ===== About ===== */
.section--split { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: clamp(2rem, 6vw, 4.5rem); }
.about__media { aspect-ratio: 4 / 5; border-radius: 4px; border: 1px solid var(--line); background: var(--photo-fallback); background-image: url("images/about.jpg"), var(--photo-fallback); background-size: cover; background-position: center; }
.about__text p { color: var(--muted); margin-bottom: 1.1rem; }
.about__pull { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.35; color: var(--navy); border-left: 3px solid var(--gold); padding-left: 1.2rem; margin: 1.6rem 0 0; }

/* ===== Investment ===== */
.section--invest { max-width: none; background: var(--navy); text-align: center; }
.invest { max-width: 640px; margin: 0 auto; }
.invest__eyebrow { color: var(--gold-soft); }
.invest__price { font-family: var(--serif); font-weight: 500; font-size: clamp(3.4rem, 9vw, 5.5rem); line-height: 1; color: var(--bg); margin: 0.6rem 0 0.8rem; }
.invest__sub { color: #d6d3cc; font-size: 1.05rem; margin-bottom: 2rem; }

/* ===== Next step ===== */
.section--cta { background: var(--bg-alt); max-width: none; }
.section--cta > * { max-width: var(--max); margin: 0 auto; }
.contact { max-width: 640px; margin: 0 auto; text-align: center; }
.contact__social { display: flex; gap: 1.8rem; justify-content: center; margin-top: 2.2rem; }
.contact__social a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; transition: 0.2s; }
.contact__social a:hover { color: var(--navy); border-color: var(--gold); }

/* ===== Footer ===== */
.footer { text-align: center; padding: 2.8rem 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; background: var(--bg); }
.footer__logo { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer__logo img { height: 46px; width: auto; display: block; }
.footer__logo span { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.footer__logo b { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--navy); }
.footer__logo i { font-style: normal; font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
.footer__disclaimer { max-width: 46rem; margin: 0 auto 0.8rem; font-size: 0.78rem; line-height: 1.5; color: var(--muted); }
.footer__copy { font-size: 0.8rem; }

/* ===== Pillars (why this is different) ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.pillar { text-align: center; padding: 2rem 1.6rem; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
.pillar__num { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 0.7rem; letter-spacing: 0.06em; }
.pillar h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* ===== Who this is for (the problem) ===== */
.doors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: 1rem; }
.door { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 1.9rem 1.7rem; }
.door h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.door p { color: var(--muted); font-size: 0.97rem; }
.who__close { margin: 2.5rem auto 0; text-align: center; max-width: 44rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 1.75rem); line-height: 1.4; color: var(--navy); }

/* ===== Phase bullet lists ===== */
.phase__list { list-style: none; margin-top: 1rem; }
.phase__list li { position: relative; padding: 0.5rem 0 0.5rem 1.6rem; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.phase__list li:last-child { border-bottom: 0; }
.phase__list li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ===== Value stack ===== */
.stack { max-width: 760px; margin: 0 auto; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--bg); }
.stack__item { position: relative; padding: 1.5rem 1.8rem 1.5rem 3.2rem; border-bottom: 1px solid var(--line); }
.stack__item:last-child { border-bottom: 0; }
.stack__item::before { content: "\2713"; position: absolute; left: 1.5rem; top: 1.55rem; color: var(--gold); font-size: 1rem; }
.stack__item h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; line-height: 1.15; }
.stack__item p { color: var(--muted); font-size: 0.97rem; }
.stack__item--bonus { background: var(--bg-alt); }
.stack__item--bonus::before { content: "\2726"; }

/* ===== Proof ===== */
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.proof__card { background: var(--bg); border-left: 3px solid var(--gold); border-radius: 4px; padding: 1.8rem; }
.proof__card p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.45; margin-bottom: 1rem; color: var(--ink); }
.proof__card cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.proof__note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 2rem; }

/* ===== Investment exclusivity ===== */
.invest__exclusive { max-width: 34rem; margin: 0 auto 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(205, 167, 106, 0.35); }
.invest__exclusive p { color: #d6d3cc; font-size: 0.95rem; font-style: italic; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .tracks__grid { grid-template-columns: repeat(2, 1fr); }
  .included__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars, .proof__grid, .doors__grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .result__grid, .section--split, .hero { grid-template-columns: 1fr; }
  .hero { min-height: auto; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__prepared { justify-content: center; }
  .hero__logo { margin-left: auto; margin-right: auto; }
  .hero__media { order: -1; max-width: 340px; margin: 0 auto; }
  .about__media { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .nav__label { display: none; }
  .tracks__grid, .included__grid { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 1fr; }
  .phase__tag { flex-direction: row; justify-content: center; align-items: baseline; gap: 0.7rem; padding: 1rem; }
}

/* ===== Application form ===== */
.apply__form { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; margin: 0 auto 1.5rem; text-align: left; }
.apply__row { display: flex; gap: 1rem; }
.apply__form input, .apply__form textarea { width: 100%; font-family: var(--sans); font-size: 1rem; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 3px; background: var(--white); color: var(--ink); resize: vertical; }
.apply__form input:focus, .apply__form textarea:focus { outline: none; border-color: var(--gold); }
.apply__form .btn--block { width: 100%; margin-top: 0.3rem; }
.apply__note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
@media (max-width: 560px) { .apply__row { flex-direction: column; } }

/* ===== Investment headline (price hidden) ===== */
.invest__headline { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4rem); line-height: 1.05; color: var(--bg); margin: 0.4rem 0 1rem; letter-spacing: 0.01em; }

/* ===== About facts ===== */
.about__facts { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.about__facts li { padding: 0.8rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.about__facts strong { display: inline-block; min-width: 86px; color: var(--gold); font-weight: 500; }

/* ===== Popup ===== */
.popup { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(22, 32, 58, 0.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.popup.is-open { opacity: 1; visibility: visible; }
.popup__card { position: relative; max-width: 460px; width: 100%; background: var(--bg); border: 1px solid var(--gold); border-radius: 8px; padding: 2.6rem 2.2rem 2.4rem; text-align: center; box-shadow: 0 40px 80px -30px rgba(22, 32, 58, 0.6); transform: translateY(12px); transition: transform 0.3s ease; }
.popup.is-open .popup__card { transform: translateY(0); }
.popup__close { position: absolute; top: 0.7rem; right: 1rem; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; }
.popup__close:hover { color: var(--navy); }
.popup__eyebrow { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.68rem; color: var(--gold); margin-bottom: 0.8rem; }
.popup__title { font-family: var(--serif); font-weight: 600; font-size: 2rem; line-height: 1.1; color: var(--navy); margin-bottom: 0.8rem; }
.popup__text { color: var(--muted); font-size: 1rem; margin-bottom: 1.6rem; }

/* ===== Sticky bar ===== */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; align-items: center; justify-content: center; gap: 1.4rem; padding: 0.85rem 3rem 0.85rem 1.4rem; background: var(--navy); border-top: 1px solid var(--gold); transform: translateY(110%); transition: transform 0.35s ease; }
.stickybar.is-visible { transform: translateY(0); }
.stickybar__text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--bg); }
.stickybar__cta { padding: 0.6rem 1.4rem; font-size: 0.7rem; }
.stickybar__close { position: absolute; right: 1rem; background: none; border: 0; font-size: 1.5rem; line-height: 1; color: var(--gold-soft); cursor: pointer; }
@media (max-width: 620px) {
  .stickybar { flex-direction: column; gap: 0.6rem; padding: 0.8rem 2.4rem; }
  .stickybar__text { font-size: 0.95rem; text-align: center; }
}

/* ===== Print-only helper ===== */
.print-only { display: none; }
.apply__printnote { text-align: center; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }

/* ===== Print (PDF export) ===== */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .popup, .stickybar, .apply__form { display: none !important; }
  .print-only { display: block !important; }
  @page { margin: 14mm 12mm; }
  .nav { position: static; }
  .hero { min-height: auto; padding-top: 1.5rem; padding-bottom: 2rem; }
  .section, .quote-band, .section--invest { padding-top: 2.6rem; padding-bottom: 2.6rem; }
  .hero, .quote-band, .section, .section--invest, .section--cta { page-break-inside: avoid; break-inside: avoid; }
  .pillar, .track, .phase, .stack__item, .proof__card, .result__item,
  .quote-band, .invest { page-break-inside: avoid; break-inside: avoid; }
  .section__title, h2, h3 { page-break-after: avoid; break-after: avoid; }
}
