/* Kawthar Bin Sulayem — Apple-style. Black, calm, generous. */
:root {
  /* hero scrim strength — was applied at runtime by the old edit panel */
  --hero-overlay: 0.6;

  /* Apple dark — editorial */
  --bg: #000000;
  --bg-alt: #0b0b0b;
  --bg-elev: #161617;
  --ink: #f5f5f7;
  --ink-soft: #c7c7cc;
  --ink-mute: #86868b;
  --ink-faint: #6e6e73;
  --hair: #2a2a2c;
  --accent: #f5f5f7;
  --sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Onest", Arial, sans-serif;
  --mark: "Chivo", "SF Pro Display", -apple-system, sans-serif;
  --nav-bg: rgba(10,10,10,0.72);
  --gutter: clamp(22px, 5vw, 80px);
  --wide: 1320px;
  --col: 980px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #000; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
/* inline prose links (body copy) */
.split__body a, .aside__body a, .menu__note a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1px;
  transition: border-color 180ms ease;
}
.split__body a:hover, .aside__body a:hover, .menu__note a:hover {
  border-color: var(--ink);
}
em { font-style: normal; font-weight: 600; }
::selection { background: var(--ink); color: #000; }

/* NAV — dark mode */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hair);
  padding: 14px 0;
  color: var(--ink);
  transition: background 240ms ease, padding 240ms ease;
}
.nav.over-hero {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
}
.nav__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__left, .nav__right {
  display: flex;
  /* Without this the links stretch full height and their text sits at the
     top, while the padded CTA pill centres its own — an 8px mismatch. */
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
}
.nav__right { justify-content: flex-end; }
.nav__left a, .nav__right a {
  color: inherit;
  opacity: 0.85;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: opacity 220ms ease;
}
.nav__left a:hover, .nav__right a:hover { opacity: 1; }

