/* Ho Yuen Kei — main stylesheet
   Warm, editorial, inclusion-oriented. */

:root {
  --bg: #fff8ec;
  --bg-deep: #fbecd0;
  --ink: #3d2a1f;
  --ink-soft: #7a5b48;
  --terra: #e8623a;
  --olive: #7a9460;
  --tan: #f0a868;
  --line: rgba(61,42,31,0.12);
  --font-display: 'Instrument Serif', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--terra); color: var(--bg); }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

/* When over the dark hero photo on the home page, nav goes light */
.nav--on-hero .nav__brand-mark { border-color: rgba(255,255,255,0.7); color: #faf6ef; }
.nav--on-hero .nav__brand-en { color: #faf6ef; }
.nav--on-hero .nav__brand-zh { color: rgba(250,246,239,0.65); }
.nav--on-hero .nav__link { color: rgba(250,246,239,0.75); }
.nav--on-hero .nav__link:hover,
.nav--on-hero .nav__link--active { color: #faf6ef; }
.nav--on-hero .lang-toggle { color: rgba(250,246,239,0.65); }
.nav--on-hero .lang-toggle__btn--on { color: #faf6ef; }
.nav--on-hero .nav__cta { background: #faf6ef; color: #2a2520; }
.nav--on-hero .nav__cta:hover { background: var(--terra); color: #faf6ef; }
.nav--on-hero .nav__burger span { background: #faf6ef; }
/* Soft scrim under the nav so light text reads cleanly even over light parts of the hero */
.nav--on-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 140%;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0));
  pointer-events: none; z-index: -1;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-mark {
  font-family: var(--font-display); font-size: 22px;
  border: 1px solid var(--ink); padding: 4px 8px; line-height: 1;
}
.nav__brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-en { font-family: var(--font-display); font-size: 19px; }
.nav__brand-zh { font-size: 11px; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; }

.nav__links { display: flex; gap: 6px; justify-content: center; }
.nav__link {
  padding: 8px 14px; font-size: 14px; letter-spacing: 0.01em;
  position: relative; color: var(--ink-soft); transition: color 200ms;
  border-radius: 999px;
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--ink); }
.nav__link--active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--terra); border-radius: 50%;
}

.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-toggle { font-family: var(--font-mono); font-size: 12px; display: flex; gap: 4px; align-items: center; color: var(--ink-soft); }
.lang-toggle__btn { padding: 4px 6px; transition: color 200ms; }
.lang-toggle__btn--on { color: var(--ink); font-weight: 600; }
.lang-toggle__sep { opacity: 0.5; }

.nav__cta {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 10px 16px; border-radius: 999px;
  background: var(--terra); color: #fff8ec;
  font-size: 13px; letter-spacing: 0.02em;
  transition: transform 200ms, background 200ms;
}
.nav__cta:hover { background: var(--ink); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform 200ms; }
.nav__burger--open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg); border-top: 1px solid var(--line);
    padding: 8px var(--pad-x) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 220ms, opacity 220ms;
  }
  .nav__links--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link--active::after { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__cta { display: none; }
}

/* ============== PAGE FADE ============== */
.page-fade { transition: opacity 220ms ease, transform 220ms ease; }
.page-fade--in { opacity: 1; transform: translateY(0); }
.page-fade--out { opacity: 0; transform: translateY(8px); }

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal--in { opacity: 1; transform: translateY(0); }

/* ============== EYEBROW ============== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow__dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* ============== BUTTON ============== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; letter-spacing: 0.01em;
  transition: transform 200ms, background 200ms, color 200ms, border-color 200ms;
}
.btn--primary { background: var(--terra); color: #fff8ec; }
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--invert { background: var(--bg); color: var(--ink); }
.btn--invert:hover { background: var(--terra); color: var(--bg); }
.btn__arrow { transition: transform 220ms; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 15px; padding: 6px 0; border-bottom: 1px solid var(--ink);
  transition: gap 220ms, color 220ms;
}
.link-arrow:hover { gap: 14px; color: var(--terra); border-color: var(--terra); }

/* ============== PHOTO PLACEHOLDER ============== */
.photo-ph {
  position: relative; width: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; border-radius: 2px;
}
.photo-ph__inner {
  padding: 18px; display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
}
.photo-ph__tag {
  font-size: 10px; letter-spacing: 0.18em; opacity: 0.7;
}
.photo-ph__label {
  font-size: 13px; letter-spacing: 0.01em; max-width: 280px; line-height: 1.3;
}
.photo-ph__year {
  font-size: 11px; opacity: 0.6;
}

