/* =========================================================
   AYALA LIFESTYLE TRAINING — Design System v3
   Warm obsidian + aged gold · multi-page architecture
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Warm dark surfaces — less monolithic, more depth */
  --bg-0: #0c0a07;            /* deepest, footer, marquee */
  --bg-1: #110e0a;            /* page base — warm charcoal */
  --bg-2: #15110c;            /* lifted surface */
  --bg-3: #1a1610;            /* card surface */
  --bg-4: #211b14;            /* hover / emphasis */
  --bg-paper: #1f1a13;        /* feature sections, more warmth */

  /* Aged gold spectrum */
  --gold: #c9a96e;
  --gold-rgb: 201, 169, 110;
  --gold-soft: #b89a5e;
  --gold-bright: #ddc28a;
  --gold-deep: #8e7340;
  --gold-shadow: rgba(var(--gold-rgb), 0.18);
  --gold-wash: rgba(var(--gold-rgb), 0.04);

  /* Lines */
  --line: rgba(var(--gold-rgb), 0.14);
  --line-strong: rgba(var(--gold-rgb), 0.28);
  --line-soft: rgba(245, 239, 230, 0.06);

  /* Status */
  --invalid: #f47272;

  /* Warm cream text */
  --ink: #f5efe6;
  --ink-2: #e8dccb;
  --ink-3: #b9ad99;
  --ink-4: #8a8278;
  --ink-5: #5e574e;

  --rule: rgba(245, 239, 230, 0.1);
  --focus: rgba(var(--gold-rgb), 0.55);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
  --container-tight: 720px;
  --header-h: 76px;
  --header-h-mobile: 56px;
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}
body {
  background: var(--bg-1);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.has-modal,
body.has-mobile-nav { overflow: hidden; }
body.has-mobile-nav { position: fixed; width: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--bg-1); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--bg-1);
  padding: 0.6rem 1rem; font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.04em; z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.sr-defs { position: absolute; width: 0; height: 0; pointer-events: none; overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Page atmosphere ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 700px at 80% -10%, rgba(var(--gold-rgb), 0.08), transparent 65%),
    radial-gradient(700px 800px at -10% 30%, rgba(var(--gold-rgb), 0.04), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><circle cx='2' cy='2' r='0.4' fill='%23c9a96e' fill-opacity='0.04'/></svg>");
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

main, header, footer, section { position: relative; z-index: 1; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }
.container--tight { max-width: var(--container-tight); }

.section { padding: clamp(4rem, 7vw, 7rem) 0; position: relative; }
.section--paper { background: var(--bg-paper); }
.section--deep { background: var(--bg-0); }
/* Section dividers — only when background changes, not between same-bg sections */
.section + .section--paper,
.section--paper + .section,
.section + .section--deep,
.section--deep + .section { border-top: 1px solid var(--line); }
.section--paper + .section--paper,
.section--deep + .section--deep { border-top: none; }

.two-col {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}
.two-col--media { grid-template-columns: 1fr 1fr; align-items: center; }
.two-col--portrait { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
.two-col--apply { grid-template-columns: 1fr 1fr; align-items: start; }
.two-col--faq { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 880px) {
  .two-col, .two-col--media, .two-col--portrait,
  .two-col--apply, .two-col--faq {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---------- Typography ---------- */
.display, .display--md, .display--lg, .display--sm, .display--xl {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.05;
  text-wrap: balance;
}
.display { font-size: clamp(2.5rem, 5.5vw, 4.75rem); line-height: 1; }
.display--xl { font-size: clamp(3rem, 7.2vw, 6.5rem); line-height: 0.98; }
.display--md { font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.06; }
.display--lg { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; }
.display--sm { font-size: clamp(1.75rem, 2.6vw, 2.5rem); line-height: 1.1; }

.display em, .display--xl em, .display--md em, .display--lg em, .display--sm em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.eyebrow__rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center .eyebrow__rule {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 48px;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 1.4rem;
}

.prose {
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 60ch;
}
.prose + .prose { margin-top: 1.1rem; }
.prose--lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-3);
  margin-top: 1.4rem;
}
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }
.prose strong { color: var(--ink); font-weight: 500; }

.section-head { margin-bottom: clamp(2.2rem, 3.5vw, 3.5rem); max-width: 70ch; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.col-head { padding-right: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 1rem;
  --pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  min-height: 44px;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  color: #1a1106;
  border-color: var(--gold-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 4px 14px -8px rgba(var(--gold-rgb), 0.4);
}
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn--gold:hover::after { transform: translateX(120%); }
.btn--gold:hover {
  background: linear-gradient(180deg, #e6cd95, var(--gold));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 6px 18px -8px rgba(var(--gold-rgb), 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.04);
}

.btn--link {
  padding: 0.5rem 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  letter-spacing: 0.16em;
  min-height: 32px;
}
.btn--link:hover { color: var(--gold); border-color: var(--gold); }

.btn--lg { --pad-y: 1.05rem; --pad-x: 1.85rem; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn--submit { width: 100%; max-width: 360px; margin: 0 auto; display: flex; }

.btn--play {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 0.95rem 1.5rem 0.95rem 1.1rem;
}
.btn--play:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.04);
}
.btn--play .btn__play-icon {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.btn--play .btn__play-icon svg { width: 11px; height: 11px; margin-left: 1px; }
.btn--play:hover .btn__play-icon { background: var(--gold); color: #1a1106; }

/* ---------- Announcement ---------- */
.announcement {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.announcement__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
}
@media (max-width: 720px) {
  .announcement__inner { font-size: 0.66rem; padding: 0.55rem clamp(1rem, 3vw, 2rem); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 14, 10, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12, 10, 7, 0.94);
  border-bottom-color: var(--line);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.85rem; color: var(--ink); }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.brand__name em { color: var(--gold); font-style: italic; }
.brand__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s var(--ease-out), transform .24s var(--ease-out);
}

.nav { display: flex; justify-content: center; gap: clamp(1.1rem, 1.8vw, 2.4rem); padding: 0 clamp(0.5rem, 1.5vw, 1.5rem); }
.nav a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.5rem 0.1rem;
  position: relative;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.85rem; justify-self: end; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  min-height: 44px;
}
.nav-toggle__line { display: block; width: 18px; height: 1px; background: var(--gold); }
.nav-toggle__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-toggle.is-open { border-color: var(--gold); color: var(--gold); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1.75rem clamp(1.25rem, 4vw, 2rem) calc(2.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  text-align: left;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .24s var(--ease-out), transform .24s var(--ease-out);
}
.mobile-nav.is-open { display: flex; opacity: 1; transform: translateY(0); }

/* Top CTA block */
.mobile-nav__top {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.mobile-nav__top .btn { margin-bottom: 0.75rem; }
.mobile-nav__top-tag {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-3);
}

/* Editorial nav entries */
.mobile-nav__link {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 0.85rem;
  padding: 1.4rem 0.25rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  min-height: 60px;
  text-decoration: none;
  position: relative;
  transition: color .25s var(--ease);
}
.mobile-nav__link:last-of-type { border-bottom: 0; }
.mobile-nav__link-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.mobile-nav__link-arrow {
  width: 14px; height: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  color: var(--gold);
}
.mobile-nav__link:active { color: var(--gold); }
.mobile-nav__link:active .mobile-nav__link-arrow { opacity: 1; transform: translateX(0); }

/* Active page marker */
.mobile-nav__link.is-current {
  color: var(--gold);
}
.mobile-nav__link.is-current::after {
  content: "You are here";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.mobile-nav__link.is-current .mobile-nav__link-arrow { display: none; }

/* Bottom phone block */
.mobile-nav__call {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  text-align: center;
  display: block;
}
.mobile-nav__call-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.4rem;
}
.mobile-nav__call-number {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: -0.005em;
}

/* Close affordance */
.mobile-nav__close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  background: var(--bg-0);
  z-index: 2;
  transition: all .25s var(--ease);
}
.mobile-nav__close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-nav__close svg { width: 16px; height: 16px; }

@media (max-width: 1380px) {
  .brand__tag { opacity: 0; transform: translateY(-4px); position: absolute; pointer-events: none; }
}
@media (max-width: 1180px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav.is-open { display: flex; }
}
@media (max-width: 560px) {
  .header-actions .btn--gold { display: none; }
  .site-header__inner { min-height: var(--header-h-mobile); padding: 0.5rem clamp(1rem, 3vw, 1.5rem); }
  .brand__name { font-size: 1rem; }
  .brand__mark { width: 28px; height: 28px; }
  .brand { gap: 0.65rem; }
}

/* ---------- Page hero (used on inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 30% 20%, rgba(var(--gold-rgb), 0.09), transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { max-width: 62ch; }

/* ---------- Cinematic hero (home only, type-only) ---------- */
.cinematic-hero {
  position: relative;
  min-height: clamp(70vh, 80vh, 86vh);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.cinematic-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 25% 30%, rgba(var(--gold-rgb), 0.13), transparent 60%),
    radial-gradient(50% 70% at 95% 80%, rgba(var(--gold-rgb), 0.07), transparent 60%);
  pointer-events: none;
}
.cinematic-hero__bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 1px;
  height: 64%;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.22) 25%, rgba(var(--gold-rgb), 0.22) 75%, transparent);
  pointer-events: none;
}
@media (max-width: 880px) {
  .cinematic-hero__bg::after { display: none; }
}
.cinematic-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  width: 100%;
}
.cinematic-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 2rem;
}
.cinematic-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.cinematic-hero h1 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 0.96;
  font-size: min(clamp(3.25rem, 9vw, 7.5rem), 18vh);
  text-wrap: balance;
  max-width: 16ch;
}
.cinematic-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.cinematic-hero__lede {
  margin-top: 1.8rem;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: min(52ch, 46%);
}
@media (max-width: 880px) {
  .cinematic-hero__lede { max-width: 52ch; }
}
.cinematic-hero__credo {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 38ch;
}
.cinematic-hero__cta {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.cinematic-hero__cta .btn--link { color: var(--ink-2); }

@media (max-width: 720px) {
  .cinematic-hero { min-height: 0; padding-top: 3.5rem; padding-bottom: 4rem; }
  .cinematic-hero h1 { font-size: clamp(2.25rem, 9.5vw, 3.5rem); line-height: 1.04; max-width: 14ch; }
  .cinematic-hero__eyebrow { margin-bottom: 1.6rem; }
  .cinematic-hero__lede { margin-top: 1.8rem; font-size: 1.05rem; line-height: 1.6; }
  .cinematic-hero__credo { margin-top: 2rem; font-size: 1rem; line-height: 1.55; }
  .cinematic-hero__cta { margin-top: 2.4rem; flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .cinematic-hero__cta .btn { width: 100%; }
}

/* ---------- Home: navigate the practice (4 nav teasers) ---------- */
.explore { background: var(--bg-paper); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}
.explore-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  transition: background .35s var(--ease);
  position: relative;
}
.explore-card:last-child { border-right: 0; }
.explore-card:hover { background: var(--bg-3); }
.explore-card__num {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 1.2rem;
}
.explore-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 0.7rem;
  line-height: 1.15;
  color: var(--ink);
}
.explore-card p {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.explore-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  margin-top: auto;
}
.explore-card__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.explore-card:hover .explore-card__link::after,
.explore-card:active .explore-card__link::after { transform: scaleX(1); }
.explore-card__link svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.explore-card:hover .explore-card__link svg,
.explore-card:active .explore-card__link svg { transform: translateX(4px); }
@media (max-width: 1080px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-card:nth-child(2n) { border-right: 0; }
  .explore-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.5rem 1.25rem; min-height: 0; }
  .explore-card:last-child { border-bottom: 0; }
  .explore-card p { font-size: 0.98rem; line-height: 1.65; margin-bottom: 1.2rem; }
}

