@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("assets/inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal; font-weight: 400 900; font-display: swap;
  src: url("assets/playfair-var.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic; font-weight: 400 900; font-display: swap;
  src: url("assets/playfair-italic-var.woff2") format("woff2");
}
@font-face {
  font-family: "Alex Brush";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("assets/alex-brush.woff2") format("woff2");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  background: var(--navy);
  color: var(--cream);
  font-family: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:root {
  --navy: #0b0a09;
  --navy-deep: #070605;
  --navy-panel: #14110d;
  --navy-line: rgba(203,171,114,0.16);
  --navy-line-soft: rgba(236,231,220,0.08);
  --gold: #cbab72;
  --gold-bright: #e6d3a3;
  --gold-dim: rgba(203,171,114,0.5);
  --cream: #ece7dc;
  --cream-dim: #cfc8bb;
  --steel: #b6afa2;
  --steel-dim: #8a8272;
}

::selection { background: var(--gold); color: var(--navy-deep); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mono { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.serif { font-family: "Playfair Display", Georgia, serif; }
.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-dim); }

/* ---------- buttons: sharp corners, editorial, no pills ---------- */
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); border-bottom: 1px solid var(--gold-dim);
  padding: 4px 0 8px; transition: border-color 220ms ease, color 220ms ease, gap 220ms ease;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); gap: 14px; }
.btn-frame {
  display: inline-block; border: 1px solid var(--gold-dim); color: var(--cream);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 28px; transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}
.btn-frame:hover { border-color: var(--gold); background: rgba(203,171,114,0.07); }
.btn-solid {
  display: inline-block; background: var(--gold); color: var(--navy-deep);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 30px; transition: background 220ms ease, transform 220ms ease;
}
.btn-solid:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ---------- header: slim masthead, no CTA chrome ---------- */
header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 6vw; background: rgba(7,6,5,0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-line-soft);
}
.brand { display: flex; align-items: center; gap: 13px; line-height: 1.15; }
.brand-icon {
  width: 42px; height: 52px; object-fit: cover; object-position: 50% 15%;
  border: 1px solid var(--gold-dim); flex: none;
}
.brand-word { display: flex; flex-direction: column; }
.brand-word b {
  font-family: "Playfair Display", serif; font-weight: 600; font-size: 17px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream);
}
.brand-word span { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; color: var(--gold); margin-top: 2px; }

nav { display: flex; align-items: center; gap: 14px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
nav a.nav-link {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel);
  transition: color 200ms ease; position: relative; padding-bottom: 4px;
}
nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold);
  transition: right 220ms ease;
}
nav a.nav-link:hover, nav a.nav-link.is-active { color: var(--cream); }
nav a.nav-link:hover::after, nav a.nav-link.is-active::after { right: 0; }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-dim);
  background: none; cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 14px; height: 1px; background: var(--gold); }
.nav-scrim { display: none; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
    background: var(--navy-deep); border-left: 1px solid var(--navy-line);
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 110px 34px 32px;
    transform: translateX(100%); transition: transform 300ms cubic-bezier(.22,.61,.36,1); z-index: 70; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a.nav-link { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--navy-line-soft); }
  .nav-links a.nav-link::after { display: none; }
  .nav-cta-mobile { display: block; margin-top: 20px; text-align: center; width: 100%; }
  /* must stay BELOW header's z-index (60): header is the fixed panel's containing/
     stacking context, so a scrim above it would paint over the panel and eat every tap */
  .nav-scrim { display: block; position: fixed; inset: 0; background: rgba(4,3,2,0.65); opacity: 0; pointer-events: none;
    transition: opacity 300ms ease; z-index: 55; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* ---------- hero: full-bleed editorial masthead, no boxed card ---------- */
.hero { position: relative; padding: 80px 6vw 0; overflow: hidden; }
.hero-rule { max-width: 1300px; margin: 0 auto 60px; border-top: 1px solid var(--navy-line-soft); }
.hero-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 6vw; align-items: start; padding-bottom: 60px; }
.hero-copy { padding-top: 8px; }
.hero-display {
  font-family: "Playfair Display", serif; font-weight: 500; letter-spacing: -0.015em;
  font-size: clamp(52px, 7.4vw, 118px); line-height: 0.98; text-wrap: balance;
}
.hero-display em { font-style: italic; color: var(--gold); font-weight: 500; display: block; }
.hero-side { border-left: 1px solid var(--navy-line); padding-left: 4vw; padding-bottom: 6px; }
.hero-side p { font-size: 16px; line-height: 1.75; color: var(--steel); max-width: 40ch; }
.hero-side .hero-ctas { margin-top: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.hero-platforms { display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; }
.hero-platforms span.lbl { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-dim); }
.trust-line {
  display: block; margin-top: 20px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); transition: color 200ms ease;
}
.trust-line:hover { color: var(--gold-bright); }
.plat-link { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--steel); transition: color 200ms ease; }
.plat-link:hover { color: var(--gold); }
.plat-link svg { width: 15px; height: 15px; flex: none; }

