:root {
  --white:     #FDFCF9;
  --cream:     #F4EFE6;
  --cream-mid: #EDE6D8;
  --ink:       #191E16;
  --ink-mid:   #384533;
  --stone:     #8A9485;
  --stone-lt:  #B8C0B2;
  --magenta:   #C0006A;
  --sketch:    rgba(57,70,52,0.55);  /* colour for all inline sketches */

  --serif:  'EB Garamond', Georgia, serif;
  --body:   'Spectral', Georgia, serif;
  --ui:     'Karla', system-ui, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── WATERCOLOUR LAYER ── */
.wc {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wc svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── SKETCH ILLUSTRATIONS ──
   Thin-line SVG drawings in the style of 
   quick notebook margin sketches.
   Used inline, never decorative-only. */
.sketch {
  display: inline-block;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.sketch:hover { opacity: 0.85; }
.sketch-block {
  display: block;
  margin: 0 auto;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 14px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(253,252,249,0.96);
  border-color: rgba(138,148,130,0.18);
  backdrop-filter: blur(12px);
}
.nav-logo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
  width: 52px;
  height: 52px;
  position: relative;
}
.nav-logo-img {
  position: absolute;
  top: 0; left: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
/* Before scroll: show white logo (nav is transparent over light bg — 
   white logo only makes sense on dark hero. On light bg use dark logo always.
   So: dark logo by default, white logo only when a dark section is behind nav.
   Since our hero is light, we use dark logo always and just transition smoothly. */
.nav-logo-light { opacity: 0; }
.nav-logo-dark  { opacity: 1; }
/* When nav is scrolled (solid bg), dark logo is always correct */
.nav.scrolled .nav-logo-light { opacity: 0; }
.nav.scrolled .nav-logo-dark  { opacity: 1; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-apply {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 10px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
}
.nav-apply:hover { background: var(--ink-mid); }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── SHARED COMPONENTS ── */
.eyebrow {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--stone-lt);
  flex-shrink: 0;
}
.eyebrow.centre { justify-content: center; }
.eyebrow.centre::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 50px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}

.body-text {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
}
.body-text strong {
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.body-text + .body-text { margin-top: 20px; }

.pull-quote {
  padding: 0 0 0 24px;
  border-left: 2px solid var(--stone-lt);
  margin: 40px 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial {
  background: rgba(244,239,230,0.6);
  border-left: 3px solid var(--stone-lt);
  padding: 28px 32px;
  margin: 32px 0;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 14px;
}
.testimonial cite {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}

.btn-primary {
  display: inline-block;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--ink-mid); }

.btn-outline {
  display: inline-block;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(138,148,130,0.4);
  padding: 13px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--ink); }

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
.d4 { transition-delay: 0.46s; }

/* ── BRIDGE ── */
.bridge {
  border-top: 3px solid var(--magenta);
  background: var(--white);
  padding: 52px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.bridge-copy p {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.bridge-copy h3 {
  font-family: var(--body);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 500px;
}
.bridge-link {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--magenta);
  text-decoration: none;
  border-bottom: 1px solid var(--magenta);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.bridge-link:hover { opacity: 0.65; }

/* ── FOOTER ── */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(138,148,130,0.2);
  padding: 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
.footer p {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone-lt);
}
.footer-mail {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-mail:hover { color: var(--ink); }

/* ════════════════════════════════════
   PAGE: HOME
════════════════════════════════════ */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 72px 100px;
  overflow: hidden;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  width: 100%;
}
.home-hero-left .eyebrow { margin-bottom: 32px; }

.home-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
/* The self-deprecating aside — smaller, parenthetical */
.home-headline-aside {
  font-family: var(--body);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--stone);
  margin-bottom: 44px;
  max-width: 500px;
  padding-left: 2px;
}
.home-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Summary panel */
.hero-card {
  background: rgba(244,239,230,0.72);
  border: 1px solid rgba(138,148,130,0.18);
  padding: 44px 40px;
  backdrop-filter: blur(8px);
}
.hero-card-intro {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(138,148,130,0.2);
}
.hero-card-body {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 14px;
}
.hero-benefits {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(138,148,130,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-benefits li {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  padding-left: 14px;
  position: relative;
}
.hero-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
}
.hero-benefits li strong {
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
}

/* ── HOME: WHAT IT IS ── */
.home-what {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.home-what-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
/* Sketch floats in the right column alongside text */
.home-what-sketch {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

/* ── HOME: THREE ELEMENTS ── */
.home-elements {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
}
.home-elements-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.home-elements-header { margin-bottom: 56px; }
.elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.element-card {
  background: var(--white);
  padding: 48px 36px;
}
.element-sketch {
  margin-bottom: 24px;
  height: 64px;
  display: flex;
  align-items: flex-end;
}
.element-label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.element-name {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.element-desc {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
}

/* ── HOME: VOICES ── */
.home-voices {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.home-voices-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.voice-card {
  position: relative;
  padding: 40px 36px;
}
.voice-wash {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.voice-wash svg { width: 100%; height: 100%; }
.voice-inner { position: relative; z-index: 1; }
.voice-open {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  color: rgba(138,148,130,0.22);
  line-height: 0.7;
  margin-bottom: 12px;
}
.voice-q {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}
.voice-who {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── HOME: CTA BAND ── */
.home-cta-band {
  position: relative;
  background: var(--ink);
  padding: 80px 72px;
  overflow: hidden;
  text-align: center;
}
.home-cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.home-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(253,252,249,0.9);
  margin-bottom: 14px;
}
.home-cta-band p {
  font-family: var(--body);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,252,249,0.45);
  margin-bottom: 36px;
}
.home-cta-band .btn-primary {
  background: var(--white);
  color: var(--ink);
}
.home-cta-band .btn-primary:hover { background: var(--cream); }

/* Story card — the found-object feel */
.story-card {
  background: var(--white);
  border: 1px solid rgba(138,148,130,0.2);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(25,30,22,0.07);
}
.story-card-label {
  padding: 12px 20px;
  background: var(--cream);
  border-bottom: 1px solid rgba(138,148,130,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.story-card-tag {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.story-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.story-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 0.6s ease;
}
.story-card:hover .story-card-photo img {
  transform: scale(1.02);
}
.story-card-body {
  padding: 28px 28px 24px;
}
.story-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.story-card-text {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.story-card-text em { font-style: italic; color: var(--ink); }
.story-card-question {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(138,148,130,0.15);
}
.story-card-themes {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(138,148,130,0.15);
}
.story-card-themes-label {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.story-card-theme-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.story-card-themes span {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid rgba(138,148,130,0.28);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── HOME: VIDEO SECTION ── */
.home-video {
  position: relative;
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.home-video-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 480px;
}
/* Left: the video player area */
.home-video-player {
  position: relative;
  background: #0e1310;
  overflow: hidden;
}
.home-video-player::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.home-video-player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-video-still-label {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,252,249,0.35);
  pointer-events: none;
}

/* Right: the pull-quote panel */
.home-video-panel {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.home-video-panel .eyebrow {
  color: rgba(184,192,178,0.45);
  margin-bottom: 28px;
}
.home-video-panel .eyebrow::before { background: rgba(184,192,178,0.2); }
.video-quotes {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.video-quote {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.video-quote.visible { opacity: 1; transform: none; }
.video-quote p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(253,252,249,0.75);
  margin-bottom: 10px;
}
.video-quote cite {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184,192,178,0.4);
  font-style: normal;
}
/* Dots indicating multiple quotes */
.video-quote-nav {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.vqn-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.vqn-dot.active { background: rgba(255,255,255,0.5); }

@media (max-width: 1024px) {
  .home-video-inner { grid-template-columns: 1fr; }
  .home-video-player { min-height: 280px; }
  .home-video-panel { padding: 40px 24px; }
}

/* ════════════════════════════════════
   PAGE: PROGRAMME
════════════════════════════════════ */
.prog-hero {
  position: relative;
  padding: 160px 72px 100px;
  overflow: hidden;
  background: var(--cream);
}
.prog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.prog-elements {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.prog-elements-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.prog-elements-header { margin-bottom: 64px; max-width: 560px; }
.prog-element {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid rgba(138,148,130,0.22);
  align-items: start;
}
.prog-element:last-child { border-bottom: 1px solid rgba(138,148,130,0.22); }
.prog-element-num {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  color: var(--stone-lt);
  line-height: 1;
  text-align: right;
  padding-top: 4px;
}
.prog-element-label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.prog-element-name {
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}
.prog-element-desc {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 580px;
  margin-bottom: 16px;
}
.prog-detail-list {
  list-style: none;
  margin-top: 20px;
}
.prog-detail-list li {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid rgba(138,148,130,0.15);
  display: flex;
  gap: 16px;
}
.prog-detail-list li::before {
  content: '—';
  color: var(--stone-lt);
  flex-shrink: 0;
}
/* Sketch sits alongside each element */
.prog-element-sketch {
  margin-top: 32px;
}

.prog-cohort {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
}
.prog-cohort-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
.duration-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.duration-opt {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(138,148,130,0.2);
}
.duration-opt h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.duration-opt p {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--stone);
}

/* ════════════════════════════════════
   PAGE: THE SALON
════════════════════════════════════ */
.salon-hero {
  position: relative;
  background: var(--ink);
  padding: 160px 72px 100px;
  overflow: hidden;
}
.salon-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.salon-hero-inner .eyebrow { color: rgba(184,192,178,0.55); }
.salon-hero-inner .eyebrow::before { background: rgba(184,192,178,0.3); }
.salon-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: rgba(253,252,249,0.9);
  margin-bottom: 28px;
}
.salon-hero-sub {
  font-family: var(--body);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,252,249,0.42);
  max-width: 520px;
}

.salon-conditions {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.salon-conditions-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.salon-conditions-header { max-width: 560px; margin-bottom: 60px; }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.condition-card {
  background: var(--cream);
  padding: 32px 26px;
}
.condition-n {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: var(--stone-lt);
  line-height: 1;
  margin-bottom: 14px;
}
.condition-title {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.condition-desc {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
}

.hosting-video {
  border: 1px solid rgba(138,148,130,0.2);
  overflow: hidden;
  background: var(--ink);
}
.hosting-video-label {
  padding: 11px 18px;
  background: var(--cream);
  border-bottom: 1px solid rgba(138,148,130,0.15);
}
.hosting-video-label span {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.hosting-video-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.hosting-video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.salon-hosting {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
}
.salon-hosting-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.salon-stories {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.salon-stories-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.salon-stories-header { max-width: 600px; margin-bottom: 64px; }
.story-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.story-example {
  background: var(--cream);
  padding: 40px 36px;
}
.story-example-label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}
.story-example-title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}
.story-example-text {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.story-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(138,148,130,0.22);
}
.story-theme {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid rgba(138,148,130,0.3);
  padding: 3px 11px;
  border-radius: 20px;
}

/* ════════════════════════════════════
   PAGE: ABOUT
════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 160px 72px 100px;
  overflow: hidden;
  background: var(--cream);
}
.about-hero-inner { position: relative; z-index: 1; max-width: 720px; }

.about-story {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.about-story-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.about-story-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 44px;
}

.about-ecology {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
}
.about-ecology-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-ecology-left { position: sticky; top: 100px; }
.about-ecology-left .section-title { margin-bottom: 24px; }
.ecology-diagram { margin-top: 40px; width: 200px; height: 200px; }
.ecology-diagram svg { width: 100%; height: 100%; }
.ecology-layers { display: flex; flex-direction: column; }
.ecology-layer {
  padding: 26px 28px;
  border-top: 1px solid rgba(138,148,130,0.22);
}
.ecology-layer:last-child { border-bottom: 1px solid rgba(138,148,130,0.22); }
.el-name {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 7px;
}
.el-desc {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
}

/* ════════════════════════════════════
   PAGE: APPLY
════════════════════════════════════ */
.apply-hero {
  position: relative;
  padding: 160px 72px 80px;
  overflow: hidden;
}
.apply-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.apply-main {
  position: relative;
  padding: 0 72px 100px;
  overflow: hidden;
}
.apply-main-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
.apply-call h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.25;
}
.apply-call-note {
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--cream);
  border-left: 2px solid var(--stone-lt);
}
.apply-call-note p {
  font-family: var(--body);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
}
.apply-cost {
  background: var(--ink);
  padding: 44px 40px;
  position: sticky;
  top: 100px;
}
.apply-cost-label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184,192,178,0.45);
  margin-bottom: 18px;
}
.apply-spec-rows {
  margin: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.apply-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.asr-k {
  font-family: var(--body);
  font-size: 13px;
  font-style: italic;
  color: rgba(184,192,178,0.45);
}
.asr-v {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(253,252,249,0.65);
}
.apply-cost-price {
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
  font-weight: 400;
  color: rgba(253,252,249,0.9);
  line-height: 1;
  margin-bottom: 6px;
}
.apply-cost-per {
  font-family: var(--body);
  font-size: 14px;
  font-style: italic;
  color: rgba(184,192,178,0.45);
  margin-bottom: 28px;
}
.apply-cost-items {
  list-style: none;
  margin-bottom: 32px;
}
.apply-cost-items li {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(253,252,249,0.5);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 12px;
  line-height: 1.6;
}
.apply-cost-items li::before {
  content: '–';
  color: rgba(184,192,178,0.35);
  flex-shrink: 0;
}
.apply-cost .btn-primary {
  width: 100%;
  background: rgba(253,252,249,0.9);
  color: var(--ink);
  text-align: center;
  margin-bottom: 10px;
}
.apply-cost .btn-primary:hover { background: var(--cream); }
.apply-cost-supported {
  font-family: var(--body);
  font-size: 13px;
  font-style: italic;
  color: rgba(184,192,178,0.35);
  line-height: 1.65;
  text-align: center;
}
.apply-org {
  position: relative;
  background: var(--cream);
  padding: 80px 72px;
  overflow: hidden;
}
.apply-org-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}
.org-benefits {
  list-style: none;
  margin: 24px 0;
}
.org-benefits li {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
  padding: 11px 0;
  border-bottom: 1px solid rgba(138,148,130,0.2);
  display: flex;
  gap: 14px;
}
.org-benefits li::before {
  content: '—';
  color: var(--stone-lt);
  flex-shrink: 0;
}

/* ════════════════════════════════════
   PAGE: BENEFITS
════════════════════════════════════ */
.benefits-hero {
  position: relative;
  padding: 160px 72px 100px;
  overflow: hidden;
  background: var(--cream);
}
.benefits-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.benefits-main {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.benefits-main-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.benefit-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  padding: 72px 0;
  border-top: 1px solid rgba(138,148,130,0.2);
  align-items: start;
}
.benefit-row:last-child { border-bottom: 1px solid rgba(138,148,130,0.2); }
.benefit-left { position: sticky; top: 100px; }
.benefit-num {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  color: var(--stone-lt);
  line-height: 1;
  margin-bottom: 12px;
}
.benefit-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.benefit-right .body-text + .body-text { margin-top: 18px; }
.benefits-who {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
  border-top: 1px solid rgba(138,148,130,0.2);
}
.benefits-who-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.benefits-who-intro {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 36px;
}
.benefits-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.benefits-who-list li {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}
.benefits-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--magenta);
}
.benefits-who-close {
  font-family: var(--body);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}
.benefits-org {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
}
.benefits-org-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 1024px) {
  .benefits-hero,
  .benefits-main,
  .benefits-org { padding: 72px 24px; }
  .benefit-row { grid-template-columns: 1fr; gap: 32px; }
  .benefit-left { position: static; }
  .benefits-org-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════
   PAGE: THE WORKSHOP
════════════════════════════════════ */
.workshop-hero {
  position: relative;
  padding: 160px 72px 100px;
  overflow: hidden;
  background: var(--cream);
}
.workshop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.workshop-main {
  position: relative;
  padding: 100px 72px;
  overflow: hidden;
}
.workshop-main-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.workshop-intro {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(138,148,130,0.2);
}
.workshop-intro .body-text {
  font-size: 19px;
  line-height: 1.85;
}
.workshop-three {
  display: flex;
  flex-direction: column;
}
.workshop-part {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(138,148,130,0.2);
  align-items: start;
}
.workshop-part:last-child { border-bottom: 1px solid rgba(138,148,130,0.2); }
.workshop-part-num {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  color: var(--stone-lt);
  line-height: 1;
  text-align: right;
  padding-top: 4px;
}
.workshop-part-title {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.workshop-part-desc {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
}
.workshop-close {
  position: relative;
  background: var(--cream);
  padding: 100px 72px;
  overflow: hidden;
  text-align: center;
}
.workshop-close-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .workshop-hero,
  .workshop-main,
  .workshop-close { padding: 72px 24px; }
  .workshop-part { grid-template-columns: 56px 1fr; gap: 24px; }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-logo-btn { width: 44px; height: 44px; }
  .nav-logo-img { width: 44px; height: 44px; }
  .home-hero,
  .prog-hero, .salon-hero,
  .about-hero, .apply-hero { padding: 120px 24px 72px; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .home-hero-ctas { flex-direction: column; align-items: flex-start; }
  .home-what, .home-elements, .home-voices { padding: 72px 24px; }
  .home-what-inner { grid-template-columns: 1fr; gap: 40px; }
  .elements-grid { grid-template-columns: 1fr; gap: 2px; }
  .voices-grid { grid-template-columns: 1fr; }
  .home-cta-band { padding: 64px 24px; }
  .prog-elements, .prog-cohort { padding: 72px 24px; }
  .prog-element { grid-template-columns: 56px 1fr; gap: 24px; }
  .prog-cohort-inner { grid-template-columns: 1fr; gap: 48px; }
  .duration-options { grid-template-columns: 1fr; }
  .salon-conditions, .salon-hosting, .salon-stories { padding: 72px 24px; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .salon-hosting-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-pair { grid-template-columns: 1fr; }
  .about-story, .about-ecology { padding: 72px 24px; }
  .about-ecology-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-ecology-left { position: static; }
  .apply-main { padding: 0 24px 72px; }
  .apply-main-inner { grid-template-columns: 1fr; gap: 48px; }
  .apply-cost { position: static; }
  .apply-org { padding: 72px 24px; }
  .apply-org-inner { grid-template-columns: 1fr; gap: 40px; }
  .bridge { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .footer { padding: 36px 24px; flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 640px) {
  .conditions-grid { grid-template-columns: 1fr; }
}