/* ───────────────────────────────────────────────────────────
   CLINICAL AUTHORITY WORKSHOP — v2 (continuous-scroll landing)
   ─────────────────────────────────────────────────────────── */

:root {
  --navy:    #11102e;
  --navy-2:  #16153a;
  --navy-3:  #1d1c47;
  --gold:    #f9a602;
  --gold-2:  #ffb524;
  --gold-3:  #eb9605;
  --paper:   #f5f5f5;
  --paper-2: #ebeae3;
  --white:   #ffffff;
  --ink:     #11102e;
  --ink-60:  rgba(17,16,46,0.62);
  --ink-45:  rgba(17,16,46,0.45);
  --ink-25:  rgba(17,16,46,0.22);
  --on-dark-60: rgba(245,245,245,0.66);
  --on-dark-40: rgba(245,245,245,0.4);
  --rule-light: rgba(17,16,46,0.12);
  --rule-dark:  rgba(249,166,2,0.32);
  --rule-darker: rgba(245,245,245,0.14);

  --serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, monospace;

  --max: min(1500px, 94vw);
  --gutter: clamp(20px, 4vw, 40px);

  /* Tight, Carrd-style section rhythm */
  --pad-y: clamp(72px, 5.6vw, 116px);
  --pad-y-tight: clamp(52px, 3.6vw, 84px);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  width: 100%;
  min-width: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--navy); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────── Buttons ─────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 22px 44px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

/* ─────────────────── NAV ─────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 16, 46, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(245,245,245,0.08);
  color: var(--white);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .mark {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo .mark .gold { color: var(--gold); font-style: normal; font-weight: 400; }
.nav-meta-r {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-meta-r .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; display: inline-block; }
.nav-meta-r .btn { font-size: 14px; padding: 16px 30px; }
.nav-meta-r .nav-meta-info { white-space: nowrap; }
@media (max-width: 720px) { .nav-meta-r .nav-meta-info { display: none; } }

/* ─────────────────── HERO ─────────────────── */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 5vw, 92px) 0;
  min-height: clamp(500px, 56vh, 640px);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 720px; }

.hero-tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 12px;
}
.hero-tag::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--white);
  text-wrap: balance;
  max-width: 22ch;
}

.hero-subhead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--gold);
  letter-spacing: -0.006em;
  line-height: 1.15;
  margin: 0 0 2px;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  color: rgba(245,245,245,0.92);
  margin: 0 0 14px;
  line-height: 1.3;
}

.hero-body {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(245,245,245,0.86);
  margin: 0 0 28px;
  max-width: 56ch;
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.hero .btn { font-size: 14px; padding: 18px 34px; }

.hero-meta {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(245,245,245,0.72);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.hero-meta .meta-dates {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin: 0;
}
.hero-meta .meta-time {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  color: rgba(245,245,245,0.94);
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-meta .meta-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-meta .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* Hero right-side image — normal <img> in a 2nd grid column. Not a background cover. */
.hero-graphic {
  width: 100%;
  display: block;
  background: transparent;       /* no panel, no cover, no overlay */
  padding: 0;
  border: 0;
}
.hero-graphic img {
  width: 100%;
  height: auto;
  max-width: 660px;
  max-height: 515px;
  object-fit: contain;           /* never cover, never crop */
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
}
@media (max-width: 880px) {
  .hero { padding: clamp(48px, 6vw, 88px) 0; }
  .hero-inner { display: flex; flex-direction: column; gap: 32px; }
  .hero-copy { max-width: none; }
  .hero-graphic img { max-height: 540px; margin: 0 auto; }
}

/* ─────────────────── PROBLEM (light) ─────────────────── */

.problem {
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad-y) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 148px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 3.8vw, 72px);
  align-items: center;
}
@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
}

.icon-circle {
  width: 148px; height: 148px;
  border: 1.5px solid var(--gold-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.icon-circle svg { width: 76px; height: 76px; }
.icon-circle.sm { width: 96px; height: 96px; }
.icon-circle.sm svg { width: 48px; height: 48px; }

.problem-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.problem-body {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
  max-width: 72ch;
}
.problem-quote {
  position: relative;
  padding: 12px 0 12px 28px;
  border-left: 1px solid var(--gold);
}
.problem-quote .marks {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}
.problem-quote .marks-end {
  display: block;
  text-align: right;
  margin: 8px 0 0;
  line-height: 0;
}
.problem-quote .marks-end span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  transform: rotate(180deg);
  display: inline-block;
}
.problem-quote .q-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--ink);
  line-height: 1.26;
  margin: 0;
  text-wrap: balance;
}

