/* ============================================================
   LIT TLP — Pickleball Club
   Design system inherits from LIT Sports Global:
   navy #0A1428, warm cream #F8F5EE, ember #E07A2C, gold #C69E50
   Display: Cormorant Garamond. Body: Inter.
============================================================ */

:root{
  --navy: #0A1428;
  --navy-2: #131F3A;
  --paper: #F8F5EE;
  --paper-2: #EFE9DC;
  --ink: #0A1428;
  --ink-65: rgba(10,20,40,.65);
  --ink-45: rgba(10,20,40,.45);
  --ember: #E07A2C;
  --ember-deep: #B8551A;
  --gold: #C69E50;
  --hairline: rgba(10,20,40,.12);
  --hairline-light: rgba(248,245,238,.15);
  --hairline-light-strong: rgba(248,245,238,.30);
  --font-display: "Cormorant Garamond", "Source Han Serif TC", "Noto Serif TC", "Songti TC", serif;
  --font-sans: "Inter", "PingFang HK", "Noto Sans TC", -apple-system, system-ui, sans-serif;
  --maxw: 1240px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }

/* Bilingual visibility — strict separation */
html[data-lang="en"] [data-zh]{ display:none !important; }
html[data-lang="zh"] [data-en]{ display:none !important; }

/* Container */
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px){ .container{ padding: 0 48px; } }
.container.narrow{ max-width: 820px; }

/* Page shells (hash-routed) */
.page[hidden]{ display: none !important; }

/* Sub-hero — used on all non-home pages */
.sub-hero{
  padding: 120px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.sub-hero.sub-hero-navy{
  background: var(--navy);
  color: var(--paper);
  border-bottom: 1px solid var(--hairline-light);
}
@media (min-width: 900px){ .sub-hero{ padding: 160px 0 88px; } }
.sub-hero-title{
  margin-bottom: 20px;
  max-width: 22ch;
  font-size: clamp(40px, 5.2vw, 72px);
}
.sub-hero-lede{
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-65);
  max-width: 60ch;
  margin: 0;
}
.sub-hero-lede.light{ color: rgba(248,245,238,.78); }
.section .lede{
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 28px;
}
.section.section-paper p + p{ margin-top: 0; }
.container.narrow p{
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-65);
  margin: 0 0 22px;
}
.container.narrow p:first-of-type{ color: var(--ink); font-size: 21px; line-height: 1.65; }

/* Home tiles */
.tiles{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
@media (min-width: 700px){ .tiles{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .tiles{ grid-template-columns: repeat(4, 1fr); } }
.tile{
  display: flex;
  gap: 20px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background .2s ease, transform .2s ease;
  align-items: flex-start;
}
.tile:hover{ background: var(--paper-2); }
.tile:hover .tile-cta{ color: var(--ember-deep); }
.tile-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ember);
  flex: 0 0 auto;
  line-height: 1;
  padding-top: 4px;
}
.tile-body{ flex: 1; }
.tile-body h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.tile-body p{
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-65);
  margin: 0 0 16px;
}
.tile-cta{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  transition: color .2s ease;
}

/* ============================================================
   NAV
============================================================ */
.nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(248,245,238,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: background-color .2s ease;
}
/* When the mobile menu is open, make the header fully opaque
   so the drawer reads as one solid paper surface, even on browsers
   that don't render backdrop-filter (e.g. some Safari/WebView cases). */