.hero-strip { border-top: 1px solid var(--navy-line-soft); background: var(--navy-deep); padding: 26px 6vw; }
.hero-strip-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.hs-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-dim); }
.hs-latest { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.hs-latest b { font-family: "Playfair Display", serif; font-weight: 600; color: var(--cream); font-size: 16px; }
.hs-latest .hs-guest { color: var(--gold); font-weight: 600; }
.hs-latest .hs-dot { color: var(--steel-dim); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { border-left: none; padding-left: 0; border-top: 1px solid var(--navy-line); padding-top: 30px; }
  .hero-side p { max-width: none; }
  .hs-latest { flex-wrap: wrap; }
}

/* ---------- hero host box: framed portrait card, gold pill CTA ---------- */
.btn-pill {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-deep); background: linear-gradient(180deg, var(--gold-bright), var(--gold) 65%);
  border-radius: 40px; padding: 17px 32px;
  box-shadow: 0 14px 34px rgba(203,171,114,0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(203,171,114,0.3); }

.hero-host-box {
  position: relative; width: min(340px, 100%); border: 1px solid var(--gold-dim);
  background: rgba(7,6,5,0.5); backdrop-filter: blur(2px); padding: 20px;
}
.hero-host-box .hhb-photo { position: relative; overflow: hidden; }
.hero-host-box .hhb-photo img {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 50%;
  filter: saturate(0.88) sepia(0.1) contrast(1.02);
}
.hero-host-box .hhb-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 110% at 50% 42%, transparent 52%, rgba(7,6,5,0.65) 100%),
              linear-gradient(180deg, rgba(203,171,114,0.1), transparent 30%);
  mix-blend-mode: multiply;
}
.hero-host-box .hhb-label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 18px; }
.hero-host-box .hhb-name { font-family: "Playfair Display", serif; font-size: 24px; color: var(--cream); margin-top: 8px; }
.hero-host-box .hhb-tag { font-size: 13.5px; color: var(--steel); margin-top: 8px; line-height: 1.5; }
.hero-host-box .btn-line { margin-top: 16px; }

/* ---------- signature: script flourish for host credibility ---------- */
.signature {
  font-family: "Alex Brush", cursive; font-size: 44px; color: var(--gold-bright);
  margin-top: 22px; line-height: 1; transform: rotate(-2deg); display: inline-block;
}

/* ---------- motif strip (recurring questions, not fake history) ---------- */
.strip { padding: 60px 6vw; border-top: 1px solid var(--navy-line-soft); border-bottom: 1px solid var(--navy-line-soft); }
.strip-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.strip-label { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel-dim); margin-bottom: 40px; }
.strip-row { display: flex; justify-content: center; align-items: stretch; gap: 0; flex-wrap: wrap; }
.roster-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 16px;
  font-family: "Playfair Display", serif; font-style: italic; font-size: 17px; color: var(--cream-dim);
  max-width: 1000px; margin: 0 auto;
}
.roster-dot { color: var(--gold-dim); font-style: normal; }
.strip-item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 0 34px; border-right: 1px solid var(--navy-line-soft); }
.strip-item:last-child { border-right: none; }
.strip-num { font-size: 13px; color: var(--gold-dim); letter-spacing: 0.06em; }
.strip-name { font-family: "Playfair Display", serif; font-style: italic; font-size: 17px; color: var(--cream); }
@media (max-width: 780px) { .strip-item { border-right: none; padding: 12px 20px; } }

/* ---------- featured: asymmetric editorial spread ---------- */
.featured { padding: 110px 6vw; border-bottom: 1px solid var(--navy-line-soft); }
.featured-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 7vw; align-items: start; }
.featured-num { font-family: "Playfair Display", serif; font-weight: 500; font-style: italic; font-size: clamp(120px, 13vw, 220px);
  line-height: 0.8; color: transparent; -webkit-text-stroke: 1px var(--gold-dim); }
