/* =========================================================================
   MAKING MASTERS — stylesheet
   Mobile first. Base rules are the phone layout; every media query is
   min-width and only ever adds. Nothing below is written for desktop and
   then walked back.
   ========================================================================= */

/* -------------------------------------------------------------------------
   COLOUR
   Rule 1 — ink is a TYPE colour, never a surface.
   Rule 2 — every pairing below is measured. Ratios in comments are against
            the surfaces the token is actually used on (white / cream).

   The gold is split by JOB rather than by shade, because one gold cannot be
   both legible at 13px and luminous at 150px:
     --gold-text   small text, labels, links      5.8 : 1 white, 5.1 : 1 cream
     --gold-fill   button backgrounds, white text 5.8 : 1
     --gold        display type ≥24px only        3.5 : 1 white, 3.1 : 1 cream
     --gold-line   rules, borders, ornament       decorative — never text
   ------------------------------------------------------------------------- */
:root {
  /* Surfaces — the only values allowed as a background */
  --white:          #ffffff;
  --white-soft:     #fafafa;
  --paper:          #faf6ec;   /* warm paper */
  --cream:          #f5efe2;
  /* --gold-wash #f0e6ce was removed: it is too dark to carry --ink-mute
     (4.38 : 1) or display gold (2.85 : 1). Cream is the darkest surface
     every text token clears. Do not reintroduce it as a text background. */
  --purple-wash:    #eee8f6;   /* live state only */

  /* Ink — type only */
  --ink:            #2a241b;   /* 15.4 : 1 on white  · 13.4 : 1 on cream */
  --ink-soft:       #5a5347;   /*  7.6 : 1           ·  6.6 : 1 */
  --ink-mute:       #6f695f;   /*  5.4 : 1           ·  4.8 : 1  (was #8a8278 = 3.8 : 1, failed AA) */

  /* Gold, by job */
  --gold-text:      #7f6029;   /*  5.8 : 1 on white  ·  5.1 : 1 on cream */
  --gold-fill:      #7f6029;   /*  white on it = 5.8 : 1  (was #b8924a = 2.9 : 1, failed AA) */
  --gold-fill-hover:#664d1f;   /*  white on it = 7.9 : 1 */
  --gold:           #a8823f;   /*  3.5 : 1 — display type ≥24px ONLY */
  --gold-line:      #d4ae6b;   /*  decorative only, never text */

  /* Purple — live / in-session signalling only */
  --purple:         #5a4775;
  --purple-deep:    #3d2f54;   /* 10.1 : 1 on --purple-wash */

  /* Feedback */
  --ok:             #2f6b46;   /*  5.3 : 1 on white */
  --ok-wash:        #eaf3ed;
  --warn:           #9a3d2f;   /*  6.2 : 1 on white */
  --warn-wash:      #fbeeeb;

  --line:           rgba(42,36,27,0.10);
  --line-mid:       rgba(42,36,27,0.20);
  --line-gold:      rgba(127,96,41,0.28);
  --line-gold-s:    rgba(127,96,41,0.50);

  --serif:          'Cormorant Garamond', Georgia, serif;
  --sans:           'Manrope', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);

  --shell:          1240px;
  --pad:            20px;      /* phone gutter; grows at breakpoints */
  --section-y:      56px;      /* phone rhythm; grows at breakpoints */
}

@media (min-width: 600px)  { :root { --pad: 32px; --section-y: 76px; } }
@media (min-width: 900px)  { :root { --pad: 40px; --section-y: 96px; } }
@media (min-width: 1200px) { :root { --pad: 48px; --section-y: 108px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--sans); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; margin: 0; letter-spacing: -0.018em; }
em { font-style: italic; }

/* Every interactive thing gets a visible focus ring. */
:focus-visible { outline: 2px solid var(--gold-fill); outline-offset: 3px; border-radius: 1px; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 300; opacity: .022;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* ── Atoms ─────────────────────────────────────────────────── */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section-y) 0; }