/* ============== HERO ============== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: block;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero__photo .hero__ph,
.hero__photo .photo-ph { width: 100%; height: 100%; border-radius: 0; }
/* Single organic scrim — darker on the lower-left where the text sits,
   fading naturally everywhere else so the photo reads as one image. */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 78% 95% at 22% 72%, rgba(20,14,10,0.82) 0%, rgba(20,14,10,0.55) 32%, rgba(20,14,10,0.18) 60%, rgba(20,14,10,0) 82%),
    linear-gradient(180deg, rgba(20,14,10,0.4) 0%, rgba(20,14,10,0) 28%, rgba(20,14,10,0) 62%, rgba(20,14,10,0.32) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  min-height: 100vh; min-height: 100svh;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px var(--pad-x) 120px;
  color: var(--bg);
}
.hero__content > * { max-width: 56ch; }
.hero__content .eyebrow { color: var(--bg); opacity: 0.88; }
@media (max-width: 900px) {
  /* Mobile: stack photo above text. Photo fills upper ~55vh, text sits on a warm dark band below
     with a soft gradient bleeding photo into content so they feel like one continuous frame. */
  .hero {
    min-height: 0; max-height: none;
    height: auto;
    display: block;
    overflow: hidden;
    background: var(--ink);
  }
  .hero__photo {
    position: relative;
    width: 100%;
    height: 56vh;
    z-index: 0;
  }
  .hero__photo .hero__ph,
  .hero__photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 70% 18% !important;
  }
  .hero__overlay {
    position: absolute; inset: auto 0 -1px 0; top: auto; height: 32%;
    z-index: 1; pointer-events: none;
    background: linear-gradient(180deg,
      rgba(20,14,10,0) 0%,
      rgba(20,14,10,0.45) 55%,
      rgba(20,14,10,0.95) 100%);
  }
  .hero__content {
    position: relative; z-index: 2;
    background: var(--ink); color: var(--bg);
    padding: 32px var(--pad-x) 56px;
    min-height: 0; max-height: none;
    justify-content: flex-start;
    margin-top: -2px;
  }
  .hero__content > * { max-width: 100% !important; }
  .hero__content .eyebrow { font-size: 10px; letter-spacing: 0.14em; }
  .hero__quote {
    font-size: clamp(26px, 6.4vw, 36px) !important;
    line-height: 1.2 !important;
    margin: 14px 0 8px !important;
  }
  .hero__attr { font-size: 11px; margin-bottom: 18px; }
  .hero__sub { font-size: 14px; line-height: 1.55; margin-bottom: 24px; }
  .hero__ctas { gap: 10px; flex-wrap: wrap; }
  .hero__ctas .btn { padding: 12px 20px; font-size: 13px; }
  .hero__scroll { display: none !important; }
}
.hero__quote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.08; letter-spacing: -0.01em;
  margin: 24px 0 12px;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--bg);
}
.hero__quote-mark { color: var(--tan); font-style: italic; padding-right: 2px; }
.hero__quote-mark--end { padding-left: 2px; padding-right: 0; }
.hero__attr {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--tan); margin-bottom: 28px;
}
.hero__sub {
  font-size: 18px; max-width: 52ch; opacity: 0.86; margin-bottom: 36px;
  text-wrap: pretty;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__ctas .btn--ghost { color: var(--bg); border-color: rgba(255,255,255,0.3); }
.hero__ctas .btn--ghost:hover { border-color: var(--bg); }

.hero__scroll {
  position: absolute; right: var(--pad-x); bottom: 36px; z-index: 2;
  color: var(--bg); opacity: 0.7;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block; width: 60px; height: 1px; background: currentColor;
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: var(--bg);
  animation: scrollLine 2.4s linear infinite;
}
@keyframes scrollLine {
  0% { left: -30%; } 100% { left: 100%; }
}

/* ============== STATS BAND ============== */
.stats-band {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 80px var(--pad-x);
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.stats-band__item { display: flex; flex-direction: column; gap: 6px; }
.stats-band__num { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--terra); }
.stats-band__label { font-size: 15px; font-weight: 500; }
.stats-band__sub { font-size: 12px; color: var(--ink-soft); font-family: var(--font-mono); letter-spacing: 0.04em; }
@media (max-width: 800px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding: 56px var(--pad-x); }
  .stats-band__num { font-size: 48px; }
}