/* ---------- Prose list (simple bulleted list) ---------- */
.prose-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.prose-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.prose-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* ---------- Practice page: positioning ---------- */
.ticks {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ticks li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 1.0625rem;
}
.ticks li:last-child { border-bottom: 1px solid var(--line); }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- Disciplines: stacked alternating layout ---------- */
.discipline-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  margin-top: clamp(2.5rem, 4vw, 4rem);
}
.discipline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  padding: 0;
}
.discipline-row:nth-child(even) .discipline-row__media { order: 2; }
.discipline-row__media {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.discipline-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.discipline-row:hover .discipline-row__media img { transform: scale(1.04); }
.discipline-row__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.discipline-row h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.05;
}
.discipline-row__lede {
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.discipline-row p {
  color: var(--ink-3);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 50ch;
}
@media (max-width: 880px) {
  .discipline-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .discipline-row:nth-child(even) .discipline-row__media { order: 0; }
  .discipline-row__media { max-width: 480px; aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .discipline-row__media { max-width: 100%; aspect-ratio: 5/4; }
}

/* ---------- Approach: 3 tenets ---------- */
.tenets {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.08);
}
.tenets li {
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border-right: 1px solid rgba(var(--gold-rgb), 0.08);
  position: relative;
  transition: background .4s var(--ease);
}
.tenets li:last-child { border-right: 0; }
.tenets li:hover { background: var(--bg-2); }
.tenets__num {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.4rem;
}
.tenets h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  line-height: 1.15;
  color: var(--ink);
}
.tenets p {
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.65;
}
@media (max-width: 880px) {
  .tenets { grid-template-columns: 1fr; }
  .tenets li { border-right: 0; border-bottom: 1px solid var(--line); }
  .tenets li:last-child { border-bottom: 0; }
}