.kicker {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-text); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--gold-line); flex: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 26px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  min-height: 52px;               /* comfortable thumb target */
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn span { transition: transform .3s var(--ease); }
.btn:hover span { transform: translateX(3px); }
.btn--gold  { background: var(--gold-fill); color: var(--white); border-color: var(--gold-fill); }
.btn--gold:hover { background: var(--gold-fill-hover); border-color: var(--gold-fill-hover); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-mid); }
.btn--ghost:hover { border-color: var(--gold-fill); color: var(--gold-text); }
.btn--outline-gold { background: transparent; color: var(--gold-text); border-color: var(--line-gold-s); }
.btn--outline-gold:hover { border-color: var(--gold-fill); background: var(--cream); }
.btn--wide { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
@media (min-width: 600px) { .btn--wide { width: auto; } }

.section-head { max-width: 720px; margin: 0 0 32px; }
.section-head h2 { font-size: clamp(30px, 7.5vw, 56px); line-height: 1.06; margin-bottom: 14px; }
.section-head h2 em { color: var(--gold); }
.section-head p { font-family: var(--serif); font-size: clamp(18px, 4.6vw, 21px); font-style: italic; color: var(--ink-soft); line-height: 1.5; margin: 0; }
@media (min-width: 900px) { .section-head { margin-bottom: 48px; } }

/* ── Announce strip ────────────────────────────────────────── */
.strip {
  background: var(--cream); color: var(--ink-soft);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 10px var(--pad); position: relative; z-index: 60;
  border-bottom: 1px solid var(--line-gold);
}
.strip__dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-fill); margin-right: 8px; vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
.strip a { color: var(--gold-text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; display: inline-block; }
.strip__cta { margin-left: 8px; }
.strip.is-live { background: var(--purple-wash); color: var(--purple-deep); border-bottom-color: rgba(90,71,117,.3); }
.strip.is-live .strip__dot { background: var(--purple); }
.strip.is-live a { color: var(--purple-deep); }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .45; } }
@media (max-width: 599px) { .strip__cta { display: block; margin: 4px 0 0; } }

/* ── Nav ───────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--shell); margin: 0 auto; padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.nav__logo img { height: 20px; width: auto; }
.nav__brand { border-left: 1px solid var(--line-mid); padding-left: 10px; line-height: 1.2; min-width: 0; }
.nav__brand b { display: block; font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav__brand i { display: none; font-style: normal; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; }

.nav__menu {
  position: absolute; top: 100%; left: 0; right: 0; display: none;
  flex-direction: column; background: var(--white);
  border-bottom: 1px solid var(--line); padding: 4px var(--pad) 16px;
  font-size: 14px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  max-height: calc(100vh - 60px); overflow-y: auto;
}
.nav.is-open .nav__menu { display: flex; }
.nav__menu a { text-decoration: none; color: var(--ink); padding: 15px 0; border-bottom: 1px solid var(--line); }
.nav__menu a[aria-current="page"] { color: var(--gold-text); }

.nav__actions { display: flex; align-items: center; gap: 6px; flex: none; }
.nav__cta {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 11px 14px; background: var(--gold-fill); color: var(--white);
  text-decoration: none; white-space: nowrap; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav__cta:hover { background: var(--gold-fill-hover); }
.nav__account {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-text); text-decoration: none; padding: 11px 6px; white-space: nowrap;
  min-height: 44px; display: none; align-items: center;
}
.nav__cta-more { display: none; }
.nav__burger { background: none; border: 0; padding: 10px 6px; cursor: pointer; min-height: 44px; flex: none; }
.nav__burger i { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s; }
.nav.is-open .nav__burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger i:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 430px) { .nav__cta-more { display: inline; } }
@media (min-width: 560px) { .nav__account { display: inline-flex; } }
@media (min-width: 600px) { .nav__logo img { height: 24px; } .nav__brand b { font-size: 19px; } .nav__brand i { display: block; } }
@media (min-width: 1000px) {
  .nav { padding: 14px var(--pad); }
  .nav__menu {
    position: static; display: flex; flex-direction: row; gap: 26px;
    background: none; border: 0; padding: 0; max-height: none; overflow: visible;
    font-size: 12px; letter-spacing: .12em;
  }
  .nav__menu a { padding: 8px 0; border: 0; }
  .nav__menu a:hover { color: var(--gold-text); }
  .nav__burger { display: none; }
  .nav__cta { padding: 13px 22px; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); padding: 36px 0 44px; }
/* The official card (weekly-talk.jpg) has baked-in text, so it stays the
   share image only — the hero washes a clean portrait into the paper. */