.featured-copy h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.18; text-wrap: balance; margin-top: 18px; }
.featured-copy .guest-line { margin-top: 20px; font-family: "Playfair Display", serif; font-style: italic; font-size: 19px; color: var(--gold); }
.featured-copy p.desc { margin-top: 20px; font-size: 16px; line-height: 1.8; color: var(--steel); max-width: 58ch; }
.featured-rule { margin-top: 30px; border-top: 1px solid var(--navy-line-soft); padding-top: 24px; }
.featured-highlights { display: flex; flex-direction: column; gap: 11px; }
.featured-highlights li { list-style: none; display: flex; align-items: baseline; gap: 14px; font-size: 14.5px; color: var(--steel); }
.featured-highlights li::before { content: "—"; color: var(--gold-dim); flex: none; }
.featured-copy .btn-line { margin-top: 32px; }
@media (max-width: 900px) {
  .featured { padding: 76px 6vw; }
  .featured-inner { grid-template-columns: 1fr; gap: 28px; }
  .featured-num { font-size: 90px; }
}

/* ---------- episodes: editorial numbered list, not card grid ---------- */
.episodes { padding: 110px 6vw; border-bottom: 1px solid var(--navy-line-soft); background: var(--navy-deep); }
.episodes-head { max-width: 680px; margin: 0 auto 64px; }
.episodes-head h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; text-wrap: balance; }
.episodes-head p { color: var(--steel); margin-top: 18px; font-size: 16px; line-height: 1.75; max-width: 60ch; }

.ep-list { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--navy-line); }
.ep-row {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: baseline; gap: 26px;
  padding: 30px 4px; border-bottom: 1px solid var(--navy-line-soft);
  transition: padding-left 240ms ease;
}
.ep-row:hover { padding-left: 14px; }
.ep-row .ep-idx { font-family: "Playfair Display", serif; font-style: italic; font-size: 17px; color: var(--gold-dim); }
.ep-row .ep-main { min-width: 0; display: flex; flex-direction: column; }
.ep-row .ep-title { font-family: "Playfair Display", serif; font-weight: 500; font-size: 21px; line-height: 1.3; color: var(--cream); transition: color 220ms ease; }
.ep-row:hover .ep-title { color: var(--gold-bright); }
.ep-row .ep-guest { margin-top: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--steel); text-transform: uppercase; }
.ep-row .ep-meta { text-align: right; font-size: 12.5px; color: var(--steel-dim); white-space: nowrap; }
.ep-row .ep-meta .ep-dur { display: block; }
.ep-row .ep-meta .ep-date { display: block; margin-top: 4px; }
@media (max-width: 640px) {
  .ep-row { grid-template-columns: 40px 1fr; }
  .ep-row .ep-meta { grid-column: 2; text-align: left; margin-top: 8px; display: flex; gap: 14px; }
  .ep-row .ep-meta .ep-date { margin-top: 0; }
}
.episodes-more { text-align: center; margin-top: 50px; }

/* ---------- quote ---------- */
.quote-section { padding: 100px 6vw; border-bottom: 1px solid var(--navy-line-soft); }
.quote-inner { max-width: 780px; margin: 0 auto; }
.quote-mark { font-family: "Playfair Display", serif; font-size: 60px; color: var(--gold-dim); line-height: 1; }
.quote-inner blockquote { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px); line-height: 1.5; color: var(--cream); margin-top: 6px; text-wrap: balance; }
.quote-attrib { margin-top: 26px; font-size: 13px; letter-spacing: 0.04em; color: var(--steel); }
.quote-attrib b { color: var(--gold); }

.testimonial-carousel { position: relative; min-height: 168px; }
.t-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease, visibility 0ms 500ms;
}
.t-slide.is-active { position: relative; opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 500ms ease, transform 500ms ease; }
.t-dots { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; max-width: 100%; }
.t-dots button {
  width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--gold-dim); background: transparent;
  padding: 0; cursor: pointer; transition: background 200ms ease, border-color 200ms ease;
}
.t-dots button.is-active { background: var(--gold); border-color: var(--gold); }
.t-dots:has(button:only-child) { display: none; }

