/* ==========================================================================
   Variant 04 — Considered Minimalism
   Inspired by Are.na, Letterboxd, Browser Company, Curius.
   Off-white paper, warm ink, one cobalt accent. Geist + Source Serif.
   ========================================================================== */

:root {
  --paper:    #F6F4EE;
  --ink:      #161513;
  --cobalt:   #1F3FE0;
  --muted:    #827E78;
  --hairline: #D8D4CB;
  --paper-2:  #EFECE3;

  --serif:  "Source Serif 4", Georgia, serif;
  --sans:   "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:   "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max:    1280px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
*::selection { background: var(--cobalt); color: var(--paper); }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "ss02" on, "cv11" on;
}

a { color: inherit; text-decoration: none; }

/* ---------- Optional 12-col grid overlay (off by default) ------------------ */
body.grid-on::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  max-width: var(--max);
  margin: 0 auto;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 2 * var(--gutter));
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc((100% - 11px) / 12),
    rgba(31, 63, 224, 0.05) calc((100% - 11px) / 12),
    rgba(31, 63, 224, 0.05) calc((100% - 11px) / 12 + 1px)
  );
}

/* ---------- Layout helpers ------------------------------------------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--tight { max-width: 1000px; }
.wrap--text  { max-width: 640px; }

.rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }
.rule--ink { background: var(--ink); height: 2px; }

/* ---------- Nav ------------------------------------------------------------ */
.nav {
  border-bottom: 1px solid var(--hairline);
  background: rgba(246, 244, 238, 0.85);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
}
.nav__row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.nav__brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 10px;
}
.nav__brand::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--cobalt);
  transform: translateY(1px);
}
.nav__links {
  display: flex; gap: 0; align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); }
.nav__links .sep { padding: 0 14px; color: var(--hairline); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cobalt);
  position: relative;
}
.nav__cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--cobalt);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav__cta:hover::after { transform: scaleX(0.6); }

/* ---------- Chapter labels ------------------------------------------------- */
.chapter {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.chapter__num { color: var(--cobalt); font-weight: 700; }
.chapter__line {
  flex: 0 0 56px;
  height: 1px;
  background: var(--hairline);
}

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  padding: 72px 0 0;
}
.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex; gap: 22px; align-items: center;
  margin-bottom: 30px;
}
.hero__meta .dot {
  width: 6px; height: 6px;
  background: var(--cobalt); display: inline-block;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(56px, 7.6vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.038em;
  margin: 0 0 36px;
  max-width: 14ch;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--cobalt);
}
.hero__sub {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 48px;
}
.hero__photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  overflow: hidden;
  margin: 24px auto 0;
}
.hero__photo image-slot {
  display: block; width: 100%; height: 100%;
}
.hero__caption {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 14px;
  padding: 0 2px;
}

/* ---------- Section spacing ------------------------------------------------ */
.section {
  padding: 120px 0;
}
.section--tight { padding: 80px 0; }

.section__head {
  margin-bottom: 56px;
}
.section__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0;
  max-width: 18ch;
}
.section__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--cobalt);
}
.section__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 580px;
  margin: 22px 0 0;
}

/* ---------- Featured episode ---------------------------------------------- */
.feat {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 88px;
}
.feat__photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  overflow: hidden;
}
.feat__photo image-slot {
  display: block; width: 100%; height: 100%;
  transition: transform 600ms ease;
}
.feat__photo:hover image-slot { transform: scale(1.02); }
.feat__photo::after {
  content: "FEATURED";
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cobalt);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 6px 10px;
  font-weight: 500;
}
.feat__body { padding-bottom: 4px; }
.feat__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex; gap: 18px;
}
.feat__meta .num { color: var(--cobalt); font-weight: 700; }
.feat__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 16ch;
}
.feat__desc {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 0 32px;
}
.feat__desc::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.82;
  padding: 0.06em 0.14em 0 0;
  color: var(--cobalt);
}
.feat__play {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cobalt);
  padding: 14px 20px;
  border: 1px solid var(--cobalt);
  transition: background 200ms ease, color 200ms ease;
  font-weight: 500;
}
.feat__play:hover { background: var(--cobalt); color: var(--paper); }
.feat__play .arrow { font-size: 14px; }