body.drawer-open .nav{
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
@media (min-width: 900px){ .nav-inner{ padding: 18px 48px; } }
.brand{
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark{ width: 36px; height: 36px; color: var(--ember); flex: 0 0 36px; }
.brand-wordmark{ display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark strong{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.brand-wordmark em{
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-65);
  margin-top: 4px;
}
.nav-links{
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px){ .nav-links{ display: flex; } }
.nav-links a{
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--ink-65);
  transition: color .2s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover{ color: var(--ember); }
.nav-links a.is-active{
  color: var(--ink);
  border-bottom-color: var(--ember);
}
.nav-tools{ display: flex; align-items: center; gap: 12px; position: relative; z-index: 70; }

/* mobile burger */
.nav-menu-btn{
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 36px;
  background: transparent; border: 1px solid var(--ink);
  cursor: pointer;
  padding: 0 8px;
  position: relative;
  z-index: 70;
}
.nav-menu-btn span{
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-menu-btn.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.is-open span:nth-child(2){ opacity: 0; }
.nav-menu-btn.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px){ .nav-menu-btn{ display: none; } }

/* Mobile fullscreen drawer
   - Solid paper background (no backdrop-filter, no translucency)
   - Visibility-toggled via class only (no transition-race)
   - Sits ABOVE the sticky header (z 65) so the whole viewport is paper */
.nav-drawer{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #F8F5EE;
  background-color: var(--paper);
  padding: 88px 28px 32px;
  display: none;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  z-index: 65;
  will-change: opacity;
  transition: opacity .25s ease;
}
.nav-drawer.is-open{
  display: flex;
  opacity: 1;
}
.nav-drawer a{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
  color: var(--ink);
  padding: 18px 4px;
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, color .2s ease;
}
.nav-drawer.is-open a{
  opacity: 1;
  transform: translateY(0);
}
.nav-drawer.is-open a:nth-child(1){ transition-delay: .08s; }
.nav-drawer.is-open a:nth-child(2){ transition-delay: .12s; }
.nav-drawer.is-open a:nth-child(3){ transition-delay: .16s; }
.nav-drawer.is-open a:nth-child(4){ transition-delay: .20s; }
.nav-drawer.is-open a:nth-child(5){ transition-delay: .24s; }
.nav-drawer.is-open a:nth-child(6){ transition-delay: .28s; }
.nav-drawer.is-open a:nth-child(7){ transition-delay: .32s; }
.nav-drawer.is-open a:nth-child(8){ transition-delay: .36s; }
.nav-drawer.is-open a:nth-child(9){ transition-delay: .40s; }
.nav-drawer a:active{ color: var(--ember); }
.nav-drawer a.is-active{
  color: var(--ember);
  border-bottom-color: var(--ember);
}
.nav-drawer-footer{
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-65);
}
.nav-drawer-footer a{
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 4px 0;
  border: none;
  color: var(--ink-65);
  opacity: 1;
  transform: none;
}
/* lock body scroll when drawer open */
body.drawer-open{ overflow: hidden; }
@media (min-width: 1024px){ .nav-drawer{ display: none; } }
.lang-toggle{
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 8px 14px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle:hover{ background: var(--ink); color: var(--paper); }

/* ============================================================
   HERO
============================================================ */
.hero{
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-media{
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,40,.50) 0%, rgba(10,20,40,.65) 55%, rgba(10,20,40,.92) 100%),
    linear-gradient(90deg, rgba(10,20,40,.6) 0%, rgba(10,20,40,.15) 60%);
}
.hero-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px 64px;
  position: relative;
}
@media (min-width: 900px){
  .hero-inner{ padding: 140px 48px 96px; }
}
.eyebrow{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 24px;
  font-weight: 500;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 14ch;
}
.hero-title em{
  font-style: italic;
  color: var(--ember);
  font-weight: 500;
}
.hero-lede{
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(248,245,238,.85);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-ctas{ display: flex; gap: 12px; flex-wrap: wrap; }
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--ember); color: var(--paper); }
.btn-primary:hover{ background: var(--ember-deep); }
.btn-ghost{
  background: transparent; color: var(--paper);
  border-color: var(--hairline-light-strong);
}
.btn-ghost:hover{ background: rgba(248,245,238,.08); border-color: var(--paper); }

.hero-scoreboard{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline-light);
  background: rgba(10,20,40,.55);
}
@media (min-width: 700px){ .hero-scoreboard{ grid-template-columns: repeat(3, 1fr); } }
.hero-scoreboard > div{
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--hairline-light);
  max-width: var(--maxw);
}
.hero-scoreboard > div:last-child{ border-right: none; }
@media (min-width: 900px){ .hero-scoreboard > div{ padding: 36px 48px; } }
.hero-scoreboard strong{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.hero-scoreboard strong span{ color: var(--ember); font-weight: 500; margin-left: 2px; }
.hero-scoreboard > div > span{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,245,238,.65);
  font-weight: 500;
}

/* ============================================================
   SECTIONS — generic
============================================================ */
.section{
  padding: 96px 0;
}
@media (min-width: 900px){ .section{ padding: 128px 0; } }
.section-paper{ background: var(--paper); color: var(--ink); }
.section-paper.alt{ background: var(--paper-2); }
.section-navy{ background: var(--navy); color: var(--paper); }
.kicker{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 20px;
  font-weight: 500;
}
.kicker.light{ color: var(--ember); }
.display{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  max-width: 22ch;
}
.display.light{ color: var(--paper); }

.two-col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px){
  .two-col{ grid-template-columns: 5fr 7fr; gap: 80px; }
}
.col-body p{
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
  color: var(--ink-65);
}
.col-body p:first-of-type{ color: var(--ink); font-size: 19px; line-height: 1.7; }
.col-body.light p{ color: rgba(248,245,238,.85); }
.col-body.light p:first-of-type{ color: var(--paper); }

/* ============================================================
   PILLARS
============================================================ */
.pillars{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 900px){ .pillars{ grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.pillars article{
  background: rgba(248,245,238,.04);
  border: 1px solid var(--hairline-light);
  padding: 36px 32px;
  transition: border-color .2s ease, background .2s ease;
}
.pillars article:hover{
  border-color: var(--hairline-light-strong);
  background: rgba(248,245,238,.06);
}
.pillars .num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ember);
  display: block;
  margin-bottom: 24px;
}
.pillars h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.pillars p{
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(248,245,238,.78);
  margin: 0;
}

/* ============================================================
   LEADERSHIP
============================================================ */
.leaders{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 700px){ .leaders{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .leaders{ grid-template-columns: repeat(3, 1fr); } }
.leader{
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  padding-right: 32px;
}
.leader:last-child{ border-bottom: 1px solid var(--hairline); }
.leader-role{
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
  font-weight: 500;
}
.leader-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.leader-alt{
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-65);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 8px;
}
.leader p{
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-65);
  margin: 0;
  max-width: 38ch;
}

