/* Momentum : Pro — Mobile-first landing page
   Composes on top of colors_and_type.css */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body, #app { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 64px; }
body {
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
}

/* Wordmark uses Fraunces (its quirky italic m); everything else uses
   --font-display (Source Serif 4) which is set up by the design system. */
.wm .m { font-family: var(--font-wordmark); font-variation-settings: "WONK" 1, "SOFT" 50; font-feature-settings: "calt" 1, "ss01" 1; }

/* Fraunces WONK axis is on by default and produces wonky H/N/F glyphs.
   Force WONK off everywhere; SOFT stays at default (1). The wordmark uses
   italic Fraunces and is unaffected by these alternate glyph shapes. */
*,
*::before,
*::after {
  font-variation-settings: "WONK" 0;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* =====================================================
   Layout
   ===================================================== */
.wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 56px 0; }
section + section { border-top: 1px solid var(--aubergine); }

/* Faint paper-lift surface used to vary section rhythm */
.surface--raised { background: var(--surface-raised); }
.surface--aubergine { background: var(--aubergine); color: var(--off-white); }
.surface--aubergine .h2, .surface--aubergine h2,
.surface--aubergine .h3, .surface--aubergine h3 { color: var(--off-white); }
.surface--aubergine .label { color: var(--gold); }
.surface--aubergine p { color: rgba(245, 240, 234, 0.86); }
.surface--aubergine a { color: var(--off-white); }

.section-rule {
  border: 0;
  border-top: 1px solid var(--aubergine);
  margin: 0;
}

/* =====================================================
   Typography helpers
   ===================================================== */
.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.label--aub { color: var(--aubergine); }
.label::before {
  content: "";
  display: inline-block;
  width: 36px; height: 2px;
  background: currentColor;
  opacity: 0.85;
}
.label.no-rule::before { display: none; }

.h2, h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--aubergine);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.h3, h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--charcoal);
  letter-spacing: 0;
  margin: 0 0 10px;
}
.section-head { margin-bottom: 24px; }
.section-head p.sub {
  font-size: 15px;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.55;
  max-width: 38ch;
}

p { margin: 0 0 14px; line-height: 1.55; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
em { font-style: italic; }

/* Inline wordmark */
.wm {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-wordmark);
  line-height: 1; white-space: nowrap; letter-spacing: -0.01em;
}
.wm .m {
  font-style: italic; font-weight: 700; color: var(--aubergine);
  font-family: var(--font-wordmark);
  font-variation-settings: "WONK" 1, "SOFT" 50;
  font-feature-settings: "calt" 1, "ss01" 1;
}
.wm .sep { font-weight: 400; font-style: normal; color: var(--aubergine); margin: 0 0.10em 0 0.04em; }
/* "PRO" descriptor — pill label per design system (Inter bold, off-white on aubergine) */
.wm .pro {
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.52em;
  font-weight: 700;
  color: var(--off-white);
  background: var(--aubergine);
  padding: 0.13em 0.45em 0.13em 0.52em;
  border-radius: 0.4em;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-end;
  margin-left: 0.14em;
  margin-bottom: 0.18em;
}
.surface--aubergine .wm .m,
.surface--aubergine .wm .sep { color: var(--off-white); }
/* On-dark: gold pill with aubergine text */
.surface--aubergine .wm .pro { background: var(--gold); color: var(--aubergine); }

/* Inline "Momentum" mention in body / headlines — wordmark font, italic, no ":Pro" */
.brand {
  font-family: var(--font-wordmark);
  font-style: italic;
  font-weight: 700;
  color: inherit;
  font-variation-settings: "WONK" 1, "SOFT" 50;
  font-feature-settings: "calt" 1, "ss01" 1;
  letter-spacing: -0.01em;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-md, 6px);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 120ms var(--ease-out), color 120ms var(--ease-out), box-shadow 120ms var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--gold:active { background: var(--gold-ink); }
.btn--aub { background: var(--aubergine); color: var(--off-white); }
.btn--aub:hover { background: var(--aubergine-hover); }
.btn--aub:active { background: var(--aubergine-ink); }
.btn--out { background: transparent; color: var(--aubergine); border: 1px solid var(--aubergine); }
.btn--out:hover { background: var(--aubergine-08); }
.btn--out-light { background: transparent; color: var(--off-white); border: 1px solid rgba(245,240,234,0.55); }
.btn--out-light:hover { background: rgba(245,240,234,0.08); border-color: var(--off-white); }
.btn--block { display: flex; width: 100%; }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

/* =====================================================
   Header (mobile)
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245, 240, 234, 0.94);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.site-header img.wm-img { height: 24px; }
.site-header .menu-btn {
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  border-radius: 4px;
}
.site-header .menu-btn:active { background: var(--aubergine-08); }

.menu-panel {
  position: fixed; inset: 56px 0 0 0; z-index: 39;
  background: var(--off-white);
  padding: 24px 20px 40px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.menu-panel.is-open {
  opacity: 1; transform: none; pointer-events: auto;
}
.menu-panel a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-family: var(--font-display);
  color: var(--aubergine);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.menu-panel a:last-child { border-bottom: 0; }
.menu-panel .menu-cta { margin-top: 24px; }

/* =====================================================
   Hero
   ===================================================== */
.hero { padding: 20px 0 20px; }
.hero__wm {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
}
.hero .eyebrow { margin-bottom: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--aubergine);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; }
.hero .lede {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0 0 0;
}
.hero .lede .wm { font-size: 1em; }
.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  padding-top: 24px;
  border-top: 1px solid var(--aubergine);
}
.hero-meta .item .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 6px;
}
.hero-meta .item .v {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--aubergine);
  line-height: 1.2;
}

/* =====================================================
   "What it is"
   ===================================================== */
.what-it-is p { font-size: 16px; line-height: 1.6; }
.what-it-is .photo {
  margin: 24px 0 0;
}

/* Explainer video — small click-to-play thumbnail */
.explainer-video {
  display: block;
  width: 100%;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.explainer-video:not(.is-playing):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.explainer-video:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
.explainer-video__poster {
  aspect-ratio: 16 / 9;
  background: var(--aubergine);
  position: relative;
  overflow: hidden;
}
.explainer-video__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.explainer-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.32) 0%, transparent 50%);
}
.explainer-video__duration {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(245, 240, 234, 0.92);
  background: rgba(0, 0, 0, 0.28);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  align-self: flex-end;
}
.explainer-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--aubergine);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease-out), background 0.18s var(--ease-out);
}
.explainer-video__play svg { transform: translateX(2px); }
.explainer-video:not(.is-playing):hover .explainer-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-hover);
}
.explainer-video.is-playing {
  cursor: default;
  border: 1px solid var(--rule);
}
.explainer-video.is-playing iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--off-white);
}
/* When fullscreen, fill the entire viewport and let the iframe expand */
.explainer-video:fullscreen,
.explainer-video:-webkit-full-screen,
.explainer-video.is-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  margin: 0;
  background: #000;
  border-radius: 0;
  border: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explainer-video:fullscreen iframe,
.explainer-video:-webkit-full-screen iframe,
.explainer-video.is-fullscreen iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: var(--off-white);
}
.explainer-video:fullscreen .explainer-video__fs,
.explainer-video:-webkit-full-screen .explainer-video__fs,
.explainer-video.is-fullscreen .explainer-video__fs {
  top: 16px; right: 16px;
  width: 40px; height: 40px;
}
.explainer-video__fs {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--off-white);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  z-index: 2;
  transition: opacity 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.explainer-video__fs:hover { opacity: 1; background: rgba(0, 0, 0, 0.72); }
.explainer-video__fs:focus-visible { outline: none; opacity: 1; box-shadow: var(--shadow-focus); }

/* =====================================================
   Mechanism / How it works
   ===================================================== */
.mech-intro p { font-size: 16px; }
.mech-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.mech-card {
  background: var(--bg-canvas);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg, 10px);
  padding: 20px;
}
.mech-card .n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  color: var(--aubergine);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 10px;
}
.mech-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--aubergine);
  margin: 0 0 8px;
}
.mech-card p { font-size: 15px; line-height: 1.55; }

/* The "structural answer" trio sits on aubergine */
.answer-list { display: grid; gap: 22px; margin-top: 24px; }
.answer-list .item h3 {
  color: var(--off-white);
  margin: 0 0 6px;
  font-size: 18px;
}
.answer-list .item .pill {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill, 999px);
  margin-bottom: 12px;
}
.answer-list .item p { font-size: 15px; line-height: 1.6; color: rgba(245, 240, 234, 0.88); }

@keyframes schedFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes schedFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.schedule-fade-in {
  animation: schedFadeIn 0.18s ease both;
}
.schedule-fade-out {
  animation: schedFadeOut 0.06s ease both;
}

/* =====================================================
   Schedule
   ===================================================== */

/* Day tab arrows + wrap */
.day-tabs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.day-tabs-wrap .day-tabs {
  flex: 1;
  margin-bottom: 0;
}
.day-tab-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--bg-canvas);
  color: var(--aubergine);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.18s ease;
}
.day-tab-arrow:hover:not(:disabled) { background: var(--aubergine); color: var(--off-white); }
.day-tab-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.schedule-wrap {
  display: block;
}
.schedule {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .day-tab-arrow--hover-only {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--off-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .day-tab-arrow--hover-only:first-of-type { left: 8px; }
  .day-tab-arrow--hover-only:nth-of-type(2) { right: 8px; }
  .schedule:hover .day-tab-arrow--hover-only:not(:disabled) { opacity: 1; }
  .day-tab-arrow--hover-only:disabled { opacity: 0 !important; }
}

.day-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}
.day-tabs__top {
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 4px;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 4px;
  align-self: center;
}
.day-tabs__top button {
  min-width: 64px;
  padding: 6px 10px;
}
.day-tabs__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 0;
  min-width: 0;
}
.day-tabs button {
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal-60);
  padding: 8px 4px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  min-width: 0;
  white-space: nowrap;
}
.day-tabs button.is-active {
  background: var(--aubergine);
  color: var(--off-white);
}