.nav__mark {
  position: relative;
  display: block;
  width: 240px;
  height: 24px;
  cursor: pointer;
}
.nav__mark-type, .nav__mark-sig {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 360ms ease;
}
.nav__mark-type {
  font-family: var(--mark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.155em;
  color: inherit;
  white-space: nowrap;
}
/* pulls the period tight against the M — tracking would otherwise strand it */
.nav__mark-dot { margin-left: -0.155em; }
.nav__mark-sig {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
}
.nav__mark-sig { filter: invert(1) brightness(2); }
.nav__mark:hover .nav__mark-type { opacity: 0; }
.nav__mark:hover .nav__mark-sig { opacity: 1; }

/* BUTTONS — Apple pill */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 13px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #000;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:hover { opacity: 0.86; }
.btn--ink { background: var(--ink); color: #000; border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #000; opacity: 1; }
.btn--ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost-light:hover { background: #fff; color: #000; opacity: 1; }
.btn--done { background: var(--bg-elev) !important; color: var(--ink) !important; border-color: var(--hair) !important; }

/* SHARED */
.overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.92) contrast(1.04);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,calc(0.32 * var(--hero-overlay, 1))) 0%, rgba(0,0,0,0) 28%),
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,calc(0.78 * var(--hero-overlay, 1))) 100%),
    linear-gradient(90deg, rgba(0,0,0,calc(0.55 * var(--hero-overlay, 1))) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0) 80%);
}
.hero__content {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(60px, 9vh, 110px);
  z-index: 2;
  max-width: min(820px, 80vw);
  display: flex; flex-direction: column;
  gap: 18px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
}
.hero__title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}
.hero__title em { font-style: normal; font-weight: 600; opacity: 0.6; }
.hero__sub {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
  font-weight: 400;
  max-width: 60ch;
}
.hero__sub--lite { color: rgba(255,255,255,0.74); }
.hero__sub em { font-weight: 600; color: #fff; }
.hero__content .btn { margin-top: 10px; align-self: flex-start; }

/* PAGE — for ventures section */
.page { padding: clamp(80px, 10vw, 140px) var(--gutter); max-width: var(--wide); margin: 0 auto; }
.page__inner { max-width: var(--col); margin-bottom: clamp(48px, 6vw, 80px); }
.page__title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
  text-wrap: balance;
}
.page__lede {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* VENTURES list */
.vlist {
  list-style: none;
  border-top: 1px solid var(--hair);
}
.vrow {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(36px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--hair);
}
.vrow__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  padding: 0 16px;
}
.vrow__logo img {
  max-width: 200px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* dark-on-transparent artwork needs inverting on the black page */
.vrow__logo-invert { filter: invert(1) brightness(1.7); }
.vrow__wordmark {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.vrow__tagline {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.vrow__copy h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 6px;
}
.vrow__kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.vrow__copy p:last-child {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}

.page__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(40px, 5vw, 64px);
}
.page__cta p {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* PRESS */
.press {
  background: var(--bg-alt);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.press__intro {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.press__row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--wide);
  margin: 0 auto;
  border-left: 1px solid var(--hair);
}
.press__logo {
  border-right: 1px solid var(--hair);
  padding: 18px 12px;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 84px;
  font-weight: 500;
}
.press__logo span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.press__logo--vogue { font-family: "Times New Roman", serif; font-weight: 700; letter-spacing: 0.18em; }
.press__logo--forbes { font-weight: 800; letter-spacing: 0.06em; font-size: 17px; }
.press__logo--bloomberg { font-family: "Times New Roman", serif; font-style: italic; }
.press__logo--national { font-family: "Times New Roman", serif; font-weight: 400; }
.press__logo--harpers { font-family: "Times New Roman", serif; font-style: italic; font-size: 15px; }
.press__logo--ab { font-weight: 700; letter-spacing: 0.06em; font-size: 13px; }

/* SPLIT — Emma Grede 2-column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.split--reverse .split__photo { order: 2; }
.split--reverse .split__copy { order: 1; }
.split__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__copy { max-width: 540px; }
.split__title {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
  text-wrap: balance;
}
.split__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.split__body {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin-bottom: 18px;
  text-wrap: pretty;
}

.shows {
  list-style: none;
  margin: 32px 0;
  border-top: 1px solid var(--hair);
}
.shows li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.shows h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.shows p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.shows__intro p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
}

.formats {
  list-style: none;
  margin: 32px 0;
  border-top: 1px solid var(--hair);
}
.formats li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.formats h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.formats p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.split__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* EPISODES */
.episodes {
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(80px, 10vw, 120px);
  max-width: var(--wide);
  margin: 0 auto;
}
.episodes__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 32px;
}
.episodes__head h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.episodes__nav { display: flex; gap: 8px; }
.episodes__nav button {
  width: 40px; height: 40px;
  border: 1px solid var(--hair);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.episodes__nav button:hover {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}
.episodes__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ep__art {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  margin-bottom: 14px;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.ep__art span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 11ch;
}
.ep__art--01 { background: linear-gradient(135deg, #1f1f21 0%, #0a0a0a 100%); }
.ep__art--02 { background: linear-gradient(135deg, #2c2418 0%, #0a0a0a 100%); }
.ep__art--03 { background: linear-gradient(135deg, #1f1f21 0%, #2c2418 100%); }
.ep__art--04 { background: linear-gradient(135deg, #0a0a0a 0%, #1f1f21 130%); }

.ep__show-name {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.ep__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.ep__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* QUOTE */
.quote {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.quote figure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--wide);
  margin: 0 auto;
  align-items: center;
}
.quote__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.quote__body {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.quote__body p + p { margin-top: 18px; }
.quote__body footer {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* AWARE */
.aware {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--bg);
  text-align: left;
}
.aware__inner {
  max-width: 820px;
  margin: 0 auto;
}
.aware__title {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 28px;
  text-wrap: balance;
}
.aware__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 64ch;
}
.aware__pull {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: var(--ink);
}
.aware__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--hair);
  padding-top: 28px;
}
.aware__form input {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}
.aware__form input:focus { border-color: var(--ink); }

/* MOTION */
.motion { padding: clamp(64px, 8vw, 100px) var(--gutter); max-width: var(--wide); margin: 0 auto; }
.motion__head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 32px;
}
.motion__label {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.motion__socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.motion__socials a {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.motion__socials a:hover { background: var(--ink); color: #000; }

/* CONTACT */
.contact {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.contact__inner {
  max-width: 820px;
  margin: 0 auto;
}
.contact__title {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 60ch;
}
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; }
.contact__form span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { border-color: var(--ink); }
.contact__form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.contact__form button { align-self: flex-start; margin-top: 16px; }

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--hair);
  padding: 0 var(--gutter);
  color: var(--ink-soft);
}
.footer__base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 44px 0 40px;
  font-family: var(--sans);
}
.footer__social {
  list-style: none;
  display: flex;
  gap: 10px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.footer__social a:hover {
  color: #000;
  background: var(--ink);
  border-color: var(--ink);
}
.footer__copy {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}

/* press logos brighten on dark */
.press__logo { color: var(--ink); }
.press__logo span { color: var(--ink-mute); }

/* shows / formats borders + text on dark */
.shows li, .formats li { border-bottom-color: var(--hair); }
.shows, .formats { border-top-color: var(--hair); }

/* episode art subtle border */
.ep__art { border: 1px solid var(--hair); }

/* QUOTE */
.quote { background: var(--bg-alt); }

/* AWARE — form on dark */
.aware__form input {
  background: transparent;
  border-color: var(--hair);
  color: var(--ink);
}
.aware__form input::placeholder { color: var(--ink-mute); }
.aware__form input:focus { border-color: var(--ink); }

/* CONTACT inputs on dark */
.contact { background: var(--bg-alt); }
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--bg);
  border-color: var(--hair);
  color: var(--ink);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--ink-mute); }
.contact__form select option { background: var(--bg); color: var(--ink); }

/* FOOTER on dark */
.footer { border-top-color: var(--hair); }

.vrow__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 2px;
  transition: border-color 200ms ease, opacity 200ms ease;
}
.vrow__link:hover { border-color: var(--ink); }

/* MENU — session tiers */
.menu {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.menu__head { max-width: var(--col); margin: 0 auto clamp(40px, 5vw, 64px); }
.menu__title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 20px;
  text-wrap: balance;
}
.menu__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.tiers {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--wide);
  margin: 0 auto;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 28px 26px 26px;
}
.tier--featured { border-color: var(--ink-faint); background: var(--bg-elev); }
.tier__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 4px;
}
.tier h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.tier__fine { font-size: 14px; color: var(--ink-mute); }
.tier__out {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  padding-top: 16px;
  margin-bottom: 22px;
  border-top: 1px solid var(--hair);
  text-wrap: pretty;
}
.tier__out b { font-weight: 600; }
.vrow__handle { color: var(--ink-faint); letter-spacing: 0.02em; text-transform: none; }
.tier__price {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: -4px;
}
.tier__price span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.tier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 22px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.tier__list li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-faint);
}
.tier .btn { margin-top: auto; align-self: flex-start; }