.hero__bg {
  position: absolute; inset: 0;
  background: url('../images/mohanji-hero.jpg') 62% 18% / cover no-repeat;
  opacity: .38;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,246,236,.88) 0%, rgba(250,246,236,.93) 45%, rgba(250,246,236,.99) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 8px 13px; margin-bottom: 16px;
  border: 1px solid var(--line-gold-s); color: var(--gold-text); background: rgba(255,255,255,.72);
}
.hero__badge b { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-fill); animation: pulse 2.4s ease-in-out infinite; }
.hero__badge.is-live { border-color: rgba(90,71,117,.45); color: var(--purple-deep); background: var(--purple-wash); }
.hero__badge.is-live b { background: var(--purple); }

/* Running-since proof — the single most persuasive fact on the page */
.hero__streak {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 22px;
}
.hero__streak b { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--gold-text); letter-spacing: 0; }

.hero__themelabel { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.hero__themeword {
  font-family: var(--serif); font-size: clamp(54px, 19vw, 150px);
  line-height: .9; letter-spacing: -.035em; color: var(--gold);
  margin: 0 0 4px; text-transform: uppercase;
}
.hero__title { font-family: var(--serif); font-size: clamp(23px, 6vw, 36px); line-height: 1.18; margin-bottom: 12px; text-wrap: balance; }
.hero__title em { color: var(--gold-text); }
.hero__teaser { font-family: var(--serif); font-size: clamp(17px, 4.6vw, 21px); font-style: italic; line-height: 1.5; color: var(--ink-soft); max-width: 34ch; margin: 0 0 24px; }

.hero__when { border-top: 1px solid var(--line-gold); padding-top: 20px; margin-bottom: 22px; }
.hero__when-local { font-family: var(--serif); font-size: clamp(21px, 5.4vw, 31px); line-height: 1.2; color: var(--ink); margin-bottom: 6px; }
.hero__when-local b { color: var(--gold-text); font-weight: 600; }
.hero__when-ref { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.hero__tz { margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
.hero__tz select {
  font-family: var(--sans); font-size: 13px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-mid);
  padding: 8px 10px; margin-top: 6px; width: 100%; max-width: 320px; min-height: 44px;
}
.hero__tz select:focus { outline: none; border-color: var(--gold-fill); }

.hero__actions { display: flex; flex-direction: column; gap: 10px; }
.hero__aside { font-size: 13px; color: var(--ink-soft); margin: 16px 0 0; }
.hero__aside a { color: var(--gold-text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Countdown panel */
.panel { background: var(--white); border: 1px solid var(--line-gold); padding: 20px 18px 16px; margin-top: 28px; }
.panel__label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 14px; }
.count { display: flex; gap: 4px; margin-bottom: 18px; }
.count__item { flex: 1; text-align: center; }
.count__n { font-family: var(--serif); font-size: clamp(28px, 8vw, 42px); font-weight: 400; line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.count__l { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 7px; }
.count__sep { display: none; }

.cities { border-top: 1px solid var(--line-gold); padding-top: 12px; }
.cities__row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 14px; }
.cities__row span:first-child { color: var(--ink-soft); }
.cities__row span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }
.cities__row.is-home span { color: var(--gold-text); font-weight: 600; }

@media (min-width: 600px) {
  .hero { padding: 52px 0 60px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .count__sep { display: block; align-self: center; color: var(--line-gold-s); font-size: 18px; padding-bottom: 14px; }
  .count { gap: 8px; }
  .panel { padding: 26px 24px 20px; }
}
@media (min-width: 1000px) {
  .hero { padding: 72px 0 78px; }
  .hero__bg { background-position: center 22%; opacity: .42; }
  .hero__scrim {
    background:
      linear-gradient(to right, rgba(250,246,236,.985) 0%, rgba(250,246,236,.965) 40%, rgba(250,246,236,.72) 62%, rgba(250,246,236,.38) 100%),
      linear-gradient(to top, rgba(250,246,236,.92) 0%, transparent 42%);
  }
  .hero__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.78fr); gap: 56px; align-items: start; }
  .panel { margin-top: 0; }
}

/* ── Quote ─────────────────────────────────────────────────── */
.quote { padding: var(--section-y) 0; background: var(--cream); border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.quote__fig { margin: 0 auto; max-width: 900px; text-align: center; }
.quote__mark { display: block; font-family: var(--serif); font-size: 62px; line-height: .5; color: var(--gold-line); margin-bottom: 14px; }
.quote__text {
  margin: 0; font-family: var(--serif); font-size: clamp(23px, 6.4vw, 42px);
  font-style: italic; font-weight: 400; line-height: 1.3; color: var(--ink); text-wrap: balance;
}
.quote__sign { margin-top: 26px; display: flex; justify-content: center; }
.quote__sign img { height: 40px; width: auto; opacity: .85; }
@media (min-width: 600px) { .quote__sign img { height: 52px; } .quote__mark { font-size: 88px; } }

/* ── Session shape ─────────────────────────────────────────── */
.shape { padding: var(--section-y) 0; background: var(--white); }
.shape__grid { border-top: 1px solid var(--line); }
.shape__item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.shape__mins { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--gold); margin-bottom: 10px; }
.shape__mins small { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-left: 7px; }
.shape__item h3 { font-size: 24px; margin-bottom: 8px; }
.shape__item h3 em { color: var(--gold-text); }
.shape__item p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.7; }
.shape__note { margin-top: 28px; padding: 20px 22px; background: var(--cream); border-left: 3px solid var(--gold-fill); font-size: 15px; color: var(--ink-soft); }
.shape__note b { color: var(--ink); font-weight: 600; }
@media (min-width: 900px) {
  .shape__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 0; }
  .shape__item { padding: 34px 30px 34px 0; border-bottom: 0; border-right: 1px solid var(--line); }
  .shape__item:last-child { border-right: 0; padding-right: 0; }
  .shape__item + .shape__item { padding-left: 30px; }
  .shape__note { margin-top: 40px; padding: 24px 28px; }
}