.schedule {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--bg-canvas);
  overflow: hidden;
}
.schedule .meta-row {
  padding: 10px 14px;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--charcoal-60);
}
.schedule .meta-row .d {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--aubergine);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.schedule .row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid var(--rule);
}
.schedule .row:last-child { border-bottom: 0; }
.schedule .row .time {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--aubergine);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.schedule .row .what {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.25;
}
.schedule .row .what .sub {
  display: block;
  font-size: 11px;
  color: var(--charcoal-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 3px;
}
.schedule .row .marker {
  display: flex; align-items: center; gap: 4px;
  min-width: 36px; justify-content: flex-end;
}
.schedule-wrap {
  display: block;
}
.dot-key {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--charcoal-60);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 14px 0 8px;
}
.dot-key-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.progress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}
.progress-label {
  font-size: 10px;
  font-family: var(--font-body);
  color: var(--charcoal-60);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.progress-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--bg-canvas, #fff);
  min-width: 0;
}
.progress-track .bar-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.18s ease;
}
.progress-track .bar-dot.is-visible { opacity: 1; }
.progress-track .bar-dot.is-animating-in {
  opacity: 0;
  animation: dotBarFadeIn 0.25s ease forwards;
}
.dot-bar .bar-dot.is-visible {
  opacity: 1;
}
.dot-bar .bar-dot.is-animating-in {
  opacity: 0;
  animation: dotBarFadeIn 0.25s ease forwards;
}
.dot-bar .bar-dot.is-animating-out {
  opacity: 1;
  animation: dotBarFadeOut 0.25s ease forwards;
}
@keyframes dotBarFadeIn {
  to { opacity: 1; }
}
@keyframes dotBarFadeOut {
  to { opacity: 0; }
}
.schedule .row .pom-dot {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.schedule .row[data-kind="break"] { background: var(--surface-raised); }
.schedule .row[data-kind="travel"] .marker { opacity: 0; }

.schedule-notes {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.notes-header {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aubergine);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  grid-column: 1 / -1;
}
.notes-header::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.schedule-notes .note { }
.schedule-notes .note h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--aubergine);
  margin: 0 0 8px;
}
.schedule-notes .note p { font-size: 15px; line-height: 1.6; }

/* =====================================================
   Photo placeholders
   ===================================================== */
.photo {
  background: var(--aubergine-08);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.photo::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(62,42,86,0.10), transparent 60%);
  pointer-events: none;
}
.photo .ps-tag {
  position: absolute; top: 14px; left: 16px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--aubergine); opacity: 0.65;
}
.photo .ps-caption {
  font-family: var(--font-display); font-style: italic;
  color: var(--aubergine); font-size: 15px; line-height: 1.3;
  position: relative; z-index: 1;
}
.photo--real {
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  position: relative;
}
.photo--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo--real .ps-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  color: #fff;
  font-style: italic;
}
.photo--clickable { cursor: pointer; }
.photo--clickable:hover .ps-count { background: var(--aubergine); color: var(--off-white); }
.photo--clickable:focus-visible { outline: 2px solid var(--aubergine); outline-offset: 2px; }

.ps-count {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--aubergine);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 2;
  transition: background 0.18s ease, color 0.18s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.lightbox__close { top: 16px; right: 16px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox__nav--prev { font-size: 28px; }
.lightbox__counter {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lightbox__caption {
  position: absolute;
  bottom: 44px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  text-align: center;
  max-width: 80vw;
}
.photo--tall { aspect-ratio: 3 / 4; }

.photo-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

/* =====================================================
   Who we are
   ===================================================== */
.bio-scroll-wrap {
  position: relative;
}
.bio-scroll-arrow {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .bio-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: var(--off-white);
    color: var(--aubergine);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .bio-scroll-wrap:hover .bio-scroll-arrow { opacity: 1; }
  .bio-scroll-arrow:hover { background: var(--aubergine); color: var(--off-white); }
  .bio-scroll-arrow--prev { left: -20px; }
  .bio-scroll-arrow--next { right: -20px; }
}
.bio-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin: 24px -20px 0;
  padding: 0 20px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bio-scroll::-webkit-scrollbar { display: none; }
.bio-scroll .bio {
  flex: 0 0 85vw;
  max-width: 360px;
  scroll-snap-align: start;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bio {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.bio + .bio { padding-top: 24px; border-top: 1px solid var(--rule); }
.bio .head {
  display: flex; gap: 14px; align-items: center;
}
.bio .avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--aubergine);
  color: var(--off-white);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.bio .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bio .head .name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  color: var(--charcoal);
}
.bio .head .role {
  font-size: 13px;
  color: var(--charcoal-60);
  margin-top: 2px;
}
.bio-attribution {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--charcoal-60);
  letter-spacing: 0.04em;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: inline-block;
}
.bio-quote {
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--aubergine);
}
.bio a.ext {
  font-size: 13px;
  font-weight: 600;
  color: var(--aubergine);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.bio a.ext:hover { color: var(--aubergine-hover); }

.booking-note {
  margin-top: 28px;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.booking-note h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--aubergine);
  margin: 0 0 10px;
}
.booking-note p { font-size: 14.5px; line-height: 1.6; }