/* ─────────────────── WALK AWAY (dark) ─────────────────── */

.walkaway {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad-y) 0 var(--pad-y-tight);
}
.section-head { text-align: center; margin-bottom: clamp(36px, 2.9vw, 52px); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.section-head h2::before,
.section-head h2::after {
  content: "";
  flex: 0 0 auto;
  width: 128px; height: 1px;
  background: rgba(245,245,245,0.32);
}
.section-head .sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--gold);
  margin-top: 16px;
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .section-head h2 { white-space: normal; flex-direction: column; gap: 14px; }
  .section-head h2::before, .section-head h2::after { width: 80px; }
}
/* Section-head on light bg */
.on-light .section-head h2 { color: var(--ink); }
.on-light .section-head h2::before,
.on-light .section-head h2::after { background: rgba(17,16,46,0.22); }
.on-light .section-head .sub { color: var(--ink-60); }

.walkaway-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(245,245,245,0.14);
}
@media (max-width: 880px) {
  .walkaway-cols { grid-template-columns: 1fr; border-left: 0; }
}
.wa-col {
  padding: 28px 44px;
  border-right: 1px solid rgba(245,245,245,0.14);
}
@media (max-width: 880px) {
  .wa-col { border-right: 0; border-bottom: 1px solid rgba(245,245,245,0.14); padding: 28px 0; }
  .wa-col:last-child { border-bottom: 0; padding-bottom: 0; }
  .wa-col:first-child { padding-top: 0; }
}
.wa-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.wa-col-head svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.4; flex: 0 0 auto; }
.wa-col-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.006em;
  text-wrap: balance;
  line-height: 1.15;
}
.wa-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 32px; }
.wa-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.wa-list .check {
  width: 24px; height: 24px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.wa-list .check svg { width: 100%; height: 100%; }
.wa-list .item { min-width: 0; }
.wa-list .title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: 0.005em;
}
.wa-list .descr {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,245,245,0.72);
  margin: 0;
}

/* ─────────────────── AI SUPPORT (dark, continuous from walkaway) ─────────────────── */

.ai {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad-y-tight) 0 var(--pad-y);
}
.ai-shell {
  border-top: 1px solid rgba(245,245,245,0.12);
  padding-top: var(--pad-y-tight);
}
.ai-grid {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
@media (max-width: 880px) {
  .ai-grid { grid-template-columns: 1fr; gap: 24px; }
}
.ai-icon {
  width: 148px; height: 148px;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.ai-icon svg { width: 76px; height: 76px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.ai-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 54px);
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.012em;
  line-height: 1.15;
  text-wrap: balance;
}
.ai-text p {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(245,245,245,0.8);
  margin: 0 0 12px;
}
.ai-text p:last-child { margin-bottom: 0; }
.ai-text .emph {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.ai-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ai-checks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--white);
  line-height: 1.45;
}
.ai-checks .check { width: 24px; height: 24px; margin-top: 1px; }

/* ─────────────────── BONUSES (light) ─────────────────── */

.bonuses {
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad-y) 0 var(--pad-y-tight);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
}
@media (max-width: 880px) { .bonuses-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--white);
  border: 1px solid var(--rule-light);
  padding: 56px 52px 64px;
  border-radius: 4px;
  transition: border-color .25s ease, transform .25s ease;
}
.bonus-card:hover { border-color: var(--gold-3); }
.bonus-card .ico {
  width: 88px; height: 88px;
  border: 1.4px solid var(--gold-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.bonus-card .ico svg { width: 48px; height: 48px; stroke: var(--gold-3); fill: none; stroke-width: 1.4; }
.bonus-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.008em;
  text-wrap: balance;
}
.bonus-card p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0;
}

/* ─────────────────── ABOUT (light, transitions from bonuses) ─────────────────── */