/* ── Watch ─────────────────────────────────────────────────── */
.watch { padding: var(--section-y) 0; background: var(--white-soft); border-top: 1px solid var(--line); }
.watch__intro h2 { font-size: clamp(28px, 7vw, 48px); line-height: 1.06; margin-bottom: 14px; }
.watch__intro h2 em { color: var(--gold); }
.watch__lede { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--ink-soft); line-height: 1.5; margin: 0 0 18px; }
.watch__channel { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); text-decoration: underline; text-underline-offset: 4px; display: inline-block; margin-bottom: 26px; }
.watch__player { position: relative; aspect-ratio: 16 / 9; background: var(--cream); border: 1px solid var(--line-gold); overflow: hidden; }
.watch__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; margin: 0; border: 0; background: var(--cream); cursor: pointer; display: block; overflow: hidden; }
.facade__poster { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.facade:hover .facade__poster { transform: scale(1.03); }
.facade__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--gold-fill); border: 2px solid var(--white);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.facade__play::after {
  content: ""; position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent var(--white);
}
.facade:hover .facade__play { background: var(--gold-fill-hover); transform: translate(-50%,-50%) scale(1.06); }
.facade__title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--white); text-align: left;
  /* Legibility scrim over photography, not a brand surface. */
  background: linear-gradient(to top, rgba(26,21,16,.88), transparent);
}
@media (min-width: 600px) { .facade__play { width: 78px; height: 78px; } .facade__title { font-size: 14px; padding: 40px 22px 16px; } }
@media (min-width: 900px) {
  .watch__grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 48px; align-items: center; }
  .watch__channel { margin-bottom: 0; }
}