/* =====================================================
   Travel
   ===================================================== */
.travel-leg {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.travel-leg:last-child { border-bottom: 0; }
.travel-leg .leg-time {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--aubergine);
  white-space: nowrap;
  padding-top: 3px;
}
.travel-leg .leg-time .tz {
  color: var(--aubergine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.travel-leg .leg-time-dual {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 3px;
}
.travel-leg .leg-time-dual > div {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--aubergine);
  white-space: nowrap;
}
.travel-leg .leg-time-dual .tz {
  color: var(--aubergine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.travel-leg .leg-body h4 {
  font-family: var(--font-display); font-size: 17px; font-weight: 400;
  color: var(--charcoal); margin: 0 0 4px;
}
.travel-leg .leg-body p { font-size: 14px; line-height: 1.55; }

.passport-grid {
  display: grid; gap: 10px; margin-top: 22px;
}
.passport-grid .item {
  display: flex; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--bg-canvas);
}
.passport-grid .item .icon {
  flex-shrink: 0; color: var(--aubergine);
}
.passport-grid .item .t {
  font-weight: 600; font-size: 14px; color: var(--charcoal); margin-bottom: 2px;
}
.passport-grid .item .d { font-size: 13px; color: var(--charcoal-60); line-height: 1.5; }

.fineprint { font-size: 12px; color: var(--charcoal-60); line-height: 1.55; margin-top: 12px; }

/* =====================================================
   Inclusions
   ===================================================== */
.inc-block + .inc-block { margin-top: 28px; }
.inc-block h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin: 0 0 12px;
}
.inc-list { list-style: none; padding: 0; margin: 0; }
.inc-list li {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.inc-list li:last-child { border-bottom: 0; }
.inc-list .t { font-weight: 600; font-size: 14.5px; color: var(--charcoal); margin-bottom: 2px; }
.inc-list .d { font-size: 13.5px; color: var(--charcoal-60); line-height: 1.5; }

/* =====================================================
   Pricing
   ===================================================== */
.pricing {
  background: var(--aubergine);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
}
.pricing .row { display: flex; justify-content: space-between; align-items: baseline; }
.pricing .price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 6px 0;
}
.pricing .price small {
  font-size: 14px; opacity: 0.7; font-weight: 400; letter-spacing: 0;
  margin-left: 6px;
}
.pricing .desc {
  font-size: 13px;
  color: rgba(245, 240, 234, 0.72);
  margin: 8px 0 10px;
}
.pricing hr {
  border: 0; border-top: 1px solid rgba(245, 240, 234, 0.18); margin: 10px 0;
}
.pricing .pay-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.pricing .pay-line .v { color: var(--off-white); font-weight: 600; }
.pricing .pay-line .k { color: rgba(245, 240, 234, 0.76); }

.travel-cost {
  margin-top: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.travel-cost .row { display: flex; justify-content: space-between; align-items: baseline; }
.travel-cost .lbl {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--charcoal-60);
  margin-bottom: 4px;
}
.travel-cost .num {
  font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--aubergine);
  margin: 4px 0 8px;
}
.travel-cost .desc { font-size: 13.5px; line-height: 1.6; color: var(--charcoal-60); margin-bottom: 4px; }
.travel-cost p { font-size: 13.5px; line-height: 1.6; margin-top: 8px; }
.travel-cost hr { border: none; border-top: 1px solid var(--rule); margin: 10px 0; }
.travel-cost .pay-line { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--charcoal); }
.travel-cost .pay-line .k { color: var(--charcoal-60); }