/* ============== SPLIT SECTIONS ============== */
.split {
  max-width: var(--maxw); margin: 0 auto;
  padding: 100px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.01em;
  margin: 18px 0 20px;
  text-wrap: balance;
}
.split__body { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; max-width: 50ch; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; padding: 64px var(--pad-x); }
  .split--flip .split__media { order: 0; }
}

/* ============== MARQUEE ============== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 22px 0;
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--tan) 30%, var(--bg-deep)) 0%, var(--bg-deep) 50%, color-mix(in oklab, var(--olive) 18%, var(--bg-deep)) 100%);
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 32s linear infinite;
  white-space: nowrap; will-change: transform;
}
.marquee__item {
  font-family: var(--font-display); font-size: 28px;
  display: inline-flex; gap: 56px; align-items: center; color: var(--ink);
}
.marquee__star { color: var(--terra); font-size: 14px; }
@keyframes marquee {
  0% { transform: translateX(0); } 100% { transform: translateX(-33.33%); }
}

/* ============== CTA STRIP ============== */
.cta-strip {
  max-width: var(--maxw); margin: 0 auto;
  padding: 100px var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-strip__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15; max-width: 24ch; margin: 0 auto 32px;
  text-wrap: balance;
}

/* ============== PAGE HERO (inner pages) ============== */
.page-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 160px var(--pad-x) 60px;
  display: flex; flex-direction: column; gap: 18px;
  border-bottom: 1px solid var(--line);
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 1.02; letter-spacing: -0.012em;
  margin: 8px 0 0; max-width: 22ch;
  text-wrap: balance;
}
.page-hero__title--zh { font-family: var(--font-display); }
.page-hero__lead { font-size: 19px; color: var(--ink-soft); max-width: 60ch; margin: 0; padding-bottom: 28px; }

.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08; letter-spacing: -0.01em;
  margin: 14px 0 36px;
  max-width: 22ch;
}

/* ============== ABOUT ============== */
.about-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px;
  align-items: start;
}
.about-grid__bio { display: flex; flex-direction: column; gap: 18px; }
.about-grid__p { font-size: 18px; color: var(--ink); margin: 0; text-wrap: pretty; }
.about-grid__p:first-of-type { font-size: 22px; font-family: var(--font-display); line-height: 1.35; color: var(--ink); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px var(--pad-x); }
}

.timeline {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  border-top: 1px solid var(--line);
}
.timeline__list { margin-top: 24px; }
.timeline__row {
  display: grid; grid-template-columns: 100px 24px 1fr; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line);
  gap: 12px;
}
.timeline__row:last-child { border-bottom: 1px solid var(--line); }
.timeline__year { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.timeline__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); justify-self: start; }
.timeline__text { font-size: 17px; }
.timeline__row:hover .timeline__dot { background: var(--olive); transform: scale(1.4); transition: 220ms; }

.two-col {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  border-top: 1px solid var(--line);
}
.two-col--wide { gap: 100px; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 56px; padding: 48px var(--pad-x); }
}

