/* =========================================================
   JIYŪ JUTSU — Site stylesheet
   Reconciled to design handoff. Pure B&W. Pill CTAs.
   Display font: Giveny (proprietary) with Playfair fallback.
   ========================================================= */

/* ===== GIVENY (proprietary brand font) ==================
   Drop Giveny font files into website-build/fonts/.
   Until files exist, browsers fall back to Playfair Display.
   ========================================================== */
@font-face {
  font-family: "Giveny";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/Giveny.woff2") format("woff2"),
       url("fonts/Giveny.woff")  format("woff"),
       url("fonts/Giveny.otf")   format("opentype"),
       url("fonts/Giveny.ttf")   format("truetype");
}
@font-face {
  font-family: "Giveny";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/Giveny-Italic.woff2") format("woff2"),
       url("fonts/Giveny-Italic.woff")  format("woff"),
       url("fonts/Giveny-Italic.otf")   format("opentype"),
       url("fonts/Giveny-Italic.ttf")   format("truetype");
}

/* ===== TOKENS ============================================ */
:root {
  --ink: #ffffff;
  --paper: #000000;
  --muted: rgba(255, 255, 255, 0.55);
  --faint: rgba(255, 255, 255, 0.18);
  --hair:  rgba(255, 255, 255, 0.12);
  --card-bg: #050505;
  --card-border:        rgba(255, 255, 255, 0.22);
  --card-border-hover:  rgba(255, 255, 255, 0.50);
  --serif: "Giveny", "Playfair Display", "Times New Roman", serif;
  --sans:  "Giveny", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --jp:    "Noto Serif JP", "Giveny", "Playfair Display", serif;
  --bw:      grayscale(1) contrast(1.28) brightness(0.92);
  --bw-soft: grayscale(1) contrast(1.18) brightness(0.85);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===== RESET ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: #fff; color: #000; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

/* ===== UTILITIES ========================================= */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 880px) { .wrap { padding: 0 22px; } }