.cohort-min {
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 2px solid var(--gold);
  background: var(--aubergine-08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.cohort-min h4 {
  font-family: var(--font-display); font-size: 15px; color: var(--aubergine);
  font-weight: 400; margin: 0 0 3px;
}
.cohort-min p { font-size: 13px; line-height: 1.5; margin: 0; }

/* =====================================================
   Cohort dates
   ===================================================== */
/* Cohort calendar carousel
   ===================================================== */
.cohort-cal__intro {
  font-size: 13px;
  color: var(--charcoal-60);
  line-height: 1.5;
  margin: 14px 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
.cci-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  vertical-align: -2px;
  margin: 0 2px 0 4px;
}
.cci-swatch--travel { background: var(--aubergine-08); border: 1px solid var(--aubergine-20, rgba(74,40,73,0.25)); }
.cci-swatch--retreat { background: var(--aubergine); }

.exam-cal__hint {
  font-size: 12px;
  color: var(--charcoal-60);
  padding: 0 16px 12px;
  margin: 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.5;
}

.cohort-cal {
  margin: 20px -20px 0;
  overflow: hidden;
  position: relative;
}
.cohort-cal__arrow {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cohort-cal__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: var(--off-white);
    color: var(--aubergine);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .cohort-cal:hover .cohort-cal__arrow { opacity: 1; }
  .cohort-cal__arrow:hover { background: var(--aubergine); color: var(--off-white); }
  .cohort-cal__arrow--prev { left: 8px; }
  .cohort-cal__arrow--next { right: 8px; }
}
.cohort-cal__track {
  display: flex;
  gap: 12px;
  padding: 4px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cohort-cal__track::-webkit-scrollbar { display: none; }

.cohort-week {
  flex: 0 0 132px;
  scroll-snap-align: start;
  background: var(--bg-canvas);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.cohort-week--empty {
  opacity: 0.55;
}
.cohort-week--empty .cohort-week__label,
.cohort-week--empty .cohort-week__dates {
  color: var(--charcoal-60);
}

.cohort-week--now {
  background: var(--aubergine-08);
  border-color: var(--aubergine);
}
.cohort-week.is-past {
  opacity: 0.55;
}
.cohort-week__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  line-height: 1.3;
}
.cohort-week--now .cohort-week__label {
  color: var(--aubergine);
}
.cohort-week__dates {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.2;
}
.cohort-week--now .cohort-week__dates {
  color: var(--aubergine);
}
.cohort-week__strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 2px 0 4px;
}
.cohort-week__strip .day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  background: transparent;
  color: var(--charcoal-60);
}
.cohort-week__strip .day .d-letter {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.cohort-week__strip .day .d-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}
.cohort-week__strip .day--travel {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.cohort-week__strip .day--travel .d-letter { opacity: 0.85; color: var(--charcoal-60); }
.cohort-week__strip .day--retreat {
  background: var(--gold);
  color: var(--charcoal);
}
.cohort-week__strip .day--retreat .d-letter { opacity: 0.85; }
.cohort-week__strip .day--today {
  background: var(--aubergine);
  color: var(--off-white);
}
.cohort-week__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cohort-week__info .status {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
  padding: 3px 7px;
  border-radius: 999px;
}
.status--book { background: transparent; color: var(--aubergine); border: 1px solid var(--aubergine); font-weight: 600; }
.status--filling { background: var(--gold); color: var(--charcoal); font-weight: 700; }
.status--soldout { background: var(--rule); color: var(--charcoal-60); }
.status--past { background: transparent; color: var(--charcoal-60); border: 1px solid var(--rule); }
.cohort-week__info .seat-count {
  font-size: 11px;
  color: var(--charcoal-60);
}
.cohort-week__for {
  font-size: 10px;
  color: var(--charcoal-60);
  line-height: 1.4;
}
.cohort-week__here {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--aubergine);
}
.cohort-week__book {
  margin-top: auto;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease;
}
.cohort-week__book:hover { background: var(--gold); color: var(--charcoal); }
.cohort-week__book:disabled { background: var(--rule); color: var(--charcoal-60); border-color: var(--rule); cursor: not-allowed; }

/* Month filter row beneath the cohort carousel */
.cohort-cal__months {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 20px 4px;
  margin-top: 4px;
}
.cohort-cal__month {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  min-height: 32px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cohort-cal__month:hover {
  color: var(--aubergine);
  border-color: var(--aubergine);
}
.cohort-cal__month.is-active {
  background: var(--aubergine);
  color: var(--off-white);
  border-color: var(--aubergine);
}
.cohort-cal__month:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.cohort-cards { display: grid; gap: 12px; margin-top: 20px; }
.cohort-card {
  background: var(--bg-canvas);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
}
.cohort-card.is-filling { border-color: var(--aubergine); }
.cohort-card.is-soldout { opacity: 0.6; }
.cohort-card .ex-tag {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 8px;
}
.cohort-card .dates {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--aubergine); letter-spacing: -0.005em; margin: 0;
}
.cohort-card .for {
  font-size: 13px; color: var(--charcoal-60); margin-top: 4px;
}
.cohort-card .bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.cohort-card .seat-count {
  font-size: 12px; color: var(--charcoal-60); font-weight: 600;
}
.cohort-card .status {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cohort-card .status--book { color: var(--aubergine); }
.cohort-card .status--filling { color: var(--gold-ink, #A8843C); }
.cohort-card .status--soldout { color: var(--charcoal-60); }

.exam-cal {
  margin-top: 32px;
  background: var(--bg-canvas);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exam-cal h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--charcoal-60);
  padding: 0 0 4px;
  margin: 0;
}
.exam-board-group {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exam-row { border-bottom: 1px solid var(--rule); }
.exam-row:last-child { border-bottom: 0; }
.exam-row__head {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--charcoal);
  transition: background 0.15s ease;
}
.exam-row__head:hover { background: var(--surface-raised); }
.exam-row.is-open .exam-row__head { background: var(--aubergine-08); }
.exam-row.is-open .exam-row__head .chev { background: var(--charcoal); }
.exam-row__head .nm {
  font-family: var(--font-display); font-size: 15px; color: var(--aubergine);
  line-height: 1.2;
}
.exam-row__head .dt {
  font-size: 12px; color: var(--charcoal-60);
}
.exam-row__head .weeks-away {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.04em;
}
.exam-row__head .chev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px 5px 11px;
  margin-left: 4px;
  background: var(--aubergine);
  color: var(--off-white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
}
.exam-week-col .ewc-pill--empty {
  visibility: hidden;
  min-height: 18px;
}
.exam-week-col .ewc-book--empty {
  visibility: hidden;
  min-height: 24px;
  margin-top: 4px;
}
.exam-row__weeks-wrap {
  position: relative;
}
.exam-row__arrow {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .exam-row__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: var(--off-white);
    color: var(--aubergine);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .exam-row__weeks-wrap:hover .exam-row__arrow { opacity: 1; }
  .exam-row__arrow:hover { background: var(--aubergine); color: var(--off-white); }
  .exam-row__arrow--prev { left: 6px; }
  .exam-row__arrow--next { right: 6px; }
}

.exam-row__weeks {
  display: flex;
  gap: 4px;
  padding: 16px 14px;
  background: var(--bg-canvas);
  border-top: 1px solid var(--rule);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.exam-row__weeks::-webkit-scrollbar { height: 6px; }
.exam-row__weeks::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
.exam-week-col {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 6px 6px;
  background: var(--surface-raised);
  color: var(--charcoal-60);
}
.exam-week-col .ewc-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
  text-align: center;
  min-height: 32px;
}
.exam-week-col .ewc-label .ewc-big {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1;
}
.exam-week-col .ewc-label .ewc-small {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-top: 1px;
}
.exam-week-col .ewc-label .ewc-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 4px 0;
}
.exam-week-col.is-now .ewc-label .ewc-tag { color: var(--aubergine); }
.exam-week-col.is-exam .ewc-label .ewc-tag { color: var(--charcoal); }

.exam-week-col .ewc-pill {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 4px;
  border: 1px solid transparent;
  border-radius: 999px;
  margin: 0 -2px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exam-week-col .ewc-pill.status--book { background: transparent; color: var(--aubergine); border-color: var(--aubergine); }
.exam-week-col .ewc-pill.status--filling { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.exam-week-col .ewc-pill.status--soldout { background: var(--rule); color: var(--charcoal-60); border-color: var(--rule); }
.exam-week-col .ewc-month {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  text-align: center;
  margin-top: 2px;
  margin-bottom: -2px;
}
.exam-week-col.is-now .ewc-month { color: var(--aubergine); }

.exam-week-col .ewc-strip {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.exam-week-col .ewc-strip .day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 2px 5px;
  border-radius: 3px;
  background: transparent;
  color: var(--charcoal-60);
}
.exam-week-col .ewc-strip .day .d-letter {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.6;
}
.exam-week-col .ewc-strip .day .d-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}
.exam-week-col .ewc-strip .day--travel {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.exam-week-col .ewc-strip .day--retreat {
  background: var(--gold);
  color: var(--charcoal);
}
.exam-week-col .ewc-strip .day--retreat .d-letter { opacity: 0.85; }
.exam-week-col .ewc-strip .day--today {
  background: var(--aubergine);
  color: var(--off-white);
}
.exam-week-col .ewc-strip .day--exam {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
}
.exam-week-col .ewc-book {
  margin-top: 4px;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 4px 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.exam-week-col .ewc-book:hover { background: var(--gold); }
.exam-week-col .ewc-book:disabled { background: var(--rule); border-color: var(--rule); color: var(--charcoal-60); cursor: not-allowed; }
.exam-week-col.is-now {
  background: var(--aubergine-08);
}
.exam-week-col.is-now .ewc-label { color: var(--aubergine); }
.exam-week-col.is-exam {
  background: var(--bg-canvas);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.exam-week-col.is-exam .ewc-label { color: var(--charcoal); }

/* Legacy exam-cal .row kept for reference */
.exam-cal .row { display: none; }

/* =====================================================
   Refunds
   ===================================================== */
.refund-block {
  border-left: 2px solid var(--aubergine);
  padding: 4px 0 4px 16px;
  margin-bottom: 24px;
}
.refund-block:last-child { margin-bottom: 0; }
.refund-block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin: 0 0 8px;
}
.refund-block .who {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--aubergine);
  margin-bottom: 8px;
}
.refund-sub {
  margin-top: 14px;
}
.refund-sub__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-60);
  margin-bottom: 4px;
}
.refund-sub p { font-size: 14.5px; line-height: 1.6; margin: 0; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-cats {
  display: flex; gap: 8px;
  overflow-x: auto;
  margin: 0 -20px 18px;
  padding: 0 20px 4px;
  scrollbar-width: none;
}
.faq-cats::-webkit-scrollbar { display: none; }
.faq-cats button {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
}
.faq-cats button.is-active {
  background: var(--aubergine);
  color: var(--off-white);
  border-color: var(--aubergine);
}

/* Direct-message-Alexander card — sits between cat pills and FAQ list */
.faq-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin: 18px 0 28px;
}
.faq-direct__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.faq-direct__body { flex: 1; min-width: 0; }
.faq-direct__lead {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--aubergine);
  line-height: 1.3;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.faq-direct__copy {
  font-size: 13px;
  color: var(--charcoal-60);
  margin: 0 0 12px;
  line-height: 1.5;
  max-width: 32em;
}
.faq-direct__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aubergine);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out);
}
.faq-direct__btn:hover {
  background: var(--aubergine-hover);
  color: var(--off-white);
  text-decoration: none;
}
.faq-direct__btn svg { flex-shrink: 0; }

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400; line-height: 1.3;
  color: var(--aubergine);
  cursor: pointer; user-select: none;
  background: transparent; border: 0; padding: 0;
  width: 100%; text-align: left;
  letter-spacing: -0.005em;
}
.faq-q .sign {
  font-family: var(--font-body); font-size: 22px; line-height: 1;
  color: var(--charcoal-60); font-weight: 300;
  transition: transform 200ms var(--ease-out);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q .sign { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px; line-height: 1.65; color: var(--charcoal);
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--ease-out), margin-top 200ms var(--ease-out), opacity 200ms var(--ease-out);
  opacity: 0;
  margin-top: 0;
}
.faq-item.is-open .faq-a {
  max-height: 1200px;
  margin-top: 14px;
  opacity: 1;
}