/* NOTES */
.notes {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
}
.notes__inner { max-width: 760px; margin: 0 auto; }
.notes__title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 22px;
  text-wrap: balance;
}
.notes__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.notes__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.notes__form input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}
.notes__form input::placeholder { color: var(--ink-mute); }
.notes__form input:focus { border-color: var(--ink); }

/* SPEAKING / STAGE */
.stage {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stage__inner { max-width: 820px; margin: 0 auto; }
.stage__title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 20px;
  text-wrap: balance;
}
.stage__body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 56ch;
}

/* EPISODE thumbnails */
.ep__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 14px;
  background: var(--bg-elev);
}
.ep__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ep__meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.ep__links {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 10px;
}
.ep__links a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--ink-faint); }
.ep__links a:hover { border-color: var(--ink); }
.episodes__head { align-items: flex-end; }
.episodes__head h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* FOOTER wide col */
.footer__blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 32ch;
}

/* ABOUT — nested Practice block */
.aside {
  border-left: 2px solid var(--ink-faint);
  padding: 4px 0 4px 22px;
  margin: 30px 0 32px;
  scroll-margin-top: 96px;
}
.aside__logo {
  height: 30px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}
.aside__lede {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.aside__body {
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
  color: var(--ink-mute);
}

/* ── NAV CTA + BURGER ── */
.nav__cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 15px;
  opacity: 1 !important;
}
.nav__burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 0;
  color: inherit;
  cursor: pointer;
  justify-self: end;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: currentColor;
  transition: transform 260ms ease, opacity 200ms ease;
}
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { top: 25px; }
body.drawer-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.drawer-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 96px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-y: auto;
}
body.drawer-open .drawer { opacity: 1; transform: none; pointer-events: auto; }
body.drawer-open { overflow: hidden; }
/* Over the hero the nav is white-on-photo. Once the drawer covers the photo
   that white close icon vanishes against the drawer, so re-ink the nav. */