/* ---------- Episode list (rows with 16:9 thumbnails) --------------------- */
.eplist { border-top: 1px solid var(--hairline); }
.eprow {
  display: grid;
  grid-template-columns: 160px 56px 1fr 96px 48px;
  align-items: center;
  gap: 28px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hairline);
  transition: background 220ms ease, padding-left 220ms ease;
  cursor: pointer;
}
.eprow:hover {
  background: var(--paper-2);
  padding-left: 16px;
}
.eprow__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.eprow__thumb image-slot {
  display: block; width: 100%; height: 100%;
}
.eprow.is-premium .eprow__thumb {
  border-color: var(--cobalt);
}
.eprow__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
  font-weight: 500;
}
.eprow.is-premium .eprow__num { color: var(--cobalt); font-weight: 700; }
.eprow__main { min-width: 0; }
.eprow__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0 0 6px;
  color: var(--ink);
}
.eprow__sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
  display: flex; align-items: baseline; gap: 14px;
}
.eprow__sub .date {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.eprow__sub .desc {
  display: inline;
}
.eprow__dur {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  letter-spacing: 0.06em;
}
.eprow__play {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--cobalt);
  text-align: right;
  transition: transform 220ms ease;
}
.eprow:hover .eprow__play { transform: translateX(6px); }

.eprow__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--paper);
  background: var(--cobalt);
  padding: 3px 6px;
  margin-right: 10px;
  vertical-align: 2px;
}

.eplist__more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cobalt);
  position: relative;
  font-weight: 500;
}
.eplist__more::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--cobalt);
  transform-origin: left;
  transition: transform 220ms ease;
}
.eplist__more:hover::after { transform: scaleX(0.6); }

/* ---------- Membership tease (landing) ------------------------------------ */
.tease {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.tease__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.tease__photo image-slot {
  display: block; width: 100%; height: 100%;
  transition: transform 500ms ease;
}
.tease:hover .tease__photo image-slot { transform: scale(1.02); }
.tease__kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cobalt);
  margin-bottom: 22px;
  font-weight: 500;
}
.tease__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.032em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.tease__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--cobalt);
}
.tease__body {
  font-size: 18px;
  line-height: 1.5;
  max-width: 52ch;
  color: var(--ink);
  margin: 0 0 32px;
}
.tease__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: var(--cobalt);
  padding: 16px 24px;
  transition: transform 200ms ease, background 200ms ease;
  font-weight: 500;
}
.tease__cta:hover { background: var(--ink); transform: translateY(-1px); }

/* ---------- Shop ---------------------------------------------------------- */
.shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.shop__item { background: var(--paper); }
.shop__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.shop__photo image-slot {
  display: block; width: 100%; height: 100%;
  transition: transform 500ms ease;
}
.shop__item:hover .shop__photo image-slot { transform: scale(1.03); }
.shop__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 2px;
}
.shop__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.012em;
}
.shop__price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.shop__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- About (split) ------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.about__col h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 22px 0 8px;
}
.about__col .role {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cobalt);
  margin-bottom: 14px;
  font-weight: 500;
}
.about__col p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 36ch;
}
.about__portrait {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.about__portrait image-slot { display: block; width: 100%; height: 100%; }

/* ---------- Footer (landing) --------------------------------------------- */
.foot {
  border-top: 1px solid var(--hairline);
  padding: 72px 0 40px;
  margin-top: 80px;
  background: var(--paper);
}
.foot__big {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 6.2vw, 88px);
  letter-spacing: -0.034em;
  line-height: 0.98;
  margin: 0 0 56px;
  max-width: 14ch;
}
.foot__big em {
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--cobalt);
}
.foot__row {
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.foot__links { display: flex; gap: 28px; }
.foot__links a { transition: color 200ms ease; }
.foot__links a:hover { color: var(--cobalt); }

/* ============================================================
   ELITE PAGE
   ============================================================ */

.elite-hero {
  padding: 72px 0 0;
}
.elite-hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cobalt);
  margin-bottom: 26px;
  display: flex; gap: 22px; align-items: center;
  font-weight: 500;
}
.elite-hero__meta .dot {
  width: 6px; height: 6px; background: var(--cobalt); display: inline-block;
}
.elite-hero__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(64px, 8.4vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.042em;
  margin: 0 0 40px;
  max-width: 12ch;
}
.elite-hero__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--cobalt);
}
.elite-hero__sub {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 36px;
}
.elite-hero__photo {
  aspect-ratio: 21 / 9;
  background: var(--paper-2);
  overflow: hidden;
  margin-top: 28px;
}
.elite-hero__photo image-slot { display: block; width: 100%; height: 100%; }