.cv__row {
  display: grid; grid-template-columns: 110px 1fr;
  padding: 18px 0; border-top: 1px solid var(--line); gap: 16px;
}
.cv__row:last-child { border-bottom: 1px solid var(--line); }
.cv__period { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); padding-top: 4px; }
.cv__title { font-size: 17px; font-weight: 500; }
.cv__detail { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.cv__role { font-size: 13px; color: var(--terra); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ============== PARALYMPIAN ============== */
.results {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
}
.results__table {
  width: 100%; border-collapse: collapse; margin-top: 24px;
  font-size: 16px;
}
.results__table th {
  text-align: left; font-weight: 500; font-size: 12px;
  font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 12px 16px 12px 0; border-bottom: 1px solid var(--ink);
}
.results__table td {
  padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.results__row:hover td { background: var(--bg-deep); }
.results__year { font-family: var(--font-mono); color: var(--terra); }
.results__event { font-weight: 500; }
.results__venue { color: var(--ink-soft); }
.results__result { font-family: var(--font-display); font-size: 18px; }

.rank-list__row, .award-list__row {
  display: grid; grid-template-columns: 70px 1fr auto;
  padding: 14px 0; border-top: 1px solid var(--line); gap: 16px;
  align-items: center;
}
.rank-list__row:last-child, .award-list__row:last-child { border-bottom: 1px solid var(--line); }
.rank-list__year, .award-list__year { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.rank-list__note, .award-list__name { font-size: 16px; }
.rank-list__link a { font-size: 13px; color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 1px; }
.rank-list__current { font-family: var(--font-mono); font-size: 11px; padding: 2px 8px; background: var(--olive); color: var(--bg); border-radius: 999px; letter-spacing: 0.06em; }

.gallery-strip {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  border-top: 1px solid var(--line);
}
.gallery-strip--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============== SPEAKER ============== */
.speaker-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 160px var(--pad-x) 80px;
  display: grid; grid-template-columns: 6fr 5fr; gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.speaker-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.04; letter-spacing: -0.01em;
  margin: 14px 0 18px; max-width: 18ch; text-wrap: balance;
}
.speaker-hero__lead { font-size: 18px; color: var(--ink-soft); max-width: 50ch; margin-bottom: 32px; }
.speaker-hero__ctas { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
@media (max-width: 900px) {
  .speaker-hero { grid-template-columns: 1fr; padding: 120px var(--pad-x) 56px; gap: 32px; }
}

.topics {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
}
.topics__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.topics__card {
  background: var(--bg-deep);
  padding: 32px 28px; border-radius: 4px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; min-height: 280px;
  transition: transform 280ms, background 280ms;
}
.topics__card:hover { transform: translateY(-4px); background: color-mix(in oklab, var(--bg-deep) 80%, var(--tan)); }
.topics__num { font-family: var(--font-mono); font-size: 11px; color: var(--terra); letter-spacing: 0.14em; }
.topics__zh { font-family: var(--font-display); font-size: 30px; line-height: 1.1; }
.topics__en { font-size: 13px; color: var(--ink-soft); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.topics__desc { font-size: 15px; color: var(--ink); margin: 8px 0 0; text-wrap: pretty; }
@media (max-width: 900px) { .topics__grid { grid-template-columns: 1fr; } }

.audiences {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  border-top: 1px solid var(--line);
}
.audiences__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-top: 32px;
}
.audiences__type {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--ink);
}
.audiences__col li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
@media (max-width: 800px) { .audiences__grid { grid-template-columns: 1fr; gap: 32px; } }

.formats {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  border-top: 1px solid var(--line);
}
.formats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 24px;
}
.formats__card {
  padding: 28px 24px; border: 1px solid var(--line); border-radius: 4px;
  display: flex; flex-direction: column; gap: 6px; min-height: 160px;
  transition: border-color 220ms, background 220ms;
}
.formats__card:hover { border-color: var(--ink); background: var(--bg-deep); }
.formats__dur { font-family: var(--font-body); font-size: 12px; color: var(--terra); letter-spacing: 0.06em; font-weight: 500; text-transform: uppercase; }
.formats__name { font-family: var(--font-body); font-size: 20px; line-height: 1.25; font-weight: 600; letter-spacing: -0.005em; }
.formats__note { font-size: 14px; color: var(--ink-soft); margin-top: auto; line-height: 1.5; }
@media (max-width: 900px) { .formats__grid { grid-template-columns: repeat(2, 1fr); } }

.speaker-cta {
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in oklab, var(--tan) 70%, transparent) 0%, transparent 55%),
    radial-gradient(100% 100% at 100% 100%, color-mix(in oklab, var(--olive) 55%, transparent) 0%, transparent 60%),
    var(--terra);
  color: #fff8ec;
  padding: 100px var(--pad-x);
  margin-top: 0;
}
.speaker-cta__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.speaker-cta .eyebrow { color: var(--tan); }
.speaker-cta__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05; max-width: 22ch; margin: 0;
  text-wrap: balance;
}
.speaker-cta__sub { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 50ch; margin: 0 0 16px; }

/* ============== MEDIA ============== */
.tabs {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px var(--pad-x) 0;
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line);
}
.tabs__btn {
  padding: 14px 22px; font-size: 15px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: var(--ink-soft); transition: color 200ms, border-color 200ms;
}
.tabs__btn--active { color: var(--ink); border-bottom-color: var(--terra); }