/* ---------- Experience (in-home) ---------- */
.exp-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 0;
}
.exp-media img { width: 100%; height: 100%; object-fit: cover; }
.exp-media__caption {
  position: absolute; bottom: 1rem; left: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.exp-media__caption span {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.prose--service-area {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.prose--service-area strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  font-family: var(--serif);
}

/* ---------- Programs ---------- */
.prg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.prg-card {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background .4s var(--ease);
}
.prg-card:last-child { border-right: 0; }
.prg-card:hover { background: var(--bg-3); }
.prg-card--featured {
  background: var(--bg-3);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.35);
  z-index: 1;
}
.prg-card--featured:hover { background: var(--bg-4); }
.prg-card__featured-line {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.32rem 0.65rem;
  margin-bottom: 1.1rem;
  background: rgba(var(--gold-rgb), 0.06);
}
.prg-card__head { margin-bottom: 1.6rem; }
.prg-card__tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1.2rem;
}
.prg-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.prg-card__sub {
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.55;
}
.prg-card__list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex: 1;
}
.prg-card__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}
.prg-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--gold);
}
.prg-card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: auto;
  min-height: 116px;
  justify-content: flex-start;
}
.prg-card__price-anchor {
  font-family: var(--serif);
  color: var(--ink-3);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.prg-card__price-anchor strong {
  color: var(--gold);
  font-weight: 500;
  font-size: 1.85rem;
  font-family: var(--serif);
  line-height: 1;
}
.prg-card__price-anchor em {
  color: var(--ink-4);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.prg-card__price-range {
  font-size: 0.85rem;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.prg-note {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.prg-note__rule {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .prg-grid { grid-template-columns: 1fr; }
  .prg-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .prg-card:last-child { border-bottom: 0; }
}

/* ---------- Process (3 steps as ordered list) ---------- */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-steps li {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}
.process-steps li:last-child { border-right: 0; }
.process-steps__num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-style: italic;
  display: block;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.process-steps h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  line-height: 1.15;
  color: var(--ink);
}
.process-steps p {
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.65;
}
@media (max-width: 880px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-steps li:last-child { border-bottom: 0; }
}

/* ---------- Instructor ---------- */
.ins-media { margin: 0; }
.ins-frame {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.ins-frame img { width: 100%; height: 100%; object-fit: cover; }
.ins-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 10, 7, 0.7));
}
.ins-media figcaption {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.ins-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.ins-role {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.ins-quote {
  margin: 2rem 0 2.5rem;
  padding: 1.6rem 0 1.6rem 1.6rem;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink);
}
.ins-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ---------- Credentials ---------- */
.cred-block { max-width: 720px; }
.cred-discretion {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-3);
}

/* ---------- Stories ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.story {
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.story:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.story--featured {
  background: var(--bg-3);
  border-color: var(--line-strong);
  position: relative;
}
.story--featured::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--gold);
}
.story__quote { width: 22px; height: 18px; color: var(--gold); opacity: 0.5; }
.story blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.story figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.story__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.story__meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.stories-note {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-4);
}
@media (max-width: 960px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  min-height: 56px;
  transition: color .25s var(--ease);
}
@media (max-width: 560px) {
  .faq-item summary { font-size: 1.15rem; padding: 1.35rem 0; }
  .faq-item__icon { width: 28px; height: 28px; }
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item__icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { border-color: var(--gold); background: rgba(var(--gold-rgb), 0.08); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item__body {
  padding: 0 0 1.4rem;
  max-width: 65ch;
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item[open] summary { color: var(--gold); }

/* ---------- Apply CTA strip (closing CTA on most pages) ---------- */
.apply-cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
  text-align: center;
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.apply-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 30%, rgba(var(--gold-rgb), 0.1), transparent 70%);
  pointer-events: none;
}
/* Per-page apply-CTA gradient variation so 5 pages don't share identical visuals */
body.page-home .apply-cta__bg {
  background: radial-gradient(70% 80% at 50% 20%, rgba(var(--gold-rgb), 0.12), transparent 70%);
}
body.page-practice .apply-cta__bg {
  background: radial-gradient(60% 90% at 20% 50%, rgba(var(--gold-rgb), 0.11), transparent 70%);
}
body.page-disciplines .apply-cta__bg {
  background:
    radial-gradient(55% 80% at 80% 20%, rgba(var(--gold-rgb), 0.1), transparent 70%),
    radial-gradient(40% 60% at 15% 80%, rgba(var(--gold-rgb), 0.06), transparent 70%);
}
body.page-programs .apply-cta__bg {
  background: radial-gradient(70% 80% at 50% 80%, rgba(var(--gold-rgb), 0.1), transparent 70%);
}
body.page-instructor .apply-cta__bg {
  background: radial-gradient(55% 80% at 80% 50%, rgba(var(--gold-rgb), 0.11), transparent 70%);
}
.apply-cta__rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
}
.apply-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.apply-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ---------- Contact page ---------- */
.contact-hero { background: var(--bg-paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-phone {
  display: block;
  position: relative;
  padding: 0 0 0 0;
}
.contact-phone__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.85rem;
  display: block;
}
.contact-phone__number {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.005em;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-bottom: 0.6rem;
  transition: color .25s var(--ease);
  text-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .contact-phone__number { font-size: 1.85rem; }
}
.contact-phone__number::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.contact-phone:hover .contact-phone__number {
  color: var(--gold-bright);
}
.contact-phone:hover .contact-phone__number::after {
  transform: scaleX(1);
}
.contact-phone__hint {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-3);
}
.contact-block { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-block__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.5rem;
}
.contact-block__value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-block__value a { color: var(--ink); transition: color .25s var(--ease); border-bottom: 1px solid var(--line); }
.contact-block__value a:hover { color: var(--gold); border-color: var(--gold); }
.contact-block__sub {
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 0.4rem;
}