.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;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.kanji-eyebrow {
  font-family: var(--jp);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.7);
  display: inline-flex; gap: 0;
}
.kanji-eyebrow .dot { opacity: .4; padding: 0 .4em; }
.kanji-eyebrow .en {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hairline { border: 0; border-top: 1px solid var(--hair); margin: 0; }

/* ===== CTAs (pill) ======================================= */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.cta--outline { border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.cta--outline:hover { border-color: #fff; background: #fff; color: #000; }
.cta--solid { background: #fff; color: #000; border: 1px solid #fff; }
.cta--solid:hover { background: transparent; color: #fff; }
.cta .arr { display: inline-block; transition: transform .4s var(--ease); }
.cta:hover .arr { transform: translateX(4px); }

/* ===== NAV (mix-blend-mode difference, no blur) ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 16px;
  text-transform: uppercase;
}
.nav__brand img.mark { width: 32px; height: 32px; object-fit: contain; }
.nav__menu {
  display: flex; gap: 36px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav__menu a { opacity: .85; transition: opacity .3s var(--ease); }
.nav__menu a:hover, .nav__menu a.is-active { opacity: 1; }
.nav__menu a.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.nav__cta {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
}
.nav__spacer { width: 1px; }
@media (max-width: 880px) {
  .nav { padding: 18px 22px; }
  .nav__menu { display: none; }
}

/* ===== HERO (shared) ===================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
/* Home hero: align to bottom so fighter face has upper 2/3 */
.hero--home { align-items: flex-end; }
.hero--home .hero__inner { padding-bottom: 16vh; }
/* About hero is shorter */
.hero--about { height: 86vh; min-height: 640px; }

.hero__bg {
  position: absolute; inset: -4%;
  background-color: #0a0a0a;
  background-size: cover; background-position: center 30%;
  filter: var(--bw);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at center 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.85) 100%);
}
.hero__inner {
  position: relative;
  padding: 0 24px;
  max-width: 1100px;
  will-change: transform, opacity;
}
.hero__eyebrow { margin-bottom: 36px; opacity: 0; }

/* Hero wordmark (per-word + per-letter) */
.wordmark {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(44px, 8.8vw, 148px);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0 0.04em;
  margin: 0;
}
.wordmark .word { display: inline-flex; }
.wordmark .word + .word { margin-left: 0.18em; }
.wordmark .ltr {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__tag {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  opacity: 0;
}
.hero__cta-wrap { margin-top: 44px; opacity: 0; }

/* About / Mentorship hero use a single h1 instead of split wordmark */
.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 142px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 auto;
  text-wrap: balance;
  opacity: 0;
}
.hero__title em { font-style: italic; font-weight: 700; }
.hero__title--narrow { max-width: 14ch; }
.hero__sub {
  margin: 36px auto 0;
  max-width: 560px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,0.8);
  opacity: 0;
}

/* Mentorship hero eyebrow (sans, not kanji) */
.hero__label-sans {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -20px; left: 0;
  width: 1px; height: 20px;
  background: #fff;
  animation: scrolldrip 2.2s ease-in-out infinite;
}
@keyframes scrolldrip {
  0%   { transform: translateY(0);     opacity: 0; }
  20%  {                                opacity: 1; }
  100% { transform: translateY(76px);  opacity: 0; }
}

/* ===== SECTION HEAD ====================================== */
section { position: relative; }
.section-head {
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
  margin-bottom: 96px;
  max-width: 880px;
}
.section-head--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.section-head__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
.section-head__title em { font-style: italic; }

/* ===== HOME — THE BROTHERHOOD ============================ */
.bh { padding: 200px 0; text-align: center; }
.bh__eyebrow { margin-bottom: 36px; }
.bh__count {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.bh__credo {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(255,255,255,0.88);
}
.bh__body {
  margin: 32px auto 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
  max-width: 36ch;
}
.bh__body span { display: block; }

.bh__cards {
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  text-align: left;
}
.bh__card {
  border: 1px solid var(--card-border);
  padding: 56px 48px 52px;
  display: flex; flex-direction: column;
  background: var(--card-bg);
  transition: border-color .4s var(--ease), background .4s var(--ease);
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
.bh__card:hover { border-color: var(--card-border-hover); }
.bh__card-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.bh__card-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.bh__card-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 44px;
  max-width: 32ch;
}
.bh__card .cta { align-self: flex-start; margin-top: auto; }

.bh__rule {
  margin: 88px auto 0;
  max-width: 1080px;
  height: 1px;
  background: var(--hair);
}
.bh__dm {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.7);
}
.bh__dm b {
  font-style: normal;
  font-weight: 700;
  font-family: var(--sans);
  font-size: 0.78em;
  letter-spacing: 0.32em;
  padding: 0 0.2em;
}
.bh__dm a {
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
  color: rgba(255,255,255,0.85);
}
.bh__dm a:hover { border-color: #fff; color: #fff; }

@media (max-width: 880px) {
  .bh { padding: 130px 0; }
  .bh__cards { grid-template-columns: 1fr; gap: 18px; margin-top: 64px; }
  .bh__card { padding: 44px 32px 40px; }
  .bh__rule { margin-top: 64px; }
}

/* ===== HOME — MENTORSHIP PINNED ========================== */
.mentor { height: 300vh; position: relative; }
.mentor__sticky {
  position: sticky; top: 0;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  display: flex; align-items: center;
}
.mentor__bg {
  position: absolute; inset: 0;
  background-color: #0a0a0a;
  background-size: cover; background-position: center 30%;
  filter: var(--bw);
}
.mentor__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}
.mentor__content {
  position: relative;
  width: 100%;
  padding: 0 40px;
}
.mentor__inner { max-width: 760px; }
.mentor__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 18px;
}
.mentor__label::before {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.5);
}
.mentor__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
  text-wrap: balance;
}
.mentor__title em { font-style: italic; font-weight: 700; }
.mentor__stack {
  position: relative;
  height: 140px;
  margin-bottom: 56px;
}
.mentor__outcome {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start;
  gap: 22px;
  opacity: 0;
  will-change: opacity, transform;
}
.mentor__outcome-num {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  padding-top: 10px;
  min-width: 36px;
}
.mentor__outcome-text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  max-width: 22ch;
  color: rgba(255,255,255,0.94);
  margin: 0;
}
.mentor__progress {
  position: absolute; top: 0; right: 40px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.mentor__progress::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: var(--p, 0%);
  background: #fff;
  transition: height .1s linear;
}
@media (max-width: 880px) {
  .mentor__progress { display: none; }
  .mentor__content { padding: 0 22px; }
  .mentor__stack { height: 180px; }
  .mentor__title { margin-bottom: 44px; }
}