.about {
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad-y-tight) 0 var(--pad-y);
  border-top: 1px solid rgba(17,16,46,0.10);
}
.about-grid {
  display: grid;
  grid-template-columns: 680px minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 220px 1fr; }
  .about-logos { grid-column: 1 / -1; flex-direction: row !important; justify-content: flex-start; align-items: center; gap: 32px !important; padding-top: 8px; }
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; text-align: left; }
  .about-portrait { justify-self: start; max-width: 440px; min-height: auto; }
  .about-logos { flex-direction: column !important; align-items: flex-start; }
  .hero-meta .meta-dates { font-size: 22px; }
  .invest-meta .meta-dates { font-size: 23px; }
  .final-cta .meta .meta-dates { font-size: 17px; }
  .hero-meta .meta-time { font-size: 17px; }
  .invest-meta .meta-time { font-size: 16px; }
  .final-cta .meta .meta-time { font-size: 14px; }
  .hero-meta { font-size: 14px; }
  .invest-meta { font-size: 14px; }
  .final-cta .meta { font-size: 14px; }
}

.about-portrait {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 680px;
  overflow: visible;
  position: relative;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.about-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 3.8vw, 52px);
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.about-body p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  max-width: 72ch;
  color: var(--ink-60);
  margin: 0 0 16px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-logos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  align-self: flex-start;
  border-left: 1px solid rgba(17,16,46,0.14);
  padding-left: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 980px) {
  .about-logos { border-left: 0; padding-left: 0; border-top: 1px solid rgba(17,16,46,0.12); padding-top: 24px; margin-top: 8px; }
}
.about-logos .credit {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
  font-weight: 600;
  margin: 0 0 14px;
}
.about-logo-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.about-logo-img.bhr { width: 220px; }
.about-logo-img.nl  { width: 110px; }
@media (max-width: 980px) {
  .about-logo-img.bhr { width: 200px; }
  .about-logo-img.nl { width: 96px; }
}

/* ─────────────────── INVESTMENT (dark) ─────────────────── */

.invest {
  background: var(--navy);
  color: var(--white);
  padding: clamp(96px, 7vw, 144px) 0 clamp(80px, 5.5vw, 116px);
}
.invest-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(48px, 4.4vw, 80px);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
@media (max-width: 880px) {
  .invest-card { grid-template-columns: 1fr; gap: 36px; text-align: left; padding: 0; }
}
.invest-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.invest-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.price-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  color: var(--white);
  line-height: 0.9;
}
.price-figure .sym {
  font-size: clamp(32px, 3.2vw, 48px);
  color: var(--gold);
  font-weight: 400;
  margin-top: 0.2em;
}
.price-figure .amt {
  font-size: clamp(88px, 9.5vw, 144px);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.price-figure .usd {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245,245,245,0.78);
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 0.45em;
}
.invest-meta {
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(245,245,245,0.80);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.invest-meta .meta-dates {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin: 0;
}
.invest-meta .meta-time {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0;
}
.invest-meta .meta-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.invest-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }

.invest-right { display: flex; flex-direction: column; gap: 20px; }
.invest-right p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 24px);
  color: rgba(245,245,245,0.86);
  line-height: 1.4;
  margin: 0;
  max-width: 44ch;
}
.invest-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─────────────────── FINAL CTA (dark) ─────────────────── */

.final {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad-y-tight) 0 var(--pad-y);
}
.final-shell {
  border-top: 1px solid rgba(245,245,245,0.12);
  padding-top: var(--pad-y-tight);
}
.final-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
@media (max-width: 880px) {
  .final-grid { grid-template-columns: 1fr; text-align: left; gap: 20px; }
  .final-cta { justify-self: start; align-items: flex-start !important; }
}
.final .icon-circle { border-color: var(--gold); }
.final .icon-circle svg { stroke: var(--gold); fill: none; stroke-width: 1.4; }
.final h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 3.8vw, 52px);
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.014em;
  line-height: 1.12;
  text-wrap: balance;
}
.final p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,245,245,0.78);
  font-size: 18px;
  margin: 0;
  max-width: 74ch;
}
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.final-cta .meta {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(245,245,245,0.72);
  line-height: 1.55;
  text-align: right;
}
.final-cta .meta .meta-dates {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 20px);
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 2px;
}
.final-cta .meta .meta-time {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(245,245,245,0.85);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 4px;
}
.final-cta .meta .gold { color: var(--gold); }