/* ============================================================
   ATHLETES
============================================================ */
.athletes{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 900px){ .athletes{ grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.athlete{
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.athlete img{
  width: 100%; height: 360px; object-fit: cover;
}
.athlete-body{ padding: 32px; }
.athlete-body .tag{
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin: 0 0 12px;
}
.athlete-body h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.athlete-body p{
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-65);
  margin: 0 0 18px;
}
.bullets{
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--hairline);
}
.bullets li{
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  font-size: 14px;
  color: var(--ink-65);
  line-height: 1.55;
}
.bullets li::before{
  content:"";
  position:absolute; left: 0; top: 18px;
  width: 8px; height: 8px;
  background: var(--ember);
}
.bullets li:last-child{ border-bottom: none; }

/* ============================================================
   TOURNAMENTS (cards)
============================================================ */
.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 900px){ .cards{ grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.card{
  background: var(--paper);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card img{ width: 100%; height: 240px; object-fit: cover; }
.card-body{ padding: 28px; flex: 1; display: flex; flex-direction: column; }
.status{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ember);
}
.status.live{ color: var(--ember); }
.status.partner{ color: var(--gold); }
.status.regional{ color: var(--ink-65); }
.card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.card p{
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-65);
  margin: 0 0 20px;
}
.stat-row{
  list-style: none;
  padding: 0; margin: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}
.stat-row li{
  padding: 14px 0 0;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--hairline);
  padding-right: 8px;
}
.stat-row li:last-child{ border-right: none; padding-right: 0; }
.stat-row strong{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.stat-row span{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-65);
}

/* ============================================================
   COMMUNITY / PICKLEMIND
============================================================ */
.picklemind-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 700px){
  .picklemind-grid{ grid-template-columns: 2fr 1fr 1fr; }
}
.picklemind-grid img{
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 220px;
  border: 1px solid var(--hairline-light);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px){ .contact-grid{ grid-template-columns: 6fr 5fr; gap: 80px; } }
.contact-lede{
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-65);
  max-width: 50ch;
}
.contact-card{
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.contact-card > div{ display: flex; flex-direction: column; gap: 6px; }
.contact-card a{
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  border-bottom: 1px solid var(--ember);
  align-self: flex-start;
  transition: color .2s ease;
}
.contact-card a:hover{ color: var(--ember); }
.contact-label{
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
}

/* ============================================================
   PRESS LIST
============================================================ */
.press-list{
  display: flex;
  flex-direction: column;
}
.press-item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease;
}
.press-item:hover .press-headline{ color: var(--ember); }
.press-date{
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-45);
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.press-headline{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.press-arrow{
  font-size: 18px;
  color: var(--ink-45);
  flex: 0 0 auto;
}
@media (max-width: 600px){
  .press-item{ grid-template-columns: 1fr auto; }
  .press-date{ display: none; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer{
  background: var(--navy);
  color: var(--paper);
  padding: 72px 0 32px;
  border-top: 1px solid var(--hairline-light);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px){ .footer-inner{ grid-template-columns: 5fr 7fr; gap: 80px; } }
.brand-footer{ color: var(--paper); }
.brand-footer .brand-mark{ color: var(--ember); }
.brand-footer .brand-wordmark em{ color: rgba(248,245,238,.65); }
.footer-blurb{
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(248,245,238,.75);
  max-width: 42ch;
}
.footer-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 700px){ .footer-cols{ grid-template-columns: repeat(3, 1fr); } }
.footer-cols a, .footer-cols span{
  display: block;
  color: rgba(248,245,238,.85);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s ease;
}
.footer-cols a:hover{ color: var(--ember); }
.footer-label{
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-fineprint{
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  font-size: 12.5px;
  color: rgba(248,245,238,.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   Chinese typography refinement
============================================================ */
html[data-lang="zh"] body{ font-family: "PingFang HK", "Noto Sans TC", "Microsoft JhengHei", var(--font-sans); }
html[data-lang="zh"] .display,
html[data-lang="zh"] .hero-title,
html[data-lang="zh"] .leader-name,
html[data-lang="zh"] .pillars h3,
html[data-lang="zh"] .card h3,
html[data-lang="zh"] .athlete-body h3,
html[data-lang="zh"] .brand-wordmark strong{
  font-family: "Source Han Serif TC", "Noto Serif TC", "Songti TC", var(--font-display);
  letter-spacing: 0;
}
html[data-lang="zh"] .hero-title{ max-width: 16ch; }
html[data-lang="zh"] .eyebrow,
html[data-lang="zh"] .kicker,
html[data-lang="zh"] .leader-role,
html[data-lang="zh"] .contact-label,
html[data-lang="zh"] .footer-label,
html[data-lang="zh"] .hero-scoreboard > div > span,
html[data-lang="zh"] .stat-row span,
html[data-lang="zh"] .bullets li,
html[data-lang="zh"] .athlete-body .tag,
html[data-lang="zh"] .status,
html[data-lang="zh"] .brand-wordmark em{
  letter-spacing: 0.08em;
}