/* ---------- host / about ---------- */
.host { padding: 110px 6vw; border-bottom: 1px solid var(--navy-line-soft); }
.host-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 0.62fr 1.38fr; gap: 6vw; align-items: start; }
.host-photo { position: relative; overflow: hidden; border: 1px solid var(--gold-dim); box-shadow: 0 40px 80px -36px rgba(0,0,0,0.6); }
.host-photo img { width: 100%; height: auto; display: block; filter: saturate(0.88) sepia(0.1) contrast(1.02); }
.host-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 110% at 50% 42%, transparent 55%, rgba(7,6,5,0.6) 100%);
  mix-blend-mode: multiply;
}
.host-copy h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(28px, 3.2vw, 38px); text-wrap: balance; margin-top: 16px; }
.host-copy p { margin-top: 20px; font-size: 16px; line-height: 1.85; color: var(--steel); max-width: 62ch; }
.host-copy .host-cred {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  border-top: 1px solid var(--navy-line); padding-top: 20px; max-width: none;
}
@media (max-width: 780px) { .host-inner { grid-template-columns: 1fr; gap: 28px; } .host-photo { max-width: 340px; margin: 0 auto; } }

/* ---------- nominate / cta ---------- */
.nominate { padding: 110px 6vw; border-bottom: 1px solid var(--navy-line-soft); }
.nominate-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.nominate-copy h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(32px, 4vw, 48px); text-wrap: balance; margin-top: 18px; }
.nominate-copy p { margin-top: 18px; color: var(--steel); font-size: 16px; line-height: 1.75; max-width: 46ch; }
.nominate-copy .btn-frame { margin-top: 34px; }
@media (max-width: 900px) { .nominate-grid { grid-template-columns: 1fr; gap: 34px; } }

.nominate-form-wrap { border: 1px solid var(--navy-line); padding: 40px; }
.nominate-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nominate-form input, .nominate-form textarea {
  width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--navy-line);
  background: transparent; color: var(--cream); font-size: 14.5px; font-family: inherit;
}
.nominate-form textarea { resize: vertical; }
.nominate-form input::placeholder, .nominate-form textarea::placeholder { color: var(--steel-dim); }
.nominate-form input:focus, .nominate-form textarea:focus { outline: none; border-color: var(--gold); }
.nominate-form button { margin-top: 10px; cursor: pointer; border: none; font-family: inherit; width: 100%; text-align: center; }
.form-note { font-size: 12px; color: var(--steel-dim); text-align: center; margin-top: 6px; }
.form-note.is-error { color: #cf8f5c; }
.form-note.is-success { color: var(--gold); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .nominate-form-wrap { padding: 28px 24px; } }

/* ---------- page hero (episodes/about/contact/legal pages) ---------- */
.page-hero { padding: 130px 6vw 70px; border-bottom: 1px solid var(--navy-line-soft); }
.page-hero h1 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(38px, 5.4vw, 64px);
  margin-top: 22px; max-width: 18ch; line-height: 1.06; text-wrap: balance; }
.page-hero .hero-sub { margin-top: 24px; font-size: 17px; color: var(--steel); line-height: 1.75; max-width: 60ch; }

/* ---------- footer: quiet masthead close, not a boxed grid ---------- */
footer { padding: 80px 6vw 40px; border-top: 1px solid var(--navy-line-soft); }
.foot-top { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--navy-line-soft); }
.foot-brand b { font-family: "Playfair Display", serif; font-weight: 600; font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); display: block; }
.foot-brand span { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; color: var(--gold); }
.foot-brand p { margin-top: 16px; font-size: 14px; line-height: 1.65; color: var(--steel); max-width: 32ch; }
.foot-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-head { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-dim); margin-bottom: 4px; }
.foot-col a { font-size: 13.5px; color: var(--steel); transition: color 180ms ease; }
.foot-col a:hover { color: var(--gold); }
.foot-bar { max-width: 1180px; margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--steel-dim); }
.foot-bar-links { display: flex; gap: 22px; }
.foot-bar-links a { color: var(--steel-dim); }
.foot-bar-links a:hover { color: var(--gold); }

/* ---------- shared: legal pages ---------- */
.legal { padding: 70px 6vw 100px; }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-inner p { color: var(--steel); font-size: 15.5px; line-height: 1.8; margin-top: 16px; }
.legal-inner h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: 23px; margin-top: 46px; }
.legal-inner ul { margin-top: 14px; padding-left: 22px; color: var(--steel); font-size: 15.5px; line-height: 1.85; }
.legal-inner a { color: var(--gold); }
.legal-inner a:hover { text-decoration: underline; }

/* ---------- reveal / motion ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