/* ---------- Form ---------- */
.apply__bg {
  position: absolute; inset: 0;
  background: radial-gradient(45% 60% at 15% 20%, rgba(var(--gold-rgb), 0.1), transparent 70%);
  pointer-events: none;
}
.apply-page { position: relative; }

.apply__form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.apply__form-head {
  margin-bottom: 0.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.apply__form-head h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.apply__form-head p {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field__optional {
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-4);
  margin-left: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 1rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  border-radius: 0;
  min-height: 50px;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.22);
}
.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: var(--invalid);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.4'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.field-set { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.field-set legend {
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.check-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
.check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--bg-1);
  cursor: pointer;
  transition: all .25s var(--ease);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.92rem;
  color: var(--ink-2);
  min-height: 44px;
}
.check:hover { border-color: var(--gold); background: var(--bg-3); }
.check:hover input:not(:checked) { border-color: var(--gold); background: rgba(var(--gold-rgb), 0.08); }
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border: 1px solid var(--line-strong);
  background: var(--bg-1);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.check input:checked { background: var(--gold); border-color: var(--gold); }
.check input:checked + span { color: var(--ink); }
.check input:checked::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 1.5px solid #1a1106;
  border-bottom: 1.5px solid #1a1106;
  transform: rotate(-45deg) translate(0, -1px);
}