/* ── Session cards ─────────────────────────────────────────── */
.recent { padding: var(--section-y) 0; background: var(--white-soft); border-top: 1px solid var(--line); }
.recent__head { margin-bottom: 26px; }
.recent__head .section-head { margin-bottom: 18px; }
.sessions { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.session { background: var(--white); padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: inherit; transition: background .3s var(--ease); }
.session:hover { background: var(--cream); }
.session__date { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.session__theme { font-family: var(--serif); font-size: 28px; line-height: 1.05; color: var(--gold-text); text-transform: uppercase; }
.session__title { font-family: var(--serif); font-size: 20px; line-height: 1.25; color: var(--ink); }
.session__teaser { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; flex: 1; }
.session__foot { margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; }
.session--none { cursor: default; }
.session--none .session__foot { color: var(--ink-mute); }
.session--none:hover { background: var(--white); }
@media (min-width: 600px) { .sessions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .recent__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
  .recent__head .section-head { margin-bottom: 0; }
  .sessions { grid-template-columns: repeat(4, 1fr); }
  .sessions--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Testimonials ──────────────────────────────────────────── */
.voices { padding: var(--section-y) 0; background: var(--white); border-top: 1px solid var(--line); }
.voices__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.voice { margin: 0; background: var(--white); padding: 26px 22px 22px; display: flex; flex-direction: column; }
.voice__text { margin: 0 0 16px; flex: 1; font-family: var(--serif); font-size: 19px; font-style: italic; line-height: 1.45; color: var(--ink); }
.voice__by { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; padding-top: 12px; border-top: 1px solid var(--line); }
.voice__by span { color: var(--ink-mute); font-weight: 400; margin-left: 7px; letter-spacing: .08em; }
@media (min-width: 600px) { .voices__grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing { padding: var(--section-y) 0; background: var(--white); border-top: 1px solid var(--line); }
.pricing__group { margin-bottom: 26px; }
.pricing__legend { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; margin-bottom: 12px; display: block; }
.opts { display: grid; grid-template-columns: 1fr; gap: 8px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt label {
  display: block; cursor: pointer; padding: 15px 18px; min-height: 56px;
  border: 1px solid var(--line-mid); background: var(--white);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.opt label b { display: block; font-weight: 600; font-size: 15px; }
.opt label small { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.opt input:checked + label { border-color: var(--gold-fill); background: var(--cream); box-shadow: inset 0 0 0 1px var(--gold-fill); }
.opt input:focus-visible + label { outline: 2px solid var(--gold-fill); outline-offset: 2px; }
.opt input:disabled + label { opacity: .45; cursor: not-allowed; }
@media (min-width: 600px) { .opts { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }

/* What's included */
.included { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 32px; }
.included__item { background: var(--white); padding: 22px 20px; }
.included__item h3 { font-size: 21px; margin-bottom: 7px; color: var(--ink); }
.included__item p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
@media (min-width: 700px) { .included { grid-template-columns: repeat(3, 1fr); } }

/* Price table — mobile stacks into cards, desktop becomes a real grid */
.plans { border-top: 1px solid var(--line-mid); }
.plans__head { display: none; }
.plans__row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.plans__row.is-best { background: var(--cream); padding-left: 16px; padding-right: 16px; border-bottom-color: var(--line-gold); }
.plans__what h3 { font-size: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plans__what p { margin: 2px 0 14px; font-size: 14px; color: var(--ink-soft); }
.plans__flag {
  font-family: var(--sans); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--white); background: var(--gold-fill); padding: 5px 9px;
}
.plans__col { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; }
.plans__col::before {
  content: attr(data-label); flex: none; min-width: 84px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.plans__cell { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plans__price { font-family: var(--serif); font-size: 27px; color: var(--ink); font-weight: 600; }
.plans__per { font-size: 13px; color: var(--ink-soft); }
.plans__ins { font-size: 13px; color: var(--gold-text); width: 100%; }
.plans__go { margin-top: 14px; }
.plans__go .btn { width: 100%; }
.plans__foot { margin: 22px 0 0; font-size: 13.5px; color: var(--ink-soft); max-width: 70ch; line-height: 1.6; }

@media (min-width: 860px) {
  .plans__head {
    display: grid; grid-template-columns: minmax(0,1.4fr) repeat(2, minmax(0,1fr)) auto;
    gap: 20px; padding: 0 16px 10px;
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-text); font-weight: 600;
  }
  .plans__row {
    display: grid; grid-template-columns: minmax(0,1.4fr) repeat(2, minmax(0,1fr)) auto;
    gap: 20px; align-items: center; padding: 20px 16px;
  }
  .plans__what p { margin: 2px 0 0; }
  .plans__col { display: block; padding: 0; }
  .plans__col::before { display: none; }
  .plans__cell { display: block; }
  .plans__go { margin-top: 0; }
  .plans__go .btn { width: auto; white-space: nowrap; }
}

.summary { background: var(--cream); color: var(--ink); padding: 26px 22px; border: 1px solid var(--line-gold); margin-top: 28px; }
.summary h3 { font-size: 25px; margin-bottom: 3px; }
.summary h3 em { color: var(--gold-text); }
.summary__sub { font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px solid var(--line-gold); font-size: 14px; }
.summary__row span:first-child { color: var(--ink-soft); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding-top: 3px; }
.summary__row span:last-child { text-align: right; color: var(--ink); }
.summary__price { font-family: var(--serif); font-size: 34px; line-height: 1.1; color: var(--gold-text); padding: 18px 0 4px; border-top: 1px solid var(--line-gold); margin-top: 4px; font-weight: 600; }
.summary__price small { display: block; font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; font-weight: 400; }
.summary .btn { margin-top: 18px; width: 100%; }
.summary__fine { margin-top: 14px; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); text-align: center; }
@media (min-width: 1000px) {
  .pricing__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.72fr); gap: 56px; align-items: start; }
  .summary { margin-top: 0; position: sticky; top: 88px; padding: 32px 30px; }
}

/* ── Steps ─────────────────────────────────────────────────── */
.join { padding: var(--section-y) 0; background: var(--cream); }
.steps { border-top: 1px solid var(--line-gold); }
.step { padding: 24px 0; border-bottom: 1px solid var(--line-gold); }
.step__n { font-family: var(--serif); font-size: 14px; letter-spacing: .18em; color: var(--gold-text); margin-bottom: 10px; font-weight: 600; }
.step h4 { font-size: 21px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.step p a { color: var(--gold-text); font-weight: 600; }
@media (min-width: 900px) {
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .step { padding: 30px 26px 30px 0; border-bottom: 0; border-right: 1px solid var(--line-gold); }
  .step:last-child { border-right: 0; padding-right: 0; }
  .step + .step { padding-left: 26px; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: var(--section-y) 0; background: var(--white); }
.faq__list { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line-gold); padding: 18px 0; }
.faq__item:first-child { border-top: 1px solid var(--line-gold); }
.faq__q {
  font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 400;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; min-height: 44px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--serif); font-size: 26px; color: var(--gold-text); transition: transform .3s var(--ease); }
details[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { margin-top: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 700px; }
.faq__a a { color: var(--gold-text); font-weight: 600; }
@media (min-width: 600px) { .faq__q { font-size: 23px; } }

/* ── Closing ───────────────────────────────────────────────── */
.closing { padding: var(--section-y) 0; background: var(--white-soft); text-align: center; border-top: 1px solid var(--line); }
.closing__om { width: 34px; margin: 0 auto 22px; opacity: .55; }
.closing h2 { font-size: clamp(30px, 8vw, 62px); line-height: 1.05; margin-bottom: 14px; }
.closing h2 em { color: var(--gold); }
.closing p { font-family: var(--serif); font-size: clamp(18px, 4.8vw, 21px); font-style: italic; color: var(--ink-soft); max-width: 540px; margin: 0 auto 26px; }
.closing__ctas { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 600px) { .closing__ctas { flex-direction: row; justify-content: center; flex-wrap: wrap; } }

/* ── Page head (interior pages) ────────────────────────────── */
.pagehead { background: var(--cream); color: var(--ink); padding: 40px 0 34px; border-bottom: 1px solid var(--line-gold); }
.pagehead__inner { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.pagehead h1 { font-size: clamp(32px, 8.5vw, 68px); line-height: 1.04; margin-bottom: 12px; }
.pagehead h1 em { color: var(--gold); }
.pagehead p { font-family: var(--serif); font-size: clamp(17px, 4.6vw, 21px); font-style: italic; color: var(--ink-soft); max-width: 52ch; margin: 0; }
@media (min-width: 900px) { .pagehead { padding: 64px 0 56px; } }

/* ── Archive ───────────────────────────────────────────────── */
.archive { padding: 32px 0 var(--section-y); background: var(--white); }
.archive__controls { display: grid; gap: 10px; margin-bottom: 18px; }
.search { position: relative; }
.search input {
  width: 100%; font-family: var(--sans); font-size: 16px; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-mid); border-radius: 0;
  padding: 14px 42px 14px 16px; min-height: 52px;
}
.search input::placeholder { color: var(--ink-mute); }
.search input:focus { outline: none; border-color: var(--gold-fill); }
.search__icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); pointer-events: none; }
.select {
  font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--white);
  border: 1px solid var(--line-mid); padding: 14px 16px; cursor: pointer; min-height: 52px; width: 100%;
}
.select:focus { outline: none; border-color: var(--gold-fill); }
.archive__count { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.archive__empty { padding: 48px 0; text-align: center; color: var(--ink-soft); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.5; }
.archive__empty a { color: var(--gold-text); font-style: normal; font-weight: 600; }
.archive__more { text-align: center; margin-top: 28px; }
@media (min-width: 700px) {
  .archive__controls { grid-template-columns: minmax(0,1fr) auto; align-items: center; }
  .select { width: auto; }
}

/* =========================================================================
   PURCHASE FLOW — checkout, auth, account, status
   ========================================================================= */

.flow { padding: 28px 0 var(--section-y); background: var(--white); }
.flow__grid { display: grid; gap: 28px; }
@media (min-width: 1000px) { .flow__grid { grid-template-columns: minmax(0,1fr) minmax(0,.68fr); gap: 52px; align-items: start; } }

/* Progress rail */
.rail { display: flex; gap: 6px; margin: 0 0 26px; padding: 0; list-style: none; }
.rail__step { flex: 1; padding-top: 10px; border-top: 3px solid var(--line-mid); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.rail__step.is-done { border-top-color: var(--gold-line); color: var(--ink-soft); }
.rail__step.is-now { border-top-color: var(--gold-fill); color: var(--gold-text); }

/* Cards / panels */
.card { background: var(--white); border: 1px solid var(--line-mid); padding: 22px 20px; margin-bottom: 18px; }
.card--quiet { background: var(--cream); border-color: var(--line-gold); }
.card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.card__head h2, .card__head h3 { font-size: 23px; }
.card__head a, .card__edit { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; cursor: pointer; padding: 6px 0; }
@media (min-width: 600px) { .card { padding: 28px 26px; } }

/* Forms */
.field { margin-bottom: 16px; }
.field > label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px;  /* 16px stops iOS zooming on focus */
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line-mid); border-radius: 0;
  padding: 14px 15px; min-height: 52px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-fill); box-shadow: inset 0 0 0 1px var(--gold-fill); }
.field input[aria-invalid="true"] { border-color: var(--warn); box-shadow: inset 0 0 0 1px var(--warn); }
.field__hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.field__error { font-size: 13px; color: var(--warn); margin-top: 6px; font-weight: 600; }
.field--pair { display: grid; gap: 16px; }
@media (min-width: 600px) { .field--pair { grid-template-columns: 1fr 1fr; } }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--gold-fill); }
.check a { color: var(--gold-text); font-weight: 600; }

.formnote { font-size: 13px; color: var(--ink-soft); text-align: center; margin: 16px 0 0; }
.formnote a { color: var(--gold-text); font-weight: 600; }

/* Alert / banner */
.alert { padding: 14px 16px; border-left: 3px solid; font-size: 14.5px; line-height: 1.55; margin-bottom: 18px; }
.alert--ok   { background: var(--ok-wash);   border-color: var(--ok);   color: #1f4a30; }
.alert--warn { background: var(--warn-wash); border-color: var(--warn); color: #7a2f24; }
.alert--info { background: var(--cream);     border-color: var(--gold-fill); color: var(--ink-soft); }
.alert b { font-weight: 600; }

/* Auth pages — narrow, centred */
.auth { padding: 32px 0 var(--section-y); background: var(--white-soft); min-height: 60vh; }
.auth__box { max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--line-mid); padding: 26px 22px; }
.auth__head { text-align: center; margin-bottom: 24px; }
.auth__head h1 { font-size: clamp(28px, 7vw, 40px); margin-bottom: 8px; }
.auth__head h1 em { color: var(--gold); }
.auth__head p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.auth__divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.auth__divider::before, .auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
@media (min-width: 600px) { .auth__box { padding: 36px 34px; } }

/* Status pages — success / failure */
.status { padding: var(--section-y) 0; background: var(--white); text-align: center; }
.status__mark { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; }
.status__mark--ok   { background: var(--ok-wash);   border: 2px solid var(--ok); }
.status__mark--warn { background: var(--warn-wash); border: 2px solid var(--warn); }
.status__mark svg { width: 34px; height: 34px; }
.status h1 { font-size: clamp(30px, 8vw, 56px); line-height: 1.05; margin-bottom: 14px; }
.status h1 em { color: var(--gold); }
.status__lede { font-family: var(--serif); font-size: clamp(18px, 4.8vw, 22px); font-style: italic; color: var(--ink-soft); max-width: 540px; margin: 0 auto 28px; }
.status__box { max-width: 520px; margin: 0 auto 26px; text-align: left; }
.status__ctas { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
@media (min-width: 600px) { .status__ctas { flex-direction: row; justify-content: center; } }

/* Account page */
.acct { padding: 28px 0 var(--section-y); background: var(--white); }
.acct__grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .acct__grid { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 32px; align-items: start; } }
.badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; padding: 6px 11px;
}
.badge--ok   { background: var(--ok-wash);   color: #1f4a30; }
.badge--warn { background: var(--warn-wash); color: #7a2f24; }
.badge--mute { background: var(--cream);     color: var(--ink-soft); }

.datalist { list-style: none; margin: 0; padding: 0; }
.datalist li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.datalist li:first-child { border-top: 0; }
.datalist dt, .datalist span:first-child { color: var(--ink-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.datalist span:last-child { text-align: right; }

.table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.table th { text-align: left; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; padding: 0 0 10px; border-bottom: 1px solid var(--line-mid); }
.table td { padding: 13px 0; border-bottom: 1px solid var(--line); }
.table td:last-child, .table th:last-child { text-align: right; }
.table a { color: var(--gold-text); font-weight: 600; }
@media (max-width: 599px) {
  .table thead { display: none; }
  .table tr { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .table td { border: 0; padding: 0; }
  .table td:nth-child(2) { color: var(--ink-soft); font-size: 13px; }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--cream); color: var(--ink-soft); padding: 44px 0 26px; font-size: 14px; border-top: 1px solid var(--line-gold); }
.footer__grid { display: grid; gap: 26px; padding-bottom: 28px; border-bottom: 1px solid var(--line-gold); }
.footer__brand { font-family: var(--serif); font-size: 23px; color: var(--ink); margin-bottom: 8px; }
.footer__brand em { color: var(--gold-text); }
.footer p { line-height: 1.6; max-width: 340px; margin: 0; }
.footer h5 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; margin: 0 0 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold-text); text-decoration: underline; }
.footer__base { padding-top: 20px; display: grid; gap: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); text-align: center; }
@media (min-width: 600px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1000px) {
  .footer { padding: 60px 0 30px; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
  .footer__base { display: flex; justify-content: space-between; text-align: left; }
}