/* ─────────────────── FOOT (no logos) ─────────────────── */

.foot {
  background: var(--navy);
  color: rgba(245,245,245,0.48);
  padding: 22px 0 26px;
  border-top: 1px solid rgba(245,245,245,0.08);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.foot a:hover { color: var(--gold); }

/* ─────────────────── METHOD BRIDGE (light, conceptual bridge after PROBLEM) ─────────────────── */

.method-bridge {
  background: var(--paper-2);
  color: var(--ink);
  padding: var(--pad-y-tight) 0;
  border-top: 1px solid rgba(17,16,46,0.08);
  border-bottom: 1px solid rgba(17,16,46,0.08);
}
.method-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 3.6vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .method-bridge-inner { grid-template-columns: 1fr; gap: 24px; }
}
.method-bridge-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
}
.method-bridge-body p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0 0 14px;
  max-width: 64ch;
}
.method-bridge-body p:last-child { margin-bottom: 0; }
.method-bridge-kicker {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(20px, 1.9vw, 24px) !important;
  color: var(--ink) !important;
  line-height: 1.35 !important;
  margin-top: 18px !important;
  text-wrap: balance;
}

/* ─────────────────── WALKAWAY intro paragraph + Day labels ─────────────────── */

.walkaway-intro {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245,245,245,0.78);
  max-width: 86ch;
  margin: 0 auto clamp(36px, 3vw, 52px);
  text-align: center;
}
@media (max-width: 880px) {
  .walkaway-intro { text-align: left; }
}
.wa-col-head .day-label {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(249,166,2,0.45);
  padding: 5px 10px;
  border-radius: 2px;
  margin-right: 8px;
  flex: 0 0 auto;
}

/* ─────────────────── ABOUT — transparent portrait integration ───────────────────
   Transparent PNG sits on a navy gradient panel so any residual edge softness
   reads as intentional rather than a cut-and-paste artifact. */

.about-portrait {
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* ─────────────────── HERO PULL-QUOTE EPIGRAPH (Change 4) ─────────────────── */
.hero-quote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  max-width: 56ch;
}
.hero-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(245,245,245,0.78);
  line-height: 1.45;
  margin: 0 0 6px;
}
.hero-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.55);
}

/* ─────────────────── TESTIMONIAL SECTIONS (Changes 5 & 6) ─────────────────── */
.testimonial {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 5vw, 80px) 0;
}
.testimonial .section-head {
  margin-bottom: clamp(24px, 2.4vw, 36px);
}
.testimonial-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  position: relative;
}
.testimonial-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 25px);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.004em;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.testimonial-quote p:last-of-type {
  margin-bottom: 0;
}
.testimonial-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 32px;
}
.testimonial-note {
  max-width: 820px;
  margin: 36px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-60);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .testimonial-quote p { font-size: 18px; }
  .testimonial-quote cite { font-size: 12px; }
  .testimonial-note { font-size: 15px; }
}

/* ─────────────────── RESERVE PAYMENT MODAL ─────────────────── */
.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  padding: 16px;
}
.reserve-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 30, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reserve-modal-panel {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 44px);
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transform: translateY(12px);
  transition: transform 0.22s ease;
}
.reserve-modal.is-open .reserve-modal-panel {
  transform: translateY(0);
}
.reserve-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink-60);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--sans);
}
.reserve-modal-close:hover {
  color: var(--ink);
  background: rgba(17,16,46,0.05);
}
.reserve-modal-head {
  text-align: center;
  margin-bottom: 26px;
}
.reserve-modal-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 0 10px;
}
.reserve-modal-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.4;
}
.reserve-modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reserve-option {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: 4px;
  padding: 22px 22px 20px;
  text-align: left;
}
.reserve-option h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.006em;
}
.reserve-option-price {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-60);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.reserve-option-btn.btn {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 14px 20px;
  letter-spacing: 0.14em;
}
@media (max-width: 480px) {
  .reserve-modal-panel { padding: 32px 22px 28px; }
  .reserve-option { padding: 18px 18px 16px; }
  .reserve-option h3 { font-size: 19px; }
}