/* Letter (the editor's note) */
.letter {
  max-width: 640px;
  margin: 0 auto;
}
.letter__body {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.letter__body::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 4.8em;
  float: left;
  line-height: 0.82;
  padding: 0.04em 0.14em 0 0;
  color: var(--cobalt);
}
.letter__sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  margin-top: 32px;
  color: var(--muted);
}

/* Perks (definition list) */
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.perk {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.perk:nth-child(2n) {
  padding-left: 32px;
  border-left: 1px solid var(--hairline);
  padding-right: 0;
}
.perk__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 18px;
  font-weight: 700;
}
.perk__h {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.perk__p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 40ch;
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  text-align: center;
  color: var(--ink);
  max-width: 24ch;
  margin: 96px auto;
  padding: 0 var(--gutter);
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: "";
  display: block;
  width: 24px; height: 1px;
  background: var(--cobalt);
  margin: 28px auto;
}

/* Bonus eps (elite) */
.bonus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.bonus__item { display: block; cursor: pointer; }
.bonus__photo {
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--cobalt);
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}
.bonus__photo image-slot { display: block; width: 100%; height: 100%; transition: transform 500ms ease; }
.bonus__item:hover .bonus__photo image-slot { transform: scale(1.03); }
.bonus__photo::after {
  content: "GLOBAL ELITE";
  position: absolute; top: 14px; left: 14px;
  background: var(--cobalt); color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  padding: 6px 10px;
  font-weight: 500;
}
.bonus__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 10px;
  font-weight: 500;
}
.bonus__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.bonus__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Pricing — leader dots */
.price-list {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--mono);
}
.price-row {
  display: flex; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-row:first-child { border-top: 1px solid var(--hairline); }
.price-row__label {
  color: var(--ink); font-weight: 500;
  display: flex; flex-direction: column; gap: 4px;
}
.price-row__dots {
  flex: 1;
  border-bottom: 2px dotted var(--hairline);
  margin: 0 18px;
  transform: translateY(-3px);
}
.price-row__amount {
  font-weight: 700;
  color: var(--cobalt);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.price-row__note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.price-row.is-best .price-row__label::after {
  content: "BEST VALUE";
  display: inline-block;
  margin-left: 12px;
  background: var(--cobalt); color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 3px 7px;
  vertical-align: 2px;
  font-weight: 500;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 4px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.014em;
  color: var(--ink);
  transition: color 200ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cobalt); }
.faq summary .marker {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--cobalt);
  margin-left: 24px;
  transition: transform 220ms ease;
  font-weight: 500;
  line-height: 1;
}
.faq details[open] summary .marker { transform: rotate(45deg); }
.faq__body {
  margin: 16px 0 4px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Footer CTA (elite) */
.elite-foot {
  border-top: 1px solid var(--hairline);
  padding: 112px 0 56px;
  margin-top: 96px;
  text-align: center;
}
.elite-foot__big {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 6.2vw, 88px);
  letter-spacing: -0.034em;
  line-height: 0.98;
  margin: 0 auto 40px;
  max-width: 16ch;
}
.elite-foot__big em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--cobalt); }
.elite-foot__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--cobalt);
  color: var(--paper);
  padding: 20px 32px;
  transition: background 200ms ease, transform 200ms ease;
  font-weight: 500;
}
.elite-foot__cta:hover { background: var(--ink); transform: translateY(-1px); }
.elite-foot__sub {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 28px;
}

/* image-slot tiny tweaks */
image-slot {
  background: var(--paper-2);
  color: var(--muted);
}