/* =====================================================
   Final CTA
   ===================================================== */
.final-cta {
  text-align: left;
  padding-bottom: 28px;
}
.final-cta h2 {
  font-size: 36px;
  margin-bottom: 18px;
}
.final-cta p:not([class]) { font-size: 16px; max-width: 36ch; }
.final-cta .actions {
  display: grid; gap: 10px;
  margin-top: 24px;
}

/* =====================================================
   Sticky bottom CTA
   ===================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: rgba(245, 240, 234, 0.96);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-top: 1px solid var(--aubergine);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta .row {
  display: flex; align-items: center; gap: 12px;
  max-width: 560px; margin: 0 auto;
}
.sticky-cta .info {
  flex: 1; min-width: 0;
}
.sticky-cta .info .price-line {
  font-family: var(--font-display); font-size: 17px; color: var(--aubergine);
  line-height: 1.1; letter-spacing: -0.005em;
}
.sticky-cta .info .desc-line {
  font-size: 11px; color: var(--charcoal-60); margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.sticky-cta .btn { padding: 12px 18px; font-size: 14px; min-height: 44px; }

/* =====================================================
   Footer
   ===================================================== */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--aubergine);
}
.footer .wm-img { height: 24px; margin-bottom: 20px; }
.footer .links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px;
  margin-bottom: 28px;
}
.footer .links h5 {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal-60); margin: 0 0 10px;
}
.footer .links a {
  display: block; font-size: 14px; color: var(--charcoal);
  text-decoration: none; padding: 4px 0;
}
.footer .legal {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  font-size: 11px; color: var(--charcoal-60); line-height: 1.6;
}