.photo-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px var(--pad-x) 100px;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.photo-grid__cell:nth-child(1) { grid-column: span 7; }
.photo-grid__cell:nth-child(2) { grid-column: span 5; }
.photo-grid__cell:nth-child(3) { grid-column: span 4; }
.photo-grid__cell:nth-child(4) { grid-column: span 4; }
.photo-grid__cell:nth-child(5) { grid-column: span 4; }
.photo-grid__cell:nth-child(6) { grid-column: span 12; }
@media (max-width: 800px) {
  .photo-grid__cell { grid-column: span 12 !important; }
}

.press-list, .news-list {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px var(--pad-x) 100px;
}
.press-list__row {
  display: grid; grid-template-columns: 70px 200px 1fr 24px;
  align-items: center; gap: 16px;
  padding: 22px 0; border-top: 1px solid var(--line);
  cursor: pointer; transition: padding 220ms, color 220ms;
}
.press-list__row:last-child { border-bottom: 1px solid var(--line); }
.press-list__row:hover { padding-left: 12px; color: var(--terra); }
.press-list__year { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.press-list__source { font-size: 14px; color: var(--ink-soft); }
.press-list__title { font-family: var(--font-display); font-size: 22px; }
.press-list__arrow { text-align: right; opacity: 0.5; }

.news-list__row {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 24px; padding: 22px 0; border-top: 1px solid var(--line);
}
.news-list__row:last-child { border-bottom: 1px solid var(--line); }
.news-list__date { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.news-list__title { font-family: var(--font-display); font-size: 22px; }

/* ============== PDF MODAL ============== */
.pdf-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 14, 10, 0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: pdfFade 220ms ease-out;
}
@keyframes pdfFade { from { opacity: 0; } to { opacity: 1; } }
.pdf-modal__card {
  width: min(1100px, 100%); height: min(900px, 90vh);
  background: var(--bg);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.pdf-modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.pdf-modal__title { font-family: var(--font-display); font-size: 20px; line-height: 1.25; color: var(--ink); }
.pdf-modal__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.pdf-modal__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pdf-modal__btn {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--bg); background: var(--terra);
  padding: 8px 14px; border-radius: 999px; text-decoration: none; transition: 180ms;
}
.pdf-modal__btn:hover { background: var(--ink); }
.pdf-modal__close {
  font-size: 24px; line-height: 1; color: var(--ink-soft);
  background: transparent; border: 0; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
}
.pdf-modal__close:hover { background: var(--bg-deep); color: var(--ink); }
.pdf-modal__frame { flex: 1; min-height: 0; background: #fff; }
.pdf-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) {
  .pdf-modal { padding: 0; }
  .pdf-modal__card { height: 100vh; border-radius: 0; }
}

/* ============== PRESS TABLE ============== */
.press-table {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px var(--pad-x) 100px;
}
.press-table__toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.press-table__filter-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}
.press-table__years {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.press-table__year-btn {
  padding: 7px 14px; font-size: 13px;
  border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--ink-soft);
  transition: 180ms;
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.press-table__year-btn:hover { color: var(--ink); border-color: var(--ink); }
.press-table__year-btn--active {
  background: var(--terra); color: #fff8ec; border-color: var(--terra);
}
.press-table__year-btn--active:hover { color: #fff8ec; border-color: var(--terra); }
.press-table__table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.press-table__table th {
  text-align: left; font-weight: 500; font-size: 11px;
  font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); padding: 12px 16px 12px 0; border-bottom: 1px solid var(--ink);
}
.press-table__row td {
  padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line);
  vertical-align: top; line-height: 1.45;
}
.press-table__date { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); white-space: nowrap; }
.press-table__source { color: var(--ink-soft); }
.press-table__title { color: var(--ink); }
.press-table__file-link {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--terra); border: 0; background: transparent;
  border-bottom: 1px solid var(--terra);
  padding: 0 0 1px 0; letter-spacing: 0.04em; text-transform: uppercase;
  transition: 180ms;
  cursor: pointer;
}
.press-table__file-link:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 700px) {
  .press-table__table thead { display: none; }
  .press-table__row td { display: block; padding: 4px 0; border: 0; }
  .press-table__row { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
}

/* ============== BLOGGER ============== */
.archive-notice {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px var(--pad-x) 0;
}
.archive-notice__inner {
  display: flex; gap: 14px; align-items: flex-start;
  background: color-mix(in oklab, var(--olive) 14%, var(--bg));
  border-left: 3px solid var(--olive);
  padding: 18px 22px;
  font-size: 15px;
}
.archive-notice__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--olive);
  margin-top: 8px; flex-shrink: 0;
}
.archive-notice p { margin: 0; }