body.drawer-open .nav,
body.drawer-open .nav.over-hero { color: var(--ink); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 15px 0;
  border-bottom: 1px solid var(--hair);
}
.drawer__cta { align-self: flex-start; margin-top: 28px; }
.drawer__social {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: auto; padding-top: 32px;
  font-size: 14px; color: var(--ink-mute);
}
.drawer__social a { border-bottom: 1px solid var(--hair); padding-bottom: 2px; }

/* ── BLUEPRINT ── */
.blueprint {
  max-width: var(--wide);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--hair);
}
.blueprint__title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.blueprint__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 56ch;
}
.blueprint__value {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 3vw, 40px);
  max-width: 56ch;
}
.blueprint__value b { color: var(--ink); font-weight: 600; }
.blueprint__weeks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.week {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.week__no {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.week__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.week__body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.week__out {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--hair);
}
.week__out b { color: var(--ink); font-weight: 600; }

/* ── MENU note ── */
.menu__note {
  max-width: none;
  text-align: center;
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  border-top: 1px solid var(--hair);
  padding-top: 20px;
}

/* ── PRESS ── */
.proof {
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  border-top: 1px solid var(--hair);
}
.proof__inner { max-width: var(--wide); margin: 0 auto; }

.proof__press-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 20px;
}
.proof__logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.logo-slot {
  height: 76px;
  border: 1px dashed var(--hair);
  border-radius: 10px;
}
.logo-slot--filled { border-style: solid; }
.logo-slot--filled a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  transition: opacity 180ms ease;
}
.logo-slot--filled a:hover { opacity: 0.62; }
.press-wm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--mark);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  text-align: center;
}
.press-wm--serif {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.01em;
}
.press-wm em {
  font-style: normal;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── CONTACT FORM ── */
.cf__group { border: 0; padding: 0; margin: 0 0 6px; }
.cf__legend {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 12px; padding: 0;
}
.cf__choices { display: flex; flex-wrap: wrap; gap: 10px; }
.cf__choice { position: relative; }
.cf__choice input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.cf__choice span {
  display: inline-block;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.cf__choice input:checked + span {
  background: var(--ink); color: #000; border-color: var(--ink);
}
.cf__choice input:focus-visible + span { outline: 2px solid var(--ink-mute); outline-offset: 2px; }
.cf__branch { display: flex; flex-direction: column; gap: 16px; }
.cf__branch[hidden] { display: none; }
.contact__form label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.cf__submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.cf__fine { font-size: 13px; color: var(--ink-mute); }
.cf__status { font-size: 14px; min-height: 1em; }
.cf__status.is-ok { color: var(--ink); }
.cf__status.is-error { color: #ff6b6b; }

/* ─────────────────────────────────────────────────────────
   LIGHT THEME — warm stone neutral, not white.
   Palette drawn from the stone/paper tones in the brand system.
   ───────────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #FBFAF8;
  --bg-alt:    #F0EFEC;
  --bg-elev:   #FFFFFF;
  --ink:       #17171A;
  --ink-soft:  #3D3D40;
  --ink-mute:  #605C57;
  --ink-faint: #A3A099;
  --hair:      #E3E2DE;
  --accent:    #17171A;
  --nav-bg:    rgba(251,250,248,0.82);
}
[data-theme="light"] html,
html[data-theme="light"] { background: #FBFAF8; }
[data-theme="light"] ::selection { background: var(--ink); color: var(--bg); }

/* buttons invert: dark pill, light label */
[data-theme="light"] .btn,
[data-theme="light"] .btn--ink { color: var(--bg); }
[data-theme="light"] .btn--ghost { color: var(--ink); background: transparent; }
[data-theme="light"] .btn--ghost:hover { background: var(--ink); color: var(--bg); }
[data-theme="light"] .cf__choice input:checked + span { color: var(--bg); }
[data-theme="light"] .episodes__nav button:hover,
[data-theme="light"] .motion__socials a:hover,
[data-theme="light"] .footer__social a:hover { color: var(--bg); }

/* nav background is themed via --nav-bg */

/* logo polarity flips: white-on-transparent marks need inverting,
   black artwork does not */
[data-theme="light"] .nav:not(.over-hero) .nav__mark-sig { filter: none; }
[data-theme="light"] .vrow__logo-invert { filter: none; }
[data-theme="light"] .vrow__logo img[src*="logo-tip"],
[data-theme="light"] .vrow__logo img[src*="logo-kbs-mark"],
[data-theme="light"] .aside__logo { filter: invert(1) brightness(0.15); }

/* episode art stays dark — reads as a card on stone */
[data-theme="light"] .ep__art { border-color: transparent; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__photo { order: 1; }
  .split--reverse .split__copy { order: 2; }
  .split__copy { max-width: none; }
  .vrow { grid-template-columns: 1fr; gap: 20px; }
  .vrow__logo { justify-content: flex-start; height: auto; padding: 0; }
  .episodes__grid { grid-template-columns: repeat(2, 1fr); }
  .motion__grid { grid-template-columns: repeat(3, 1fr); }
  .press__row { grid-template-columns: repeat(3, 1fr); }
  .quote figure { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .blueprint__weeks { grid-template-columns: repeat(2, 1fr); }
  .proof__logos { grid-template-columns: repeat(2, 1fr); }
  .page__cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 1000px) {
  .nav__left, .nav__right { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__mark { justify-self: start; width: 224px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { height: auto; min-height: 0; padding: 112px 0 44px; }
  .hero__photo { position: relative; height: 62vw; min-height: 300px; }
  .hero__photo::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%);
  }
  .hero__content {
    position: static;
    max-width: none;
    padding: 28px var(--gutter) 0;
    gap: 14px;
  }
  .hero__title { font-size: 34px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.1em; }
  .split__photo img,
  .about__photo img { aspect-ratio: 4 / 3; }
  .episodes__grid { grid-template-columns: 1fr; }
  .motion__grid { grid-template-columns: 1fr 1fr; }
  .contact__row { grid-template-columns: 1fr; }
  .proof__logos { grid-template-columns: repeat(2, 1fr); }
  .logo-slot { height: 64px; }
  .drawer__nav a { font-size: 22px; }
  .aside { padding-left: 16px; margin: 24px 0 26px; }
  .btn { padding: 14px 24px; }
  .cf__choice span { padding: 11px 16px; }
  .tier { padding: 24px 20px 22px; }
  .blueprint__weeks { grid-template-columns: 1fr; gap: 22px; }
  .episodes__head { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (hover: none) {
  .nav__mark:hover .nav__mark-type { opacity: 1; }
  .nav__mark:hover .nav__mark-sig { opacity: 0; }
}

/* notes signup status line */
.notes__status { flex-basis: 100%; margin-top: 10px; font-size: 14px; color: var(--ink-mute); }
.notes__status a { color: var(--ink); border-bottom: 1px solid var(--ink-faint); }

/* honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