/* ===== HOME — VERSE ====================================== */
.verse {
  min-height: 80vh;
  padding: 80px 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.verse__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.28;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.verse__quote .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.verse__attr {
  margin-top: 64px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 16px;
}
.verse__attr::before, .verse__attr::after {
  content: ""; width: 30px; height: 1px; background: var(--faint);
}
@media (max-width: 880px) { .verse { min-height: 70vh; padding: 100px 0; } }

/* ===== HOME — ABOUT TEASER (split-row) =================== */
.about-tz { padding: 180px 0; }
.about-tz__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-tz__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0a0a0a;
}
.about-tz__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: var(--bw);
  will-change: transform;
}
.about-tz__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}
.about-tz__text { max-width: 520px; }
.about-tz__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 24px 0 28px;
  text-wrap: balance;
}
.about-tz__body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 40px;
  max-width: 44ch;
}
@media (max-width: 880px) {
  .about-tz { padding: 120px 0; }
  .about-tz__grid { grid-template-columns: 1fr; gap: 56px; }
  .about-tz__media { aspect-ratio: 4/3; }
}

/* ===== ABOUT — ORIGIN ==================================== */
.origin { padding: 180px 0 160px; }
.origin__prose {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.origin__prose p + p { margin-top: 1.2em; }
.origin__prose .lift { font-style: italic; color: #fff; }
@media (max-width: 880px) { .origin { padding: 120px 0 110px; } }

/* ===== ABOUT — PILLARS (2-col rows) ===================== */
.pillars-x { padding: 80px 0 200px; }
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
}
.pillar-row:last-child { border-bottom: 1px solid var(--hair); }
.pillar-row__head { display: flex; flex-direction: column; gap: 20px; }
.pillar-row__num {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--muted);
}
.pillar-row__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.pillar-row__kanji {
  font-family: var(--jp);
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
}
.pillar-row__body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
}
.pillar-row__body p + p { margin-top: 1em; }
@media (max-width: 880px) {
  .pillar-row { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .pillars-x { padding: 60px 0 130px; }
}

/* ===== CTA BAND (About final, etc.) ===================== */
.cta-band {
  position: relative;
  padding: 200px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hair);
}
.cta-band__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: var(--bw);
  opacity: 0.5;
}
.cta-band__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}
.cta-band__inner { position: relative; }
.cta-band__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 auto 56px;
  text-wrap: balance;
  max-width: 18ch;
}
.cta-band__title em { font-style: italic; }

/* ===== MENTORSHIP — PROBLEM ============================== */
.problem { padding: 200px 0 160px; }
.problem__body {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.problem__body p + p { margin-top: 1.1em; }
@media (max-width: 880px) { .problem { padding: 130px 0 120px; } }

/* ===== MENTORSHIP — PATH (phases) ======================== */
.path { padding: 80px 0 200px; }
.phase {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding: 72px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
}
.phase:last-child { border-bottom: 1px solid var(--hair); }
.phase__index {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; color: var(--muted);
  margin-bottom: 14px;
}
.phase__weeks {
  font-family: var(--serif);
  font-weight: 800; font-style: italic;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.phase__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.phase__body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
}
.phase__body p { margin: 0; }
.phase__pillars {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.phase__pillars span {
  padding: 6px 12px;
  border: 1px solid var(--faint);
  border-radius: 999px;
}
@media (max-width: 880px) {
  .path { padding: 60px 0 130px; }
  .phase { grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
}

/* ===== MENTORSHIP — OUTCOMES ============================= */
.outcomes {
  padding: 180px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.outcomes__list {
  list-style: none; padding: 0; margin: 0;
  max-width: 880px;
}
.outcomes__list li {
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: baseline; gap: 32px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
}
.outcomes__list li:last-child { border-bottom: 0; }
.outcomes__list .num {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--muted);
  min-width: 48px;
}
.outcomes__list li em { font-style: italic; font-weight: 500; }
@media (max-width: 880px) {
  .outcomes { padding: 120px 0; }
  .outcomes__list li { padding: 28px 0; gap: 20px; }
}

/* ===== MENTORSHIP — COACH (typographic-only) ============ */
.coach { padding: 200px 0; }
.coach-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 64px 56px;
  max-width: 880px;
  opacity: 0;
  transform: translateY(30px);
}
.coach-card__role {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.coach-card__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
}
.coach-card__creds {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}
.coach-card__creds li {
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  display: flex; align-items: flex-start; gap: 14px;
}
.coach-card__creds li:last-child { border-bottom: 1px solid var(--hair); }
.coach-card__creds li::before {
  content: "—"; color: var(--muted); font-family: var(--serif); flex-shrink: 0;
}
.coach-card__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin: 36px 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--hair);
}
@media (max-width: 880px) {
  .coach { padding: 130px 0; }
  .coach-card { padding: 44px 28px; }
}