.posts {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px var(--pad-x) 100px;
}
.posts__row {
  display: grid; grid-template-columns: 160px 1fr 160px;
  gap: 24px; align-items: baseline;
  padding: 24px 0; border-top: 1px solid var(--line);
  transition: padding 220ms;
}
.posts__row:last-child { border-bottom: 1px solid var(--line); }
.posts__row:hover { padding-left: 12px; }
.posts__date { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.posts__title { font-family: var(--font-display); font-size: 24px; line-height: 1.2; }
.posts__area { font-family: var(--font-mono); font-size: 12px; color: var(--terra); text-align: right; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 700px) {
  .posts__row { grid-template-columns: 1fr; gap: 6px; }
  .posts__area { text-align: left; }
}

/* Love Inclusion page */
.incl-hero-photo { padding: 8px var(--pad-x) 56px; }
.incl-hero-photo image-slot { display: block; width: 100%; height: 460px; }
.incl-mission { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; padding: 24px var(--pad-x) 80px; align-items: start; }
.incl-mission__photo image-slot,
.incl-mission__photo figure { display: block; width: 100%; height: 380px; margin: 0; }
.incl-mission__photo figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.incl-pillars { gap: 28px; }
.incl-pillar { display: flex; flex-direction: column; gap: 14px; }
.incl-pillar__photo image-slot,
.incl-pillar__photo .incl-pillar__figure { display: block; width: 100%; height: 200px; }
.incl-pillar__cta { font-family: var(--font-mono); font-size: 13px; color: var(--terra); letter-spacing: 0.04em; text-transform: uppercase; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); display: inline-block; }
.incl-pillar__cta:hover { color: var(--ink); }
.incl-team { padding: 56px var(--pad-x) 80px; }
.incl-team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.incl-team__card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.incl-team__photo image-slot,
.incl-team__photo .incl-team__figure { display: block; width: 220px; height: 260px; }
.incl-team__meta .cv__period { margin-bottom: 6px; }
.incl-team__meta .cv__title { font-size: 24px; margin-bottom: 8px; }
.incl-gallery-section { padding: 24px var(--pad-x) 80px; }
.incl-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.incl-gallery__photo image-slot { display: block; width: 100%; height: 220px; }
.incl-gallery__caption { font-family: var(--font-mono); font-size: 12px; line-height: 1.4; color: var(--ink-soft); margin-top: 10px; letter-spacing: 0.02em; }
.incl-cta { padding: 80px var(--pad-x) 80px; background: color-mix(in oklab, var(--terra) 8%, var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.incl-cta__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.incl-cta__card { display: block; padding: 22px 22px; border: 1px solid var(--line); background: var(--bg); border-radius: 10px; transition: transform 220ms, border-color 220ms, background 220ms; text-decoration: none; color: inherit; }
.incl-cta__card:hover { transform: translateY(-3px); border-color: var(--terra); background: color-mix(in oklab, var(--terra) 6%, var(--bg)); }
.incl-cta__label { font-family: var(--font-display); font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.incl-cta__note { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 900px) {
  .incl-mission { grid-template-columns: 1fr; gap: 32px; }
  .incl-team__grid { grid-template-columns: 1fr; }
  .incl-team__card { grid-template-columns: 140px 1fr; gap: 18px; }
  .incl-team__photo image-slot,
  .incl-team__photo .incl-team__figure { width: 140px; height: 170px; }
  .incl-hero-photo image-slot { height: 280px; }
  .incl-mission__photo image-slot { height: 240px; }
}

/* ============== CONTACT ============== */
/* Hero band (soft warm cream, not dark) */
.contact-hero {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  color: var(--ink);
  padding: 160px var(--pad-x) 80px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.contact-hero__inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.contact-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 5.4vw, 80px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0; max-width: 18ch; text-wrap: balance; color: var(--ink);
}
.contact-hero__sub { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 56ch; text-wrap: pretty; }

/* Pills */
.contact-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--terra);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra); background: transparent;
}
.contact-pill--ghost { background: transparent; }