.apply__legal {
  font-size: 0.8rem;
  color: var(--ink-4);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
}
.apply__error {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--invalid);
  background: rgba(244, 114, 114, 0.06);
  color: #ffcfcf;
  font-size: 0.9rem;
  line-height: 1.5;
}
.apply__error.is-visible { display: block; }
.apply__success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--gold);
  background: rgba(var(--gold-rgb), 0.06);
  color: var(--ink);
}
.apply__success svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.apply__success p { font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .check-row { grid-template-columns: 1fr; }
}

/* ---------- Typeform embed (drop-in slot) ---------- */
.typeform-embed {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 0;
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}
.typeform-embed__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.typeform-embed > div[data-tf-live],
.typeform-embed > div[data-tf-widget] {
  flex: 1;
  min-height: 600px;
}
.typeform-embed__pending {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 600px;
}
.typeform-embed__pending-inner { max-width: 360px; }
.typeform-embed__pending-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.typeform-embed__pending h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.typeform-embed__pending p {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.typeform-embed__pending .btn { width: auto; }

/* ---------- Apply page steps (left side of contact form) ---------- */
.apply-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.apply-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.apply-steps__num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1;
}
.apply-steps h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
  line-height: 1.2;
}
.apply-steps p {
  font-size: 0.96rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
  font-size: 0.92rem;
}
.site-footer--lite { padding: 2rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-blurb {
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 38ch;
  font-size: 0.92rem;
}
.footer-contact, .footer-legal-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact h3, .footer-legal-col h3 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.footer-cta {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}
.footer-cta:hover { color: var(--gold-bright); }
.footer-line {
  color: var(--ink-2);
  font-size: 0.94rem;
  transition: color .2s var(--ease);
}
.footer-line:hover { color: var(--gold); }
.footer-meta {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  line-height: 1.7;
}
.footer-legal-col a {
  color: var(--ink-3);
  font-size: 0.94rem;
  transition: color .2s var(--ease);
}
.footer-legal-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-4);
}
.footer-legal a { color: var(--ink-4); }
.footer-legal a:hover { color: var(--gold); }
.brand--footer .brand__mark { width: 38px; height: 38px; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid > * { padding: 1.6rem 0; border-top: 1px solid var(--line); }
  .footer-grid > *:first-child { border-top: 0; padding-top: 0; }
  .footer-cta { font-size: 1.4rem; }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(var(--gold-rgb), 0.05), transparent 70%),
    rgba(12, 10, 7, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .35s var(--ease);
}
.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  width: min(640px, 100%);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  display: flex;
  flex-direction: column;
  animation: panelIn .5s var(--ease-out);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.modal__close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink-2);
  z-index: 3;
  transition: all .25s var(--ease);
  background: var(--bg-2);
}
.modal__close:hover { border-color: var(--gold); color: var(--gold); }
.modal__close svg { width: 16px; height: 16px; }
.modal__media {
  background: radial-gradient(70% 70% at 50% 50%, rgba(var(--gold-rgb), 0.14), transparent 70%), var(--bg-1);
  display: grid;
  place-items: center;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.modal__media::after {
  content: "Reel · in production";
  position: absolute;
  bottom: 0.85rem; left: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.modal__poster {
  width: 72px; height: 72px;
  color: var(--gold);
  filter: drop-shadow(0 0 24px rgba(var(--gold-rgb), 0.4));
}
.modal__poster svg { width: 100%; height: 100%; }
.modal__body {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 500;
  line-height: 1.1;
}
.modal__text { color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
.modal__actions { margin-top: 0.6rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 720px) {
  .modal { padding: 1rem; }
  .modal__media { min-height: 140px; }
  .modal__close { width: 44px; height: 44px; }
}

/* ---------- Sticky mobile CTA + Menu pill ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  right: 1rem;
  z-index: 80;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  color: #1a1106;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border: 1px solid var(--gold-soft);
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: opacity .35s var(--ease), transform .35s var(--ease), padding .35s var(--ease), width .35s var(--ease);
  white-space: nowrap;
}
.sticky-cta svg { width: 16px; height: 16px; }
.sticky-cta__label { display: inline; }
@media (max-width: 720px) {
  .sticky-cta {
    display: inline-flex;
    left: auto;
    width: auto;
    max-width: calc(100vw - 2rem);
  }
  body { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }
}
.sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }

/* Compact (icon-only gold pill) when Menu pill is also showing */
.sticky-cta.is-compact {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  min-height: 0;
}
.sticky-cta.is-compact .sticky-cta__label { display: none; }
.sticky-cta.is-compact svg { width: 18px; height: 18px; }

/* Menu pill — persistent nav trigger on mobile */
.menu-pill {
  display: none;
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  left: 1rem;
  z-index: 80;
  background: rgba(12, 10, 7, 0.92);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 1.1rem;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.7);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.menu-pill__icon {
  width: 16px; height: 1px;
  background: var(--gold);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.menu-pill__icon::before, .menu-pill__icon::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 1px;
  background: var(--gold);
}
.menu-pill__icon::before { top: -5px; }
.menu-pill__icon::after { top: 5px; }
@media (max-width: 720px) {
  .menu-pill { display: inline-flex; }
}
.menu-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-pill.is-visible.is-hidden-by-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.menu-pill:active { transform: scale(0.96); }

body.page-contact .sticky-cta { display: none !important; }
body.page-contact .sticky-cta { display: none !important; }

/* ---------- 404 ---------- */
.page-404 .not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-404 .not-found::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 40%, rgba(var(--gold-rgb), 0.08), transparent 70%);
  pointer-events: none;
}
.not-found__inner { max-width: 720px; text-align: center; position: relative; z-index: 1; }
.not-found__actions {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile typography pass ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .prose { font-size: 1rem; line-height: 1.75; }
  .prose + .prose { margin-top: 1.4rem; }
  .lede { font-size: 1.05rem; line-height: 1.6; }
  .display { font-size: clamp(2.25rem, 9.5vw, 3.5rem); line-height: 1.04; }
  .display--md { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .display--lg { font-size: clamp(2.25rem, 9vw, 3rem); }
  .display--xl { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .section { padding: 4.25rem 0; }
  .section-head { margin-bottom: 2.4rem; }
  .eyebrow { margin-bottom: 1.1rem; }
}