/* =====================================================
   Modal (booking)
   ===================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(42, 42, 46, 0.5);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
.modal {
  background: var(--off-white);
  border-radius: 16px 16px 0 0;
  width: 100%; max-width: 560px;
  padding: 28px 20px 36px;
  box-shadow: 0 -8px 24px rgba(42,42,46,0.18);
  max-height: 92vh; overflow-y: auto;
}
.modal h2 {
  font-family: var(--font-display); font-size: 26px; font-weight: 400;
  color: var(--aubergine); margin: 0 0 8px; letter-spacing: -0.005em;
}
.modal p { font-size: 14.5px; color: var(--charcoal); line-height: 1.55; margin: 0 0 20px; }
.modal label {
  display: block; font-size: 12px; font-weight: 600; color: var(--charcoal);
  margin-bottom: 6px; margin-top: 12px;
}
.modal select, .modal input {
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: var(--bg-canvas); border: 1px solid var(--rule);
  padding: 12px 12px; border-radius: var(--radius-md); width: 100%; outline: none;
  transition: border-color 120ms, box-shadow 120ms;
  min-height: 48px;
}
.modal select:focus, .modal input:focus {
  border-color: var(--aubergine); box-shadow: var(--shadow-focus);
}
.modal-actions { display: grid; gap: 8px; margin-top: 24px; }
.modal-close {
  background: transparent; border: 0; cursor: pointer;
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--charcoal-60); font-size: 24px;
}
.modal-wrap { position: relative; }

.modal-confirm { text-align: center; padding: 16px 0; }
.modal-confirm .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--aubergine); color: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: var(--font-display); font-size: 28px;
}

/* =====================================================
   Time budgeter popup + pill
   ===================================================== */