/* ===== MENTORSHIP — APPLY BAND =========================== */
.apply {
  position: relative;
  padding: 220px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hair);
}
.apply__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: var(--bw);
  opacity: 0.4;
}
.apply__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.92) 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.92));
}
.apply__inner { position: relative; }
.apply__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  text-wrap: balance;
}
.apply__title em { font-style: italic; }
.apply__body {
  max-width: 620px;
  margin: 0 auto 56px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

/* ===== MENTORSHIP — FAQ ================================== */
.faq { padding: 200px 0; }
.faq__list {
  max-width: 940px;
  margin: 0; padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
}
.faq__item {
  border-bottom: 1px solid var(--hair);
  opacity: 0; transform: translateY(20px);
}
.faq__btn {
  width: 100%;
  padding: 36px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
}
.faq__q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0;
}
.faq__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--faint);
  border-radius: 999px;
  position: relative;
  transition: border-color .3s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1px; background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease);
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__plus { border-color: #fff; }
.faq__item.is-open .faq__plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease);
}
.faq__a-inner {
  padding: 0 0 36px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
  max-width: 64ch;
}
.faq__a-inner a {
  color: #fff;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 1px;
}
@media (max-width: 880px) {
  .faq { padding: 120px 0; }
  .faq__btn { padding: 28px 0; }
}

/* ===== SHOP STUB ========================================= */
.shop-stub {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px 22px 120px;
  text-align: center;
}
.shop-stub .eyebrow { margin-bottom: 24px; }
.shop-stub__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
.shop-stub__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.notify-form {
  display: flex; gap: 0;
  width: 100%; max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--faint);
  border-radius: 999px;
  overflow: hidden;
}
.notify-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 18px 24px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.notify-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.notify-form input[type="email"]:focus { outline: none; background: rgba(255,255,255,0.04); }
.notify-form button {
  background: #fff;
  color: #000;
  padding: 18px 28px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.notify-form button:hover { background: var(--muted); }
.notify-success {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #fff;
  padding: 24px 0;
}
.notify-success.show { display: block; }
.notify-error {
  display: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff8080;
  margin-top: 14px;
}
.notify-error.show { display: block; }
.notify-foot {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
}
.notify-foot b {
  font-style: normal;
  font-weight: 700;
  font-family: var(--sans);
  font-size: 0.82em;
  letter-spacing: 0.32em;
  padding: 0 0.2em;
}
.notify-foot a { border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; color: #fff; }

/* ===== CONTACT =========================================== */
.contact-page {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px 22px 120px;
  text-align: center;
}
.contact-page .eyebrow { margin-bottom: 24px; }
.contact-page__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 40px;
}
.contact-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.contact-email {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 8px;
  margin-bottom: 56px;
  display: inline-block;
}
.contact-email:hover { border-color: #fff; }
.contact-meta {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.contact-meta a { border-bottom: 1px solid var(--faint); padding-bottom: 2px; }
.contact-meta a:hover { color: #fff; }

/* ===== FOOTER ============================================ */
.ftr { padding: 130px 0 60px; text-align: center; }
.ftr__mark { display: flex; justify-content: center; margin-bottom: 28px; }
.ftr__mark img.mark { width: 88px; height: 88px; object-fit: contain; }
.ftr__word {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 22px;
  text-transform: uppercase;
}
.ftr__tag {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.ftr__nav {
  margin: 56px 0 48px;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.ftr__nav a { color: rgba(255,255,255,0.7); transition: color .3s var(--ease); }
.ftr__nav a:hover { color: #fff; }
.ftr__copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 880px) { .ftr__nav { gap: 22px 28px; } }

/* ===== REDUCED MOTION ==================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .wordmark .ltr,
  .hero__eyebrow,
  .hero__tag,
  .hero__title,
  .hero__sub,
  .hero__cta-wrap,
  .hero__scroll,
  .bh__card,
  .pillar-row,
  .phase,
  .verse__quote .w,
  .outcomes__list li,
  .coach-card,
  .faq__item { opacity: 1 !important; transform: none !important; }
  .mentor__outcome { opacity: 1 !important; position: static !important; margin-bottom: 16px; }
  .mentor__stack { height: auto !important; }
}