/* WhatsApp/Email card section */
.contact-email-section { background: var(--bg); padding: 56px var(--pad-x); }
.contact-email-section__inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.contact-email-card {
  width: 100%; max-width: 640px;
  background: var(--bg-deep); color: var(--ink);
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px; border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: 180ms;
}
.contact-email-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.contact-email-card__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px;
  background: var(--bg); display: grid; place-items: center;
  color: var(--terra); font-size: 20px;
}
.contact-email-card__text { flex: 1; min-width: 0; }
.contact-email-card__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.contact-email-card__address { color: var(--terra); font-size: 17px; font-weight: 500; word-break: break-all; }
.contact-email-card__copy {
  flex-shrink: 0; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--terra); color: var(--terra); background: transparent;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* Form section (soft band) */
.contact-form-section {
  background: var(--bg);
  padding: 80px var(--pad-x) 120px;
}
.contact-form-section__head {
  max-width: 760px; margin: 0 auto 48px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.contact-form-section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1; margin: 0;
}
.contact-form-section__sub { font-size: 16px; color: var(--ink-soft); margin: 0; max-width: 52ch; line-height: 1.6; }
.contact-form-section__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start;
}
@media (max-width: 900px) {
  .contact-form-section__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Left — contact box card */
.contact-form-card {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
}
.contact-form-card__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.15;
  margin: 0 0 14px;
}
.contact-form-card__body { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 24px; max-width: 50ch; }
.contact-form-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right — info list */
.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-side__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-side__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-side__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg-deep); color: var(--terra);
  display: grid; place-items: center; font-size: 16px;
}
.contact-side__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-side__v { font-size: 15px; color: var(--ink); }
a.contact-side__v:hover { color: var(--terra); }
.contact-side__follow { padding-top: 8px; }
.contact-side__follow-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.contact-side__follow-icons { display: flex; gap: 10px; }
.contact-side__follow-btn {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-deep); color: var(--ink);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-decoration: none; transition: 180ms;
}
.contact-side__follow-btn:hover { background: var(--terra); color: var(--bg); }

/* Hide legacy contact styles */
.meta-list, .meta-card, .contact-grid { display: none; }

/* ============== FOOTER ============== */

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field--full { grid-column: 1 / -1; }
.form__field span {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: 16px;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; color: var(--ink); transition: border-color 200ms;
  border-radius: 0;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: 0; border-bottom-color: var(--terra);
}
.form__field textarea { resize: vertical; }
.form__submit { grid-column: 1 / -1; padding-top: 12px; }
.form-sent {
  padding: 60px 40px; text-align: center;
  border: 1px dashed var(--olive); border-radius: 4px;
}
.form-sent__check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--olive); color: var(--bg);
  font-size: 28px; display: grid; place-items: center; margin: 0 auto 16px;
}

.meta-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.meta-list li:last-child { border-bottom: 1px solid var(--line); }
.meta-list__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.meta-list__v { font-size: 16px; }
.meta-card {
  margin-top: 32px; padding: 28px;
  background: var(--bg-deep); border-radius: 4px;
}
.meta-card__quote { font-family: var(--font-display); font-size: 22px; line-height: 1.35; }
.meta-card__attr { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-top: 14px; letter-spacing: 0.06em; }

.contact-form-embed { width: 100%; }
.contact-form-embed iframe { display: block; width: 100%; height: 900px; border: 0; border-radius: 6px; background: var(--bg); }
.contact-form-embed__fallback { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin: 12px 0 0; text-align: right; }
.contact-form-embed__fallback a { color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 1px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-deep);
  color: var(--ink);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.footer__link { color: var(--ink-soft) !important; }
.footer__link:hover { color: var(--terra) !important; }
.footer__col-h { color: var(--terra) !important; }
.footer__bottom { border-top-color: var(--line) !important; color: var(--ink-soft) !important; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
}
.footer__name { font-family: var(--font-display); font-size: 48px; line-height: 1; display: flex; flex-direction: column; gap: 8px; }
.footer__name-zh { font-size: 32px; opacity: 0.7; }
.footer__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-top: 18px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); margin-bottom: 8px; }
.footer__link { text-align: left; font-size: 15px; color: rgba(255,255,255,0.7); transition: color 200ms; }
.footer__link:hover { color: var(--bg); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding: 56px var(--pad-x); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============== INK PALETTE OVERRIDES ============== */
[data-palette="ink"] .nav--scrolled { background: color-mix(in oklab, var(--bg) 88%, transparent); }
[data-palette="ink"] .photo-ph { /* tones intentionally remain */ }
[data-palette="ink"] .speaker-cta { background: var(--bg-deep); }

/* ============== SCROLL PADDING ============== */
html { scroll-behavior: smooth; }