.tb-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 520px;
  z-index: 10000;
  background: var(--aubergine);
  border-radius: 14px;
  padding: 22px 20px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  animation: tbSlideUp 0.28s var(--ease-out) both;
}
@keyframes tbSlideUp {
  from { transform: translateX(-50%) translateY(calc(100% + 24px)); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.tb-popup__close {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,234,0.6);
  border-radius: 4px;
}
.tb-popup__close:hover { color: var(--off-white); }
.tb-popup__copy {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.4;
  color: var(--off-white);
  margin: 0 0 14px;
  padding-right: 28px;
  text-align: center;
}
.tb-popup__input {
  display: block; width: 100%;
  font-family: var(--font-body); font-size: 15px;
  color: var(--off-white);
  background: rgba(245,240,234,0.12);
  border: 1px solid rgba(245,240,234,0.25);
  border-radius: var(--radius-md);
  padding: 12px; margin-bottom: 10px;
  outline: none; min-height: 48px;
  transition: border-color 120ms;
}
.tb-popup__input::placeholder { color: rgba(245,240,234,0.45); }
.tb-popup__input:focus { border-color: var(--gold); }
.tb-popup__btn { width: 100%; margin-bottom: 10px; }
.tb-popup__consent {
  font-size: 11px; color: rgba(245,240,234,0.55); line-height: 1.5;
  margin: 0; text-align: center;
}
.tb-popup__error { font-size: 13px; color: #f4a4a4; margin: 0 0 10px; }
.tb-popup__screenshot {
  display: block; width: 100%; border-radius: var(--radius-md);
  margin: 0 0 12px;
}
.tb-popup__subhead {
  font-family: var(--font-body); font-size: 13px; line-height: 1.5;
  color: rgba(245,240,234,0.72);
  margin: 0 0 14px; text-align: center;
}
.rm-success { font-size: 13px; color: rgba(245,240,234,0.86); margin: 0 0 10px; text-align: center; }

/* Pill — sits 8px above the WhatsApp button */
.tb-pill {
  position: fixed;
  bottom: 84px; right: 20px;
  z-index: 9999;
  display: flex; align-items: center; gap: 4px;
  background: var(--aubergine);
  color: var(--gold);
  border: 0; cursor: pointer;
  border-radius: 50px;
  padding: 6px 8px 6px 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.tb-pill:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.24); transform: translateY(-1px); }
.tb-pill__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold); color: var(--aubergine);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}

/* Remind me pill — sits 8px above the time budgeter pill */
.rm-pill {
  position: fixed;
  bottom: 144px; right: 20px;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: var(--aubergine);
  color: var(--gold);
  border: 0; cursor: pointer;
  border-radius: 50px;
  padding: 6px 18px 6px 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.rm-pill:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.24); transform: translateY(-1px); }
.rm-pill__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold); color: var(--aubergine);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}

/* Reminder inline form (inside Final CTA, on aubergine background) */
.rm-inline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,234,0.2);
}
/* Override the padding-right added for the popup close button */
.rm-inline__copy { padding-right: 0; }
.rm-inline__done {
  font-family: var(--font-body);
  font-size: 13px; color: rgba(245,240,234,0.65);
  text-align: center;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(245,240,234,0.2);
}

/* =====================================================
   WhatsApp floating button
   ===================================================== */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 18px 6px 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.wa-btn:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.24); transform: translateY(-1px); }
.wa-btn__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.5);
}

/* =====================================================
   Small enhancements for slightly wider mobile / tablet
   ===================================================== */
@media (min-width: 600px) {
  .wrap { padding: 0 32px; }
  .hero h1 { font-size: 46px; }  .h2, h2 { font-size: 36px; }
  .photo-stack { grid-template-columns: 1fr 1fr; }
  .photo-stack .photo--feature { grid-column: span 2; }
  section { padding: 72px 0; }
  .final-cta { padding-bottom: 36px; }
  .schedule .row { grid-template-columns: 110px 1fr auto; gap: 12px; padding: 14px 16px; }
  .schedule .row .time { font-size: 12.5px; letter-spacing: -0.01em; }
  .schedule .row .what { font-size: 14.5px; line-height: 1.3; }
  .schedule .meta-row { padding: 14px 16px; align-items: baseline; }
  .day-tabs button { font-size: 13px; padding: 10px 8px; letter-spacing: 0.04em; }
  .day-tabs__top button { min-width: 80px; padding: 6px 10px; }
  .day-tabs { margin-bottom: 16px; }
}
