/* ===========================================================
   ARAVEST — Dark cinematic institutional design system
   =========================================================== */

/* Fonts are loaded per page via <link rel="preconnect"/"stylesheet"> in each
   document head, so each language only fetches the families it needs (Latin on
   English pages; Latin + the relevant Noto CJK family on localized pages).
   Replaces the previous chained @import that pulled every CJK family on every
   page. Weights/styles are unchanged. */

:root {
  /* Surfaces — deep brand navy (#0E2841) family */
  --bg:        #070A11;
  --bg-1:      #0A0E18;
  --bg-2:      #0E1422;
  --panel:     #0E2841;        /* brand navy */
  --navy:      #0E2841;
  --line:      rgba(173,190,210,0.10);
  --line-2:    rgba(173,190,210,0.18);

  /* Ink */
  --fg:        #EEF1F6;
  --fg-soft:   #B9C3D0;
  --fg-mute:   #8E9BAC;
  --fg-faint:  #8693A4;

  /* Accent — brand silver-steel (silver = excellence, blue = trust) */
  --accent:    oklch(0.79 0.062 244);
  --accent-dim:oklch(0.64 0.06 244);
  --accent-ink:oklch(0.30 0.05 240);
  --silver:    #93A2AF;        /* wordmark silver */
  --accent-text: #869397;     /* accent applied to text/fonts */

  /* Type */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --gut: clamp(20px, 5vw, 96px);
  --maxw: 1320px;
  --r: 3px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================================================
   Light theme — warm off-white institutional (private-bank)
   Base #F4F1EA · panels one shade lighter #FBFAF8 ·
   deep-navy ink · gold reserved for fine details only.
   =========================================================== */
:root[data-theme="light"] {
  /* Surfaces — warm off-white. --bg is the PANEL/card tone (a shade
     lighter); body is overridden to the warm base (--bg-1) below, so
     cards lift off the page through tone rather than shadow. */
  --bg:        #FBFAF8;        /* cards & panels — one shade lighter */
  --bg-1:      #F4F1EA;        /* warm off-white base — page & bands */
  --bg-2:      #EFEADF;        /* hover / inset cells */
  --panel:     #0E2841;
  --navy:      #0E2841;

  /* Fine navy hairlines */
  --line:      rgba(14,40,65,0.085);
  --line-2:    rgba(14,40,65,0.15);

  /* Ink — deep navy family, never black */
  --fg:        #122B45;        /* deep navy — body & headings */
  --fg-soft:   #36475C;
  --fg-mute:   #5E6B7B;
  --fg-faint:  #646F7D;

  /* Single corporate-grey accent system — no gold in light mode.
     fine details (dots, divider rules, eyebrow ticks, selection) + words/links
     all draw from the corporate grey #869397 */
  --accent:     #869397;                /* fills: dots, rules, selection */
  --accent-dim: #A4ADB1;                /* hairline divider rules / eyebrow ticks */
  --accent-ink: #5C676C;
  --silver:     #93A2AF;                /* decorative serif initials */
  /* Text accent is a deeper shade of the same corporate grey: #869397 was
     only ~2.8:1 on the off-white base (failed WCAG); #5C676C is ~5:1 (AA)
     while keeping the muted slate character. Decorative --accent stays light. */
  --accent-text:#5C676C;                /* accent words, labels, links */
}

/* Page sits on the warm base; panels/cards keep the lighter --bg */
:root[data-theme="light"] body { background: var(--bg-1); }

:root[data-theme="light"] ::selection { background: var(--accent); color: #fff; }

/* Outline button — navy hairline, gold on hover */
:root[data-theme="light"] .btn { color: var(--fg); border-color: var(--line-2); }
:root[data-theme="light"] .btn:hover { border-color: var(--accent-text); color: var(--accent-text); }
/* Primary button = navy block (gold is never a large fill).
   Uses .btn.btn--solid so the light text wins over the .btn rule above
   (equal specificity would otherwise let .btn's navy ink hide the label). */
:root[data-theme="light"] .btn.btn--solid { background: var(--navy); border-color: var(--navy); color: #FBFAF8; }
:root[data-theme="light"] .btn.btn--solid:hover { background: #1B3C5C; border-color: #1B3C5C; color: #FBFAF8; }
:root[data-theme="light"] .btn.btn--solid:hover .arr { transform: translateX(4px); }

/* Nav — warm, opaque; hairline base rule */
:root[data-theme="light"] .nav { background: rgba(244,241,234,0.9); border-bottom-color: var(--line-2); }
:root[data-theme="light"] .nav.scrolled { background: rgba(244,241,234,0.82); }
:root[data-theme="light"] .nav[style] { background: var(--bg-1) !important; }

/* CTA glow — barely-there cool-grey wash, not a color block */
:root[data-theme="light"] .cta__glow { background: radial-gradient(circle, rgba(134,147,151,0.12), transparent 64%); }

/* Cards / hover / overlays */
:root[data-theme="light"] .snapshot__panel { background: var(--bg); border-color: var(--line-2); }
:root[data-theme="light"] .footer { background: var(--bg-1); }
:root[data-theme="light"] .bpop, :root[data-theme="light"] .blight__card { background: var(--bg); border-color: var(--line-2); box-shadow: 0 24px 60px rgba(18,43,69,0.18); }
:root[data-theme="light"] .bpop__media, :root[data-theme="light"] .blight__media { background: var(--bg-2); }
:root[data-theme="light"] .ph-fill { color: var(--fg-mute); background-image: repeating-linear-gradient(135deg, #EFEADF 0 11px, #F4F1EA 11px 22px); }
:root[data-theme="light"] .blight { background: rgba(18,32,51,.45); }
:root[data-theme="light"] .blight__close { background: rgba(251,250,248,.78); border-color: var(--line-2); }
:root[data-theme="light"] .blight__close:hover { background: rgba(251,250,248,.96); border-color: var(--accent-text); }
@media (max-width: 880px){
  :root[data-theme="light"] .nav__links { background: rgba(244,241,234,0.98); }
}

/* ----- Hero & page-hero: airy in light mode (navy ink on brightened imagery) ----- */
:root[data-theme="light"] .hero,
:root[data-theme="light"] .phero {
  --fg:        #122B45;
  --fg-soft:   #36475C;
  --fg-mute:   #5E6B7B;
  --fg-faint:  #97A0AB;
  --accent:     #869397;
  --accent-dim: #A4ADB1;
  --accent-text:#5C676C;
  --line:      rgba(14,40,65,0.14);
  --line-2:    rgba(14,40,65,0.2);
}
/* Brighten the hero cityscapes so they read as light, airy imagery */
:root[data-theme="light"] .hero__layer { background: linear-gradient(115deg, #ECE7DC, #F4F1EA 45%, #E7E1D4); }
/* Light-mode imagery WITH DEPTH: more contrast + saturation and a touch less
   brightness, so the cityscape reads as a real photo rather than a washed-out
   pale backdrop — while staying light enough behind the navy headline. */
:root[data-theme="light"] .hero__layer img,
:root[data-theme="light"] .hero__layer video { filter: brightness(0.95) contrast(1.15) saturate(1.07); }
/* Lighter wash up top so the richer image shows through; the bottom + left keep
   their warm fade so the hero still melts into the page behind the navy text. */
:root[data-theme="light"] .hero__tint {
  background:
    linear-gradient(180deg, rgba(244,241,234,0.10) 0%, rgba(244,241,234,0.02) 34%, rgba(244,241,234,0.45) 66%, rgba(244,241,234,0.99) 100%),
    linear-gradient(90deg, rgba(244,241,234,0.46) 0%, rgba(244,241,234,0.05) 46%, rgba(244,241,234,0) 72%);
}
:root[data-theme="light"] .hero__scrim {
  background: linear-gradient(180deg, rgba(244,241,234,0) 50%, rgba(244,241,234,0.5) 80%, rgba(244,241,234,1) 100%);
}
:root[data-theme="light"] .hero__tag { text-shadow: 0 1px 30px rgba(244,241,234,0.9), 0 1px 2px rgba(244,241,234,0.7); }
/* Kicker sits over busy imagery — navy ink + light halo so it stays legible */
:root[data-theme="light"] .hero__eyebrow {
  color: var(--fg);
  text-shadow: 0 1px 1px rgba(244,241,234,0.95), 0 0 14px rgba(244,241,234,0.9), 0 0 28px rgba(244,241,234,0.7);
}
:root[data-theme="light"] .hero__eyebrow::before { background: var(--fg); opacity: 0.65; }
:root[data-theme="light"] .hero__city .dot { border-color: var(--fg-faint); }
:root[data-theme="light"] .hero__chevrons span { border-right-color: var(--fg-faint); border-bottom-color: var(--fg-faint); }
/* Page-hero placeholder becomes a soft warm panel */
:root[data-theme="light"] .phero__ph { background: linear-gradient(120deg, #ECE7DC 0%, #F4F1EA 46%, #E6E0D2 100%); }
:root[data-theme="light"] .phero__img { filter: brightness(0.95) contrast(1.15) saturate(1.07); }
:root[data-theme="light"] .phero__scrim {
  background:
    linear-gradient(180deg, rgba(244,241,234,0.28) 0%, rgba(244,241,234,0.04) 30%, rgba(244,241,234,0.5) 68%, rgba(244,241,234,1) 100%),
    linear-gradient(90deg, rgba(244,241,234,0.92) 0%, rgba(244,241,234,0.78) 30%, rgba(244,241,234,0.42) 52%, rgba(244,241,234,0.08) 72%, rgba(244,241,234,0) 86%);
}
/* Title/sub/eyebrow sit over photography — soft light halo keeps every word legible,
   including the grey italic accent words that fall over brighter parts of the image */
:root[data-theme="light"] .phero__title,
:root[data-theme="light"] .phero__sub,
:root[data-theme="light"] .phero__eyebrow,
:root[data-theme="light"] .phero__crumb {
  text-shadow: 0 1px 2px rgba(244,241,234,0.92), 0 0 20px rgba(244,241,234,0.85);
}
:root[data-theme="light"] .phero__eyebrow::before { background: var(--fg); opacity: 0.6; }
/* Match the home hero's slate-grey accent on the sub-page heroes: the eyebrow,
   breadcrumb and italic accent word use #35464F in light mode (same as
   .hero__tag em). Dark mode keeps the eyebrow/breadcrumb legible as-is; the
   accent word follows the home hero via var(--accent) on the base rule below. */
:root[data-theme="light"] .phero__eyebrow,
:root[data-theme="light"] .phero__crumb,
:root[data-theme="light"] .phero__crumb a,
:root[data-theme="light"] .phero__title em { color: #35464F; }

/* ----- Market tiles stay image-led: light labels on a lifted photo ----- */
:root[data-theme="light"] .mkt {
  --fg: #F8F6F1;
  --fg-soft: #D9DEE4;
  --fg-mute: #C2C9D2;
  --accent-text: #C7CBC2;       /* corporate grey, lightened for dark photos */
  color: #F8F6F1;               /* set color so labels are light, not inherited navy */
  border-color: var(--line-2);
}
:root[data-theme="light"] .mkt__city { color: #FFFFFF; text-shadow: 0 1px 20px rgba(8,14,22,0.65); }
:root[data-theme="light"] .mkt img { filter: brightness(1.06) contrast(1.0) saturate(0.9); }
:root[data-theme="light"] .mkt__scrim { background: linear-gradient(180deg, rgba(14,26,42,0) 46%, rgba(14,26,42,0.42) 74%, rgba(14,26,42,0.82) 100%); }
/* theme toggle button */
.theme-toggle {
  order: 1; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2); background: transparent; color: var(--fg-soft);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  flex: none; padding: 0;
}
.theme-toggle:hover { color: var(--accent-text); border-color: var(--accent-text); }
.theme-toggle svg { width: 17px; height: 17px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
/* Keep specific (Japanese) words from breaking across lines. Used only in the
   ja pages via <span class="nb">…</span>. */
.nb { white-space: nowrap; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #04070C; }

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(80px, 11vw, 180px); position: relative; }
.section--tight { padding-block: clamp(60px, 8vw, 120px); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-dim);
}
.eyebrow--plain { color: var(--fg-mute); }
.eyebrow--plain::before { background: var(--line-2); }
/* Eyebrow draw-in: the accent tick sketches itself outward as the kicker
   reveals into view. Rides the existing .reveal/.in observer — opacity/rise on
   the text is unchanged; this only adds a horizontal draw on the ::before rule.
   Disabled under reduced motion (line shown at full width, no animation). */
.eyebrow.reveal::before { transform: scaleX(0); transform-origin: left center; transition: transform .75s var(--ease) .25s; }
.eyebrow.reveal.in::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){
  .eyebrow.reveal::before, .eyebrow.reveal.in::before { transform: none; transition: none; }
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(40px, 6.2vw, 92px);
  text-wrap: balance;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 4.4vw, 60px);
  text-wrap: balance;
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}
.lead {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--fg-soft);
  font-weight: 400;
  max-width: 40ch;
}
.muted { color: var(--fg-mute); }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.accent { color: var(--accent-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--r);
  border: 1px solid var(--line-2);
  color: var(--fg); cursor: pointer; background: transparent;
  transition: all .4s var(--ease);
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover { border-color: var(--accent-text); color: var(--accent-text); }
.btn:hover .arr { transform: translateX(4px); }
.btn--solid { background: var(--accent); color: #04070C; border-color: var(--accent-text); }
.btn--solid:hover { background: var(--fg); border-color: var(--fg); color: #04070C; }
.btn--solid:hover .arr { transform: translateX(4px); }

.txtlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg); padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: all .35s var(--ease);
}
.txtlink .arr { transition: transform .35s var(--ease); color: var(--accent-text); }
.txtlink:hover { color: var(--accent-text); border-color: var(--accent-text); }
.txtlink:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gut);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  background: #080b12;
  border-bottom: 1px solid var(--line);
}
/* Set by script.js while the mobile menu is open: freezes the page behind the
   overlay. position:fixed (not overflow:hidden) is what holds on iOS Safari;
   the scroll offset is held in inline `top` and restored on close. */
body.nav-locked { position: fixed; left: 0; right: 0; width: 100%; }
.nav.scrolled {
  background: rgba(8,11,18,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 16px;
}
.nav__logo { display: inline-flex; align-items: center; order: 2; margin-left: auto; }
.nav__logo img { height: 77px; width: auto; display: block; transition: height .5s var(--ease); }
.nav.scrolled .nav__logo img { height: 65px; }
.nav__links { display: flex; align-items: center; gap: 30px; order: 1; }
.nav__link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--fg-soft);
  position: relative; padding: 6px 0; transition: color .3s var(--ease); white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { width: 100%; }
.nav__portal {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid var(--line-2); border-radius: var(--r);
  color: var(--fg); transition: all .35s var(--ease); display: inline-flex; gap: 8px; align-items: center; white-space: nowrap;
}
.nav__portal:hover { border-color: var(--accent-text); color: var(--accent-text); }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media > video, .hero__media > .hero__ph {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero__media > video.active, .hero__media > .hero__ph.active { opacity: 1; }
.hero__ph {
  background:
    linear-gradient(115deg, #0a1422, #0c1a2e 45%, #08101c);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,11,18,0.20) 0%, rgba(8,11,18,0.0) 30%, rgba(8,11,18,0.30) 68%, rgba(8,11,18,0.88) 100%),
    linear-gradient(90deg, rgba(8,11,18,0.55) 0%, rgba(8,11,18,0.0) 52%);
}
.hero__inner {
  position: relative; z-index: 2; height: 100%;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut);
  display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(56px, 9vh, 110px);
}
.hero__kicker { margin-bottom: 28px; }
.hero__tagwrap { overflow: hidden; }
/* Wrapper around the headline + descriptor. On desktop it is layout-transparent
   (display:contents) so the box tree is identical to the un-wrapped markup; on
   mobile (<=768px) it becomes a bottom-aligned flex column that holds a stable
   reserved height (set by applyStableHeight in script.js). */
.hero__copy { display: contents; }
.hero__tag {
  font-family: var(--serif); font-weight: 300; letter-spacing: -0.018em;
  font-size: clamp(48px, 8vw, 100px); line-height: 0.95; color: var(--fg);
}
.hero__tag em { font-style: italic; color: var(--accent); }
:root[data-theme="light"] .hero__tag em { color: #35464F; }
.hero__sub {
  margin-top: 30px; max-width: none; color: var(--fg-soft);
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6;
  min-height: 1.6em; white-space: nowrap; opacity: 1; transition: opacity .6s var(--ease);
}
.hero__sub.fade { opacity: 0; }
/* Headline dissolves with the descriptor during a slide change (the masked
   lines still rise into place; this just adds a soft cross-fade so the outgoing
   copy never hard-cuts). Opacity-only — safe under prefers-reduced-motion. */
.hero__tag { transition: opacity .6s var(--ease); }
.hero__tag.fade { opacity: 0; }
/* In-place headline entrance (replaces the bottom-up masked rise): on desktop
   the copy resolves in place with a sub-perceptual scale-settle (1.03 -> 1.0)
   as it fades, instead of rising from a mask. Touch/iOS stay opacity-only. */
@media (hover: hover) and (pointer: fine){
  .hero__tag { transition: opacity .6s var(--ease), transform .7s var(--ease); transform-origin: left center; }
  .hero__tag.fade { transform: scale(1.03); }
}
/* Hero text — mobile (<=768px): FULLY FLATTEN the masked-line headline.
   The masked "rise" uses overflow:hidden + translateY on a child .ln. On iOS
   that composited transform layer ghosts during the innerHTML+transform swap,
   so the outgoing and incoming slide copy overlap on screen (confirmed on a
   real iPhone, in BOTH Safari and Chrome, across EN/zh/ko/ja). On mobile we
   abandon the masking entirely — normal block flow, no overflow clip, no
   transforms, no child-span transitions — leaving a pure opacity-only fade-out
   -> swap-at-zero -> fade-in (driven by script.js, which also skips the rise
   and reserves a stable min-height). A safe line-height prevents clipping.
   !important is required because each page's inline <style> re-declares these
   masked-line rules AFTER this sheet and would otherwise win on source order.
   Desktop (>=769px) is untouched and keeps the masked rise. */
@media (max-width: 768px){
  .hero__tag { transition: opacity .45s var(--ease); line-height: 1.05 !important; }
  .hero__sub { transition: opacity .45s var(--ease); }
  .hero__tagwrap { overflow: visible !important; }
  .hero__line { overflow: visible !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }
  .hero__line .ln,
  .hero__tag.rise .hero__line .ln { transform: none !important; transition: none !important; }
}
/* Hero text — iOS/iPadOS Safari (any width): the same masked-rise layer that
   ghosts on iPhone (see note above) also ghosts on iPad, but iPad runs ABOVE the
   768px mobile breakpoint and so kept the buggy rise — doubling the headline on
   each slide change. Flatten the rise here too, keyed off the is-ios class set by
   script.js. Only the transform is neutralised; the desktop layout/line-height
   stay, so the copy simply cross-fades on opacity. !important is required because
   each page's inline <style> re-declares the masked-line rules after this sheet. */
html.is-ios .hero__tagwrap { overflow: visible !important; }
html.is-ios .hero__line { overflow: visible !important; }
html.is-ios .hero__line .ln,
html.is-ios .hero__tag.rise .hero__line .ln { transform: none !important; transition: none !important; }
/* CSS-only safety net: any touch-primary device (covers iPad even if the JS
   device check above somehow misses) flattens the masked rise the same way. */
@media (hover: none) and (pointer: coarse) {
  .hero__tagwrap { overflow: visible !important; }
  .hero__line { overflow: visible !important; }
  .hero__line .ln,
  .hero__tag.rise .hero__line .ln { transform: none !important; transition: none !important; }
}
/* Hero eyebrow — mobile (<=768px): on small screens the eyebrow drops to a
   quiet, secondary line in title case with tight tracking — no lead rule, no
   uppercase, no competing visual weight. Goals: one line, refined, invisible
   to the headline hierarchy. font-size and margin-bottom use !important to
   beat the inline style="font-size:14px" and the per-page inline
   margin-bottom:clamp(20px,2.4vw,32px). Scoped to .hero__eyebrow only.
   Desktop keeps its full 14px / 0.22em / lead-rule treatment. */
@media (max-width: 768px){
  .hero__eyebrow {
    font-size: 11px !important;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    white-space: nowrap;
    gap: 0;
    margin-bottom: 12px !important;
    /* The eyebrow rides inside the bottom-aligned copy block, so it repositions
       when the descriptor appears/disappears. script.js fades it through that
       single transition (mobile only) to mask the shift. */
    transition: opacity .45s var(--ease);
  }
  .hero__eyebrow.fade { opacity: 0; }
  .hero__eyebrow::before { display: none; }
}
/* Hero scrim — mobile (<=768px): photography fills the upper 60–70 %;
   the content block sits in the lower 30–40 %. The darkening band starts
   at 52% so it smoothly staggers the photography before the text zone,
   keeping the image light and airy in the upper portion.
   Desktop keeps the original gradient. */
@media (max-width: 768px){
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(8,11,18,0.16) 0%,
        rgba(8,11,18,0.00) 22%,
        rgba(8,11,18,0.18) 52%,
        rgba(8,11,18,0.88) 100%),
      linear-gradient(90deg,
        rgba(8,11,18,0.55) 0%,
        rgba(8,11,18,0.00) 58%);
  }
}
@media (max-width: 640px){ .hero__sub { white-space: normal; max-width: 40ch; } }
.hero__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* hero city indicator — ONE continuous progress bar in a single accent: the
   played portion fills bright, the rest is a faint shade of the same colour. The
   four cities are flush, division-less zones (still real keyboard-focusable
   buttons), so the whole thing reads as a single bar sweeping across. */
.hero__cities {
  position: absolute; z-index: 3; right: var(--gut); bottom: clamp(56px, 9vh, 110px);
  display: flex; flex-direction: row; gap: 0; align-items: center;
}
.hero__city {
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: none; border: 0; padding: 16px 0;   /* tall transparent hit area */
}
.hero__city .dot {
  position: relative; display: block; width: 20px; height: 1.5px;
  background: rgba(238,241,246,0.20);             /* faint continuous track */
  overflow: hidden; transition: background .35s var(--ease);
}
.hero__city:first-child .dot { border-top-left-radius: 1px; border-bottom-left-radius: 1px; }
.hero__city:last-child  .dot { border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
.hero__city .dot::after {
  content: ""; position: absolute; inset: 0; background: var(--fg); opacity: 0.5;   /* quiet played fill (theme-aware, never stark) */
  transform: scaleX(var(--fill, 0)); transform-origin: left center;
}
.hero__city:hover .dot { background: rgba(238,241,246,0.30); }
:root[data-theme="light"] .hero__city .dot { background: rgba(18,43,69,0.15); }
:root[data-theme="light"] .hero__city:hover .dot { background: rgba(18,43,69,0.26); }
/* pause / play control at the end of the bar (keeps the auto-advance accessible) */
.hero__pp {
  margin-left: 10px; width: 16px; height: 16px; display: inline-flex; align-items: center;
  justify-content: center; background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--fg); opacity: .38; transition: opacity .3s var(--ease);
}
.hero__pp:hover { opacity: .75; }
.hero__pp-ic { display: block; width: 6px; height: 8px; border-left: 1.2px solid currentColor; border-right: 1.2px solid currentColor; }
.hero__pp.is-paused .hero__pp-ic { width: 0; height: 0; border: 0; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 7px solid currentColor; }

.hero__scroll {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 30px; z-index: 3;
  display: flex; align-items: center;
}
.hero__chevrons { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.hero__chevrons span { display: block; width: 18px; height: 18px; border-right: 1.5px solid rgba(255,255,255,0.85); border-bottom: 1.5px solid rgba(255,255,255,0.85); transform: rotate(45deg); opacity: 0; animation: chevronDown 2.2s var(--ease) infinite; }
.hero__chevrons span:nth-child(2) { animation-delay: .3s; }
@keyframes chevronDown { 0%{opacity:0;transform:rotate(45deg) translateY(-4px);} 30%{opacity:.85;} 70%{opacity:.55;} 100%{opacity:0;transform:rotate(45deg) translateY(6px);} }
@media (prefers-reduced-motion:reduce){ .hero__chevrons span { animation:none; opacity:.75; transform:rotate(45deg); } }

/* hero — mobile (<=640px): compact city-dot and scroll indicators;
   padding-bottom and CTA margin-top are owned by the comprehensive
   <=768px block below (placed after the data-lang rules). */
@media (max-width: 640px){
  .hero__cta { gap: 12px; }
  .hero__cities { top: auto; bottom: 16px; gap: 0; }
  .hero__scroll { bottom: 16px; }
  .hero__chevrons { gap: 5px; }
  .hero__chevrons span { width: 13px; height: 13px; border-right-width: 1.2px; border-bottom-width: 1.2px; }
}
@media (max-width: 480px){
  /* padding-bottom inherits 72px from the <=640px block above */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
/* Accessibility fallback: never leave scroll-reveal content hidden for users who
   prefer reduced motion, and ensure content is visible even if the IntersectionObserver
   script fails to run (the .in class is added by JS). */
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Positioning statement ---------- */
.statement { border-top: 1px solid var(--line); }
.statement__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.statement__big { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 50px); line-height: 1.18; letter-spacing: -0.01em; text-wrap: balance; }
.statement__big .accent { font-style: italic; }
@media (min-width: 900px){
  .statement__grid { grid-template-columns: 1.55fr 1fr; gap: clamp(50px, 7vw, 130px); align-items: end; }
}

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px){ .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: clamp(34px, 5vw, 64px) clamp(20px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat:nth-child(2n){ border-right: none; }
@media (min-width: 760px){ .stat { border-bottom: none; } .stat:nth-child(2n){ border-right: 1px solid var(--line); } .stat:last-child{ border-right: none; } }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -0.02em; }
.stat__num .u { color: var(--accent-text); }
.stat__label { margin-top: 16px; font-size: 13px; color: var(--fg-mute); letter-spacing: 0.04em; line-height: 1.4; }

/* ---------- Section head ---------- */
.shead { display: grid; gap: 26px; margin-bottom: clamp(48px, 6vw, 84px); }
.shead__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }

/* ---------- Capabilities ---------- */
.caps { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
@media (min-width: 820px){ .caps { grid-template-columns: 1fr 1fr; } }
.cap {
  padding: clamp(34px, 4vw, 56px) 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 56px 1fr; gap: clamp(20px, 3vw, 40px);
  position: relative; transition: background .4s var(--ease);
}
@media (min-width: 820px){
  .cap { padding-inline: clamp(28px, 3vw, 48px); }
  .cap:nth-child(odd){ border-right: 1px solid var(--line); padding-left: 0; }
  .cap:nth-child(even){ padding-right: 0; }
}
.cap__no { font-family: var(--serif); font-size: 16px; color: var(--accent-text); padding-top: 6px; }
.cap__t { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 2.3vw, 30px); line-height: 1.15; }
.cap__d { margin-top: 14px; color: var(--fg-mute); font-size: 16px; max-width: 46ch; }
.cap__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 13px; }

/* ---------- Platforms (What we do) ---------- */
.platforms { border-top: 1px solid var(--line); }
.platform { padding-block: clamp(40px, 5vw, 76px); border-bottom: 1px solid var(--line); display: grid; gap: clamp(28px, 4vw, 60px); }
@media (min-width: 940px){ .platform { grid-template-columns: 0.92fr 1.08fr; align-items: start; } }
.platform__head { display: grid; grid-template-columns: 40px 1fr; gap: clamp(16px, 2vw, 28px); }
.platform__no { font-family: var(--serif); color: var(--accent-text); font-size: 16px; padding-top: 8px; }
.platform__title { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.04; letter-spacing: -0.01em; }
.platform__lead { color: var(--fg-soft); margin-top: 18px; font-size: 17px; line-height: 1.6; max-width: 40ch; }
.platform__approach { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }

.asset-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 480px){ .asset-grid { grid-template-columns: 1fr 1fr; } }
.asset { background: var(--bg); padding: 17px 22px; display: flex; flex-direction: column; gap: 5px; transition: background .35s var(--ease); }
.asset:hover { background: var(--bg-2); }
.asset__name { font-size: 16px; font-weight: 500; color: var(--fg); }
.asset__city { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); }
button.asset { appearance: none; -webkit-appearance: none; border: 0; margin: 0; font: inherit; color: inherit; text-align: left; width: 100%; box-sizing: border-box; }

.partners { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.partner { background: var(--bg); padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; transition: background .35s var(--ease); }
.partner:hover { background: var(--bg-2); }
.partner:hover .partner__name { color: var(--accent-text); }
.partner__name { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; transition: color .35s var(--ease); }
.partner__meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); white-space: nowrap; }

/* ---------- Markets ---------- */
.markets { background: var(--bg-1); border-top: 1px solid var(--line); }
.mkt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 26px); }
@media (min-width: 1040px){ .mkt-grid { grid-template-columns: repeat(4, 1fr); } }
.mkt { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.mkt video, .mkt img, .mkt .mkt__ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) contrast(1.05) saturate(0.74); transition: transform 1.2s var(--ease), opacity .6s; }
.mkt .mkt__ph { background: linear-gradient(150deg, #0c1626, #0a1320); }
.mkt__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,18,0.1), rgba(8,11,18,0.85)); }
.mkt__body { position: absolute; inset: auto 0 0 0; padding: clamp(20px, 2vw, 30px); z-index: 2; }
.mkt__city { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); font-weight: 400; }
.mkt__meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); margin-top: 6px; }

/* ---------- Pillars ---------- */
.pillars { border-top: 1px solid var(--line); }
.pillar-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 900px){ .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--bg); padding: clamp(36px, 4vw, 56px); transition: background .45s var(--ease); }
.pillar:hover { background: var(--bg-2); }
.pillar__no { font-family: var(--serif); font-size: 14px; color: var(--fg-faint); letter-spacing: 0.1em; }
.pillar__t { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 36px); margin-top: 30px; line-height: 1.1; }
.pillar__t em { color: var(--accent-text); font-style: italic; }
.pillar__d { margin-top: 18px; color: var(--fg-mute); font-size: 16px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: var(--bg-1); }
.cta__inner { display: grid; gap: 40px; }
@media (min-width: 860px){ .cta__inner { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 80px; } }
.cta__actions { display: flex; flex-direction: column; gap: 16px; }
.cta__glow { position: absolute; width: 60vw; height: 60vw; right: -20vw; top: -20vw; background: radial-gradient(circle, rgba(14,40,65,0.55), transparent 62%); pointer-events: none; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(60px, 7vw, 96px); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
@media (min-width: 820px){ .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__logo { height: 64px; width: auto; display: block; }
.footer__tline { color: var(--fg-mute); margin-top: 20px; max-width: 34ch; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__social { margin-top: 14px; }
.footer__social svg { width: 26px; height: 26px; display: block; fill: currentColor; }
.footer__col h2 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 20px; font-weight: 600; }

/* Legal pages (terms / privacy / cookie). Section headings were promoted from
   h3/h4 to h2/h3 to remove a heading-level skip (h1 -> h3); these rules give the
   promoted headings intentional, on-brand styling instead of browser defaults. */
.legal-block h2 { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; color: var(--fg); margin: 2.2em 0 0.6em; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; line-height: 1.4; color: var(--fg-soft); margin: 1.6em 0 0.5em; }
.footer__col a { display: block; color: var(--fg-soft); padding: 7px 0; font-size: 15px; transition: color .3s, padding-left .3s var(--ease); }
.footer__col a:hover { color: var(--accent-text); padding-left: 6px; }
.footer__bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; padding-block: 30px; color: var(--fg-mute); font-size: 13px; }
.footer__bot a { color: var(--fg-mute); }
.footer__legal { display: flex; gap: 26px; flex-wrap: wrap; }

/* ---------- Mobile nav ---------- */
/* ===========================================================
   OUR PEOPLE  (dark, consistent with the rest of the site)
   =========================================================== */
.people-stage { position: relative; background: var(--bg); }
.people-block { position: relative; z-index: 1; padding-block: clamp(40px,5vw,72px); }
.people-block:not(:last-child) { border-bottom: 1px solid var(--line); }
.people-block__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(30px,3.4vw,52px); }
.people-block__loc { font-family: var(--serif); font-weight: 400; font-size: clamp(24px,2.6vw,38px); color: var(--fg); }
.people-block__loc .pin { color: var(--accent-text); font-style: italic; }
.people-block__count { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-mute); }

.people-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(28px,3vw,44px) clamp(12px,2vw,28px); }
@media (min-width: 560px){ .people-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1080px){ .people-grid { grid-template-columns: repeat(8,1fr); } }

.person { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.person__ph {
  width: 100%; max-width: 132px; aspect-ratio: 1/1; border-radius: 50%;
  position: relative; transition: transform .5s var(--ease);
}
.person__ph img { width: 100%; height: 100%; display: block; border-radius: 50%; }
.person__ph::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-2), 0 12px 34px rgba(0,0,0,0.35);
  transition: box-shadow .45s var(--ease);
}
.person:hover .person__ph { transform: translateY(-6px); }
.person:hover .person__ph::after { box-shadow: inset 0 0 0 1.5px var(--accent), 0 18px 40px rgba(0,0,0,0.45); }
.person__name { font-family: var(--serif); font-weight: 400; font-size: clamp(16px,1.4vw,19px); color: var(--fg); line-height: 1.15; }
.person__role { font-size: 12px; line-height: 1.4; color: var(--fg-mute); letter-spacing: 0.01em; max-width: 18ch; }

/* ===========================================================
   INTERIOR PAGES
   =========================================================== */

/* ---------- Who-we-are snapshot ---------- */
.snapshot { border-top: 1px solid var(--line); background: var(--bg-1); }
.snapshot__panel {
  display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 70px);
  border: 1px solid var(--line-2); border-radius: var(--r);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(14,40,65,0.55), transparent 60%),
    var(--bg-2);
  padding: clamp(32px, 4.4vw, 64px);
}
@media (min-width: 920px){ .snapshot__panel { grid-template-columns: 0.92fr 1.18fr; align-items: center; gap: clamp(48px, 6vw, 96px); } }
.snapshot__lead { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 2.9vw, 38px); line-height: 1.22; letter-spacing: -0.01em; text-wrap: balance; }
.snapshot__lead .accent { font-style: italic; }
.snapshot__cta { margin-top: 30px; }
.snapshot__facts { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 560px){ .snapshot__facts { grid-template-columns: 1fr 1fr; } }
.snapfact { background: var(--bg-1); padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 9px; transition: background .4s var(--ease); }
.snapfact:hover { background: var(--bg-2); }
.snapfact__k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); }
.snapfact__v { font-family: var(--serif); font-weight: 400; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.3; color: var(--fg); }

/* ---------- Page hero (slim, cinematic) ---------- */
.phero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); }
.phero__media { position: absolute; inset: 0; }
.phero__media video, .phero__ph, .phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__ph { background: linear-gradient(120deg, #0a1422, #0c1a2e 45%, #08101c); }
.phero__img { filter: brightness(0.72) contrast(1.06) saturate(0.8); }
.phero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,10,17,0.55) 0%, rgba(7,10,17,0.2) 30%, rgba(7,10,17,0.55) 68%, rgba(7,10,17,0.97) 100%),
    linear-gradient(90deg, rgba(7,10,17,0.88) 0%, rgba(7,10,17,0.6) 32%, rgba(7,10,17,0.22) 54%, rgba(7,10,17,0) 74%);
}
.phero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); padding-block: clamp(60px, 11vh, 130px); }
.phero__eyebrow { margin-bottom: 26px; }
/* Soft dark halo so titles/sub stay crisp over photography in dark mode
   (light theme overrides this with a light halo above) */
.phero__title, .phero__sub, .phero__eyebrow, .phero__crumb { text-shadow: 0 1px 24px rgba(6,10,18,0.6), 0 1px 3px rgba(6,10,18,0.5); }
.phero__title { font-family: var(--serif); font-weight: 300; letter-spacing: -0.015em; line-height: 0.98; font-size: clamp(46px, 7vw, 104px); color: var(--fg); }
.phero__title em { font-style: italic; color: var(--accent); }
/* Japanese page-hero titles: cap the upper size so a long clause (e.g.
   二つのプラットフォーム。) still fits the centred container on large monitors,
   keeping the title to its two intended lines. ja-only; the <=480px rule below
   (placed after this) still wins on phones. */
:root[data-lang="ja"] .phero__title { font-size: clamp(46px, 7vw, 92px); }
/* Chinese page-hero headlines are full-width glyphs, so at the 46px mobile
   floor a long first line (e.g. 以价值投资为根基的) overflows a narrow phone and
   strands a trailing character on its own line. Reduce the size on phones so
   each intended line fits, giving the designed two-line layout. */
@media (max-width: 480px) {
  :root[data-lang="zh"] .phero__title { font-size: clamp(32px, 9vw, 42px); }
  /* Japanese clauses are longer (e.g. 二つのプラットフォーム。), so a smaller floor. */
  :root[data-lang="ja"] .phero__title { font-size: clamp(25px, 7.2vw, 40px); }
  :root[data-lang="ko"] .phero__title { font-size: clamp(30px, 8vw, 40px); }
}
.phero__sub { margin-top: 28px; max-width: 52ch; color: var(--fg-soft); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; }
/* Opt-in wider cap for one element (the Japanese What We Do hero subtitle) so
   its second clause fits on a single line on desktop — used on that <p> only. */
.phero__sub--wide-ja { max-width: 72ch; }
.phero__crumb { display: flex; gap: 12px; align-items: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 30px; }
.phero__crumb a { color: var(--fg-mute); transition: color .3s var(--ease); }
.phero__crumb a:hover { color: var(--accent-text); }
.phero__crumb .sep { color: var(--fg-faint); }

/* ---------- Lede block ---------- */
.lede { border-top: 1px solid var(--line); }
.lede__grid { display: grid; gap: 40px; }
@media (min-width: 900px){ .lede__grid { grid-template-columns: 1.5fr 1fr; gap: clamp(50px,7vw,120px); align-items: start; } }
.lede__big { font-family: var(--serif); font-weight: 300; font-size: clamp(27px, 3.4vw, 46px); line-height: 1.2; letter-spacing: -0.01em; text-wrap: balance; }
.lede__big .accent { font-style: italic; color: var(--accent-text); }

/* ---------- Values strip ---------- */
.values-row { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 760px){ .values-row { grid-template-columns: repeat(3,1fr); } }
.vcell { background: var(--bg); padding: clamp(30px,4vw,56px); display: flex; flex-direction: column; gap: 16px; transition: background .4s var(--ease); }
.vcell:hover { background: var(--bg-2); }
.vcell__k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); }
.vcell__t { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(30px,3.4vw,46px); line-height: 1; }
.vcell__d { color: var(--fg-mute); font-size: 15px; line-height: 1.55; }

/* ---------- Leadership team ---------- */
.team-block { padding-block: clamp(40px,5vw,72px); }
.team-block:not(:last-child) { border-bottom: 1px solid var(--line); }
.team-block__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px,3vw,44px); }
.team-block__loc { font-family: var(--serif); font-weight: 400; font-size: clamp(22px,2.4vw,32px); }
.team-block__count { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-mute); }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(14px,1.6vw,26px) clamp(12px,1.4vw,22px); }
@media (min-width: 520px){ .team-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 760px){ .team-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1040px){ .team-grid { grid-template-columns: repeat(5,1fr); } }
@media (min-width: 1320px){ .team-grid { grid-template-columns: repeat(6,1fr); } }
/* Member rows live inside the .lead-roster band (see Leadership roster
   section); only the shared typography lives here — the photo frame, hover
   and theming are defined there. */
.member__name, .member__role { text-align: left; }
.member__loc { margin-inline: 0; }
.member__name { font-family: var(--serif); font-weight: 400; font-size: 16px; line-height: 1.18; margin-top: 13px; display: inline-block; position: relative; }
.member__name::after { content:""; position:absolute; left:0; bottom:-5px; width: 0; height: 1px; background: var(--accent); transition: width .45s var(--ease); }
.member:hover .member__name::after { width: 26px; }
.member__role { font-size: 14px; color: var(--fg-mute); line-height: 1.38; letter-spacing: 0.01em; margin-top: 7px; }
.member__loc { margin-top: auto; padding-top: 11px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); display: flex; align-items: center; gap: 6px; }
.member__loc::before { content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.7; }

/* ---------- Approach cards (What we do) ---------- */
.approach { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 820px){ .approach { grid-template-columns: 1fr 1fr; } }
.acard { background: var(--bg); padding: clamp(32px,4vw,56px); display: flex; flex-direction: column; gap: 18px; min-height: 280px; transition: background .4s var(--ease); }
.acard:hover { background: var(--bg-2); }
.acard__no { font-family: var(--serif); color: var(--accent-text); font-size: 15px; letter-spacing: 0.1em; }
.acard__t { font-family: var(--serif); font-weight: 400; font-size: clamp(26px,2.8vw,38px); line-height: 1.08; margin-top: 6px; }
.acard__d { color: var(--fg-soft); font-size: 16px; line-height: 1.6; max-width: 42ch; }
.acard__tags { margin-top: auto; padding-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Partner logos (sustainable infra) ---------- */
.plogos { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px){ .plogos { grid-template-columns: repeat(3,1fr); } }
.plogo { background: var(--bg); padding: clamp(34px,4vw,54px) clamp(24px,3vw,40px); display: flex; flex-direction: column; gap: 16px; justify-content: space-between; min-height: 220px; transition: background .4s var(--ease); }
.plogo:hover { background: var(--bg-2); }
.plogo:hover .plogo__name { color: var(--accent-text); }
.plogo__name { font-family: var(--serif); font-size: clamp(24px,2.6vw,32px); font-weight: 400; transition: color .35s var(--ease); }
.plogo__tag { font-size: 13px; color: var(--fg-mute); line-height: 1.5; }
.plogo__meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); display: flex; align-items: center; gap: 8px; }

/* ---------- Newsroom ---------- */
.news-intro { max-width: 64ch; color: var(--fg-soft); }
.news-list { --news-aside: 200px; --news-gap: clamp(28px,4vw,64px); border-top: 1px solid var(--line); }
.news-year { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-faint); padding: clamp(28px,3vw,40px) 0 16px; }
.news-item { border-bottom: 1px solid var(--line); }
.news-item__h { margin: 0; font-weight: 400; }
.news-item__head {
  width: 100%; background: transparent; border: 0; cursor: pointer; text-align: left;
  color: inherit; font: inherit; padding: clamp(26px,3vw,40px) 0;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 760px){
  .news-item__head { grid-template-columns: var(--news-aside) 1fr; gap: var(--news-gap); align-items: start; }
}
.news-item__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.news-item__date { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-mute); }
.news-item__lead { max-width: 62ch; }
.news-item__title { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(22px,2.5vw,30px); line-height: 1.2; letter-spacing: -0.01em; transition: color .3s var(--ease); }
.news-item__head:hover .news-item__title,
.news-item.is-open .news-item__title { color: var(--accent-text); }
.news-item__excerpt { display: block; margin-top: 14px; color: var(--fg-mute); font-size: 16px; line-height: 1.6; max-height: 10em; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s var(--ease), margin-top .4s var(--ease); }
/* The excerpt is a teaser for the collapsed state; once the row opens the full
   article replaces it, so collapse it away to avoid repeating the lead. */
.news-item.is-open .news-item__excerpt { max-height: 0; opacity: 0; margin-top: 0; }
.news-item__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); }
.news-item__more .arr { transition: transform .35s var(--ease); }
.news-item.is-open .news-item__more .arr { transform: rotate(180deg); }
.news-item__more .lbl-close { display: none; }
.news-item.is-open .news-item__more .lbl-open { display: none; }
.news-item.is-open .news-item__more .lbl-close { display: inline; }
.news-item__head:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 4px; }

.news-item__panel { height: 0; overflow: hidden; transition: height .4s var(--ease); }
.news-item__article { padding-bottom: clamp(34px,4vw,56px); max-width: 760px; }
@media (min-width: 760px){
  .news-item__article { margin-left: calc(var(--news-aside) + var(--news-gap)); }
}
.news-article__img { display: block; width: 100%; max-width: 340px; height: auto; border: 1px solid var(--line); margin-top: 32px; }
.prose p { color: var(--fg-soft); font-size: 17px; line-height: 1.75; }
.prose p + p { margin-top: 20px; }

/* Newsroom — media & enquiries close. Single left-aligned column (eyebrow + .h2,
   then supporting copy and a serif mailto), in the site's left-aligned rhythm and
   distinct from the platform CTA (serif email, no button pair, no glow). Tokens
   only, so light + dark both carry. */
.news-cta { border-top: 1px solid var(--line); background: var(--bg-1); }
.news-cta__inner { display: grid; gap: 34px; max-width: 760px; }
.news-cta__side { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.news-cta__p { color: var(--fg-mute); font-size: 17px; line-height: 1.7; max-width: 52ch; }
.news-cta__p a { color: var(--accent-text); border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: border-color .3s var(--ease); }
.news-cta__p a:hover { border-color: var(--accent-text); }
.news-cta__mail { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(22px,2.4vw,30px); color: var(--fg); border-bottom: 1px solid var(--line-2); padding-bottom: 5px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.news-cta__mail:hover { color: var(--accent-text); border-color: var(--accent-text); }
.news-cta__mail .arr { transition: transform .35s var(--ease); }
.news-cta__mail:hover .arr { transform: translateX(4px); }

/* Newsroom — category tag, shown in the item aside beneath the date. Mirrors the
   date's small uppercase rhythm; used on the historical archive (and forward-
   compatible with the current Newsroom). */
.news-item__cat { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); }

/* Newsroom — historical archive link. A restrained, institutional link that
   continues the list's rhythm (the last item's hairline serves as the divider):
   a serif link in the site's refined-link treatment plus one muted line. No box,
   no background, no icon. Tokens only, so light + dark both carry. */
.news-archive { margin-top: clamp(20px,2.5vw,34px); max-width: 760px; }
.news-archive__link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(20px,2.2vw,26px); line-height: 1.2; letter-spacing: -0.01em; color: var(--fg); border-bottom: 1px solid var(--line-2); padding-bottom: 5px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.news-archive__link:hover { color: var(--accent-text); border-color: var(--accent-text); }
.news-archive__link:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 4px; }
.news-archive__link .arr { transition: transform .35s var(--ease); }
.news-archive__link:hover .arr { transform: translateX(4px); }

/* Historical archive — English-only informational note. Set directly beneath the
   hero intro and matches it exactly (font, size, colour, line height and halo,
   via .phero__sub); italicised, with no other treatment. */
.archive-note { font-style: italic; }

@media (prefers-reduced-motion: reduce){
  .news-item__panel { transition: none; }
  .news-item__more .arr { transition: none; }
  .news-item__excerpt { transition: none; }
  .news-archive__link .arr { transition: none; }
}

/* ---------- Connect ---------- */
.connect-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px,5vw,72px); }
@media (min-width: 920px){ .connect-grid { grid-template-columns: 1fr 1fr; } }
.cgroup + .cgroup { margin-top: 40px; }
.cgroup__k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 18px; }
.cline { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(24px,2.6vw,34px); line-height: 1.3; color: var(--fg); transition: color .3s var(--ease); }
a.cline:hover { color: var(--accent-text); }
.offices { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px){ .offices { grid-template-columns: repeat(3,1fr); } }
.office { background: var(--bg); padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; gap: 12px; min-height: 200px; transition: background .4s var(--ease); }
.office:hover { background: var(--bg-2); }
.office__city { font-family: var(--serif); font-size: clamp(24px,2.6vw,30px); }
.office__role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); }
.office__addr { margin-top: auto; color: var(--fg-mute); font-size: 14px; line-height: 1.6; }

/* ===========================================================
   CAREERS — Connect-page opportunity enquiry panel
   =========================================================== */
.careers__panel { border: 1px solid var(--line-2); background: var(--bg-1); border-radius: var(--r); padding: clamp(34px, 4vw, 60px); }
.careers__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 56px); }
@media (min-width: 860px) { .careers__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 6vw, 80px); } }
.careers__rows { display: flex; flex-direction: column; }
.careers__row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); text-decoration: none; }
.careers__row:first-child { border-top: none; padding-top: 0; }
.careers__region { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); }
.careers__email { font-family: var(--serif); font-weight: 300; font-size: clamp(20px, 2vw, 26px); color: var(--fg); transition: color .3s var(--ease); word-break: break-all; }
.careers__row:hover .careers__email { color: var(--accent-text); }
.careers__row:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 4px; }

@media (max-width: 880px){
  /* Single-row header: burger (left) | toggle (centre) | logo (right) */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-inline: var(--gut);
    padding-block: 14px;
  }
  .nav__burger {
    grid-column: 1; justify-self: start;
    display: flex; flex-direction: column; gap: 5px;
    z-index: 101; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 24px; height: 1.5px; background: var(--fg); transition: .3s var(--ease); }
  .nav.open .nav__burger span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2){ opacity: 0; }
  .nav.open .nav__burger span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
  /* Theme toggle as a centred medallion straddling the header's bottom
     hairline — an intentional design mark rather than a floating icon. It is
     absolutely positioned (taken out of the grid) so the burger and logo
     balance left/right; a raised, borderless "3D" disc whose opaque fill masks
     the line behind it so it reads as sitting ON the line. z-index stays below
     the menu overlay (99) so it is covered when the menu is open, and the 44px
     size meets the mobile tap-target guideline. Desktop placement is unchanged. */
  .theme-toggle {
    position: absolute; left: 50%; bottom: 0;
    transform: translate(-50%, 50%);
    grid-column: auto; justify-self: auto;
    width: 44px; height: 44px; border: none;
    background: radial-gradient(120% 120% at 50% 22%, #1c2536 0%, #0b1018 72%);
    box-shadow: 0 6px 16px rgba(0,0,0,0.62),
                inset 0 1.5px 1px rgba(255,255,255,0.12),
                inset 0 -3px 7px rgba(0,0,0,0.55);
    z-index: 1;
    transition: box-shadow .18s var(--ease), transform .12s var(--ease), color .3s var(--ease);
  }
  /* Pressed: the disc depresses for tactile feedback. */
  .theme-toggle:active {
    transform: translate(-50%, 50%) scale(0.95);
    box-shadow: 0 1px 3px rgba(0,0,0,0.5), inset 0 2px 6px rgba(0,0,0,0.6);
  }
  /* Light theme — a raised light disc with a soft navy-tinted shadow. */
  :root[data-theme="light"] .theme-toggle {
    background: radial-gradient(120% 120% at 50% 22%, #ffffff 0%, #e9e4da 78%);
    box-shadow: 0 6px 16px rgba(14,40,65,0.16),
                inset 0 1.5px 1px rgba(255,255,255,0.9),
                inset 0 -3px 7px rgba(14,40,65,0.10);
  }
  :root[data-theme="light"] .theme-toggle:active {
    box-shadow: 0 1px 3px rgba(14,40,65,0.18), inset 0 2px 6px rgba(14,40,65,0.18);
  }
  .nav__logo { grid-column: 3; justify-self: end; margin-left: 0; }

  /* The scrolled nav bar carries a backdrop-filter, and a filtered ancestor
     becomes the containing block for its position:fixed children. That would
     pin this overlay to the nav-bar box (collapsing it so the top menu items
     scroll off-screen) instead of the viewport — the cause of the "menu only
     works at the top of the page" bug. Drop the filter while the menu is open. */
  .nav.open { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

  /* Fullscreen overlay — nav__links is position:fixed so outside the grid */
  .nav__links {
    position: fixed; inset: 0;
    height: 100vh;            /* fallback for browsers without dvh units */
    height: 100dvh; min-height: 100dvh;
    flex-direction: column; justify-content: center;
    justify-content: safe center;   /* keep top items reachable if content overflows */
    gap: 28px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    /* Phase 3 (N2): symmetric block padding so the centred menu sits optically
       centred rather than ~29px low. Still clears the fixed nav / close button. */
    padding: max(env(safe-area-inset-top), 64px) 24px max(env(safe-area-inset-bottom), 64px);
    background: rgba(8,11,18,0.97); backdrop-filter: blur(10px); z-index: 99;
    visibility: hidden; opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease), visibility 0s linear .4s;
  }
  .nav__links.open {
    visibility: visible; opacity: 1; pointer-events: auto;
    transition: opacity .4s var(--ease), visibility 0s linear;
  }
  .nav__link { font-size: 20px; }
  /* Override inline style="font-size:14px" present on nav spans in sub-pages */
  .nav__link span { font-size: 20px !important; }
  /* Portal buttons are secondary actions: keep them as compact uppercase button
     labels rather than scaling to the 20px menu size (uppercase made them dwarf
     the plain links). */
  .nav__portal span { font-size: 14px !important; }

  /* Lang-switch inside the hamburger overlay */
  .lang-switch {
    margin-left: 0; flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 0;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  }
  .lang-switch__btn { font-size: 16px; padding: 8px 16px; }
  .lang-switch__btn.active { color: var(--fg); font-weight: 600; }
  .nav__portal { width: min(280px, 78vw); justify-content: center; }
}

/* ===========================================================
   BUILDING PREVIEWS — hover float + click lightbox
   =========================================================== */
.asset { cursor: pointer; }
.asset__hint {
  position: absolute; top: 14px; right: 16px;
  font-size: 14px; line-height: 1; color: var(--fg-mute);
  opacity: 0; transform: translateY(-2px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.asset { position: relative; }
.asset:hover .asset__hint { opacity: .75; transform: none; color: var(--accent-text); }

/* Floating hover preview */
.bpop {
  position: fixed; z-index: 200; width: 300px; pointer-events: none;
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(0,0,0,.55); overflow: hidden;
  opacity: 0; transform: translateY(8px) scale(.98);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.bpop.show { opacity: 1; transform: none; }
.bpop__media { width: 100%; aspect-ratio: 4 / 3; background: #0c1320; }
/* Hover popup keeps cover so the fixed 4:3 frame always looks filled */
.bpop__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Lightbox image: show in natural aspect ratio, no cropping */
.blight__media img {
  width: auto; height: auto;
  max-width: 92vw; max-height: 78vh;
  object-fit: contain; display: block;
}
.ph-fill {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; color: var(--fg-mute);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; letter-spacing: .08em; line-height: 1.5;
  background-image: repeating-linear-gradient(135deg, #0f1828 0 11px, #0c1320 11px 22px);
}
.bpop__cap { padding: 13px 15px; display: flex; flex-direction: column; gap: 4px; }
.bpop__name { font-family: var(--serif); font-size: 16px; color: var(--fg); }
.bpop__city { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); }

/* Click lightbox */
.blight {
  position: fixed; inset: 0; z-index: 240; display: flex; align-items: center; justify-content: center;
  padding: 5vw; background: rgba(4,7,12,.82); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.blight.show { opacity: 1; visibility: visible; }
.blight__card {
  /* Width follows the image; max-width caps it on large screens */
  width: auto; max-width: 94vw;
  background: var(--bg-1); border: 1px solid var(--line-2);
  border-radius: calc(var(--r) + 4px); overflow: hidden; box-shadow: 0 40px 110px rgba(0,0,0,.6);
  transform: translateY(12px) scale(.985); transition: transform .35s var(--ease);
}
.blight.show .blight__card { transform: none; }
/* No forced aspect-ratio — the image determines its own height */
.blight__media {
  display: flex; align-items: center; justify-content: center;
  background: #0c1320; line-height: 0;
}
.blight__cap { padding: 16px 22px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; min-width: min(300px, 92vw); }
.blight__name { font-family: var(--serif); font-size: clamp(17px,2.2vw,26px); color: var(--fg); }
.blight__city { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); white-space: nowrap; }
.blight__close {
  position: absolute; top: clamp(18px,3vw,30px); right: clamp(18px,3vw,32px);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2);
  background: rgba(8,11,18,.6); color: var(--fg); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.blight__close:hover { background: rgba(8,11,18,.9); border-color: var(--accent-text); }
.blight__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-2);
  background: rgba(8,11,18,.6); color: var(--fg); font-size: 30px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.blight__nav:hover { background: rgba(8,11,18,.9); border-color: var(--accent-text); }
.blight__nav--prev { left: clamp(10px,3vw,32px); }
.blight__nav--next { right: clamp(10px,3vw,32px); }
.blight__nav span, .blight__nav { padding-bottom: 4px; }
:root[data-theme="light"] .blight__nav { background: rgba(251,250,248,.78); border-color: var(--line-2); }
:root[data-theme="light"] .blight__nav:hover { background: rgba(251,250,248,.96); border-color: var(--accent-text); }
@media (max-width: 600px) {
  .blight__nav { width: 44px; height: 44px; font-size: 26px; }
}

/* ===========================================================
   LANGUAGE — CJK font swap + inline switcher
   =========================================================== */
:root[data-lang="zh"] {
  --serif: 'Noto Serif SC', 'Spectral', Georgia, serif;
  --sans:  'Noto Sans SC', 'Archivo', system-ui, -apple-system, sans-serif;
}
:root[data-lang="ja"] {
  --serif: 'Noto Serif JP', 'Spectral', Georgia, serif;
  --sans:  'Noto Sans JP', 'Archivo', system-ui, -apple-system, sans-serif;
}
:root[data-lang="ko"] {
  --serif: 'Noto Serif KR', 'Spectral', Georgia, serif;
  --sans:  'Noto Sans KR', 'Archivo', system-ui, -apple-system, sans-serif;
}
/* CJK scripts have no real italics — keep the accent emphasis as
   weight + colour instead of synthesised oblique. */
:root[data-lang="zh"] em, :root[data-lang="ja"] em, :root[data-lang="ko"] em,
:root[data-lang="zh"] .accent, :root[data-lang="ja"] .accent, :root[data-lang="ko"] .accent,
:root[data-lang="zh"] .serif-em, :root[data-lang="ja"] .serif-em, :root[data-lang="ko"] .serif-em {
  font-style: normal;
}

/* Korean/Japanese headlines run longer at the display size, so hold them at a
   slightly smaller scale; English/Chinese use the larger base size for display
   impact. Container padding is also reduced for ko/ja to give the headline
   more room without touching other languages. Korean breaks at word boundaries;
   Japanese uses strict line-break rules to avoid orphaned characters. */
:root[data-lang="ko"] .hero__inner,
:root[data-lang="ja"] .hero__inner {
  padding-inline: clamp(20px, 2.5vw, 60px);
}
:root[data-lang="ko"] .hero__tag,
:root[data-lang="ja"] .hero__tag {
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 1.0;
}
:root[data-lang="ko"] .hero__tag { word-break: keep-all; }
:root[data-lang="ja"] .hero__tag { line-break: strict; }

:root[data-lang="en"] .hero__tag {
  font-size: clamp(58px, 10.5vw, 158px);
  line-height: 0.9;
}

/* ===========================================================
   TEXT WRAPPING — balanced/pretty wrap for short labels and body
   copy so lines don't leave orphan words (EN) or single trailing
   characters (CJK). Hero headline is intentionally excluded to
   protect the mobile-hero stable-height alignment. Modern-browser
   features that degrade gracefully where unsupported.
   =========================================================== */
.stat__label { text-wrap: balance; }
.footer__tline { text-wrap: balance; }
.lead { text-wrap: pretty; }

/* CJK refinements — mirror the existing data-lang hero rules:
   Japanese uses strict line-break to avoid orphaned characters;
   Korean breaks at word boundaries. */
:root[data-lang="ja"] .stat__label,
:root[data-lang="ja"] .lead,
:root[data-lang="ja"] .footer__tline { line-break: strict; }
:root[data-lang="ko"] .stat__label,
:root[data-lang="ko"] .lead { word-break: keep-all; }

/* --- Phase 3 polish (M2/S2): extend CJK line-breaking to the snapshot facts
   grid, leadership roles, statements, page-hero and card text.
   (a) Short atomic labels — keep multi-character terms whole; only break a
       single term when it would otherwise overflow its cell. Fixes the orphaned
       trailing characters seen in narrow facts cells (墨尔本→本, 上海→海,
       ソウル→ソウ/ル, 대체투자→대체/투자).
   (b) Display & body copy — Korean breaks at word (eojeol) boundaries so it no
       longer splits mid-word (전략적→전/략적); Japanese/Chinese use strict kinsoku
       to improve break positions. English is unaffected (data-lang scoped). --- */
:root[data-lang="zh"] .snapfact__v, :root[data-lang="ja"] .snapfact__v, :root[data-lang="ko"] .snapfact__v,
:root[data-lang="zh"] .snapfact__k, :root[data-lang="ja"] .snapfact__k, :root[data-lang="ko"] .snapfact__k,
:root[data-lang="zh"] .member__role, :root[data-lang="ja"] .member__role, :root[data-lang="ko"] .member__role {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
:root[data-lang="ko"] .statement__big, :root[data-lang="ko"] .snapshot__lead,
:root[data-lang="ko"] .h2, :root[data-lang="ko"] .phero__title, :root[data-lang="ko"] .phero__sub,
:root[data-lang="ko"] .platform__lead, :root[data-lang="ko"] .acard__t,
:root[data-lang="ko"] .acard__d, :root[data-lang="ko"] .pillar__d {
  word-break: keep-all;
}
:root[data-lang="ja"] .statement__big, :root[data-lang="zh"] .statement__big,
:root[data-lang="ja"] .snapshot__lead, :root[data-lang="zh"] .snapshot__lead,
:root[data-lang="ja"] .h2, :root[data-lang="zh"] .h2,
:root[data-lang="ja"] .phero__title, :root[data-lang="zh"] .phero__title,
:root[data-lang="ja"] .phero__sub, :root[data-lang="zh"] .phero__sub,
:root[data-lang="ja"] .platform__lead, :root[data-lang="zh"] .platform__lead,
:root[data-lang="ja"] .acard__t, :root[data-lang="zh"] .acard__t,
:root[data-lang="ja"] .acard__d, :root[data-lang="zh"] .acard__d,
:root[data-lang="ja"] .pillar__d, :root[data-lang="zh"] .pillar__d {
  line-break: strict;
}

.lang-switch { display: flex; align-items: center; margin-left: 20px; }
.lang-switch__btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.03em; color: var(--fg-mute);
  padding: 6px 9px; line-height: 1; white-space: nowrap;
  transition: color .3s var(--ease);
}
.lang-switch__btn:hover { color: var(--fg-soft); }
.lang-switch__btn.active { color: var(--fg); }
.lang-switch__btn + .lang-switch__btn { border-left: 1px solid var(--line-2); }

/* === Mobile hero — structural bottom-alignment (<=768px) ===
   Photography fills the upper 60–70 % of the viewport; the copy block
   (eyebrow → headline → descriptor) and CTAs live in the lower 30–40 %.

   The headline + descriptor are wrapped in .hero__copy and treated as ONE
   bottom-aligned block. applyStableHeight() (script.js) reserves the tallest
   scene's combined height ON THE WRAPPER, so:
     • the CTA stays put and the eyebrow never shifts between scenes;
     • the last visible row — descriptor on Scene 1, headline on Scenes 2–4 —
       always sits ~24 px above the CTA;
     • shorter copy sits lower and any slack falls ABOVE the copy, never
       between the copy and the CTA.

   Headline font lower-bounds are reduced ~10–15 % per language; upper bounds
   are unchanged so desktop is unaffected. These rules sit after the data-lang
   declarations above so they win via source order at equal specificity. */
@media (max-width: 768px) {
  /* Headline + descriptor as one bottom-aligned copy block. */
  .hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  /* Bottom-align the headline's own lines too (harmless fallback — the stable
     reserved height lives on .hero__copy, not here). */
  .hero__tag { justify-content: flex-end !important; }
  /* Restore the descriptor; let it wrap, drop the always-on 1.6em reservation,
     and collapse cleanly on scenes that have none so no blank space is held
     between the headline and the CTA. */
  .hero__sub {
    margin-top: 14px;
    min-height: 0;
    white-space: normal;
    max-width: 40ch;
  }
  .hero__sub:empty { display: none; }
  /* Stable CTA: fixed position, ~24 px below the last visible text row. */
  .hero__inner { padding-bottom: 64px; }
  .hero__cta   { margin-top: 24px; gap: 12px; }
  /* Language-specific headline sizes on mobile
        EN  -10 %  (58 px → 52 px at 375 px viewport)
        ZH  -10 %  (48 px → 43 px)
        KO/JA -16 % (38 px → 32 px — CJK scenes reduce from 4 to 3 visual lines) */
  :root[data-lang="en"] .hero__tag { font-size: clamp(52px, 10.5vw, 158px); }
  :root[data-lang="zh"] .hero__tag { font-size: clamp(43px,    8vw, 100px); }
  :root[data-lang="ko"] .hero__tag,
  :root[data-lang="ja"] .hero__tag { font-size: clamp(32px,  5.8vw,  78px); }
}

/* ===========================================================
   COOKIE CONSENT — discreet bottom banner + preferences dialog.
   Injected by script.js. Sits below the mobile-menu overlay (z 99+)
   so the menu still covers it; the modal sits above the nav.
   =========================================================== */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 18px var(--gut);
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 24, 0.96);
  border-top: 1px solid var(--line-2);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transform: translateY(110%); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.cookie-bar.is-in { transform: none; opacity: 1; }
.cookie-bar--noanim { transition: none; }
.cookie-bar__text {
  flex: 1 1 320px; margin: 0; max-width: 72ch;
  font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--fg-soft);
}
.cookie-bar__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.cookie-btn {
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 18px; border-radius: var(--r);
  border: 1px solid var(--line-2); color: var(--fg);
  background: transparent; cursor: pointer; white-space: nowrap;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.cookie-btn:hover { border-color: var(--accent-text); color: var(--accent-text); }
.cookie-btn--solid { background: var(--accent); color: #04070C; border-color: var(--accent-text); }
.cookie-btn--solid:hover { background: var(--fg); border-color: var(--fg); color: #04070C; }
.cookie-btn:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 2px; }

:root[data-theme="light"] .cookie-bar { background: rgba(244, 241, 234, 0.97); border-top-color: var(--line-2); }

/* Modal */
.cookie-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal__scrim { position: absolute; inset: 0; background: rgba(4, 7, 12, 0.62); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.cookie-modal__dialog {
  position: relative; width: 100%; max-width: 480px;
  max-height: calc(100dvh - 40px); overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 28px clamp(20px, 4vw, 32px);
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(8px) scale(0.99); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.cookie-modal.is-in .cookie-modal__dialog { transform: none; opacity: 1; }
.cookie-modal--noanim .cookie-modal__dialog { transition: none; }
.cookie-modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.cookie-modal__title { font-family: var(--serif); font-weight: 300; font-size: 26px; line-height: 1.15; margin: 0; color: var(--fg); }
.cookie-modal__close { font-size: 18px; line-height: 1; padding: 6px 9px; color: var(--fg-mute); }
.cookie-modal__close:hover { color: var(--fg); border-color: var(--line-2); }

.cookie-pref { padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-pref:first-of-type { border-top: none; }
.cookie-pref__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-pref__name { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--fg); }
.cookie-pref__desc { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--fg-mute); max-width: 44ch; }
.cookie-pref__always { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); white-space: nowrap; }

/* Toggle switch */
.cookie-switch { position: relative; display: inline-flex; flex: 0 0 auto; width: 44px; height: 24px; cursor: pointer; }
.cookie-switch input { position: absolute; inset: 0; z-index: 1; opacity: 0; margin: 0; cursor: pointer; }
.cookie-switch__track { position: relative; flex: 1; border-radius: 100px; background: var(--line-2); border: 1px solid var(--line-2); transition: background .3s var(--ease); }
.cookie-switch__track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--fg-mute); transition: transform .3s var(--ease), background .3s var(--ease); }
.cookie-switch input:checked + .cookie-switch__track { background: var(--accent); border-color: var(--accent-text); }
.cookie-switch input:checked + .cookie-switch__track::after { transform: translateX(20px); background: #04070C; }
.cookie-switch input:focus-visible + .cookie-switch__track { outline: 2px solid var(--accent-text); outline-offset: 2px; }

.cookie-modal__save { margin-top: 24px; width: 100%; justify-content: center; text-align: center; }
.cookie-trigger { margin-top: 22px; }

@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; gap: 14px; padding-top: 16px; }
  /* In the column layout the `flex: 1 1 320px` basis (a WIDTH basis for the
     desktop row) would otherwise become a 320px HEIGHT, inflating the banner.
     Collapse the text to its natural height. */
  .cookie-bar__text { flex: 0 0 auto; }
  .cookie-bar__actions { flex-direction: column; }
  .cookie-bar__actions .cookie-btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-bar, .cookie-modal__dialog { transition: none; }
}

/* Reduced-motion: neutralise the medallion's press animation (mobile only, so
   the desktop in-flow toggle is never affected). */
@media (max-width: 880px) and (prefers-reduced-motion: reduce) {
  .theme-toggle { transition: none; }
  .theme-toggle:active { transform: translate(-50%, 50%); }
}

/* ===========================================================
   ACCESSIBILITY — skip link + visible keyboard focus (Phase 1)
   Keyboard-only (:focus-visible), so mouse/touch interaction is
   visually unchanged. Colours use existing tokens.
   =========================================================== */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 2000;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--line-2); border-radius: 8px;
  padding: 10px 18px; font-family: var(--sans); font-size: 14px;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; outline: 2px solid var(--accent-text); outline-offset: 2px; }
#main-content { scroll-margin-top: 96px; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav__link:focus-visible,
.nav__portal:focus-visible,
.nav__logo:focus-visible,
.nav__burger:focus-visible,
.lang-switch__btn:focus-visible,
.txtlink:focus-visible,
.tag:focus-visible,
.mkt:focus-visible,
.asset:focus-visible,
.partner:focus-visible,
.plogo:focus-visible,
.careers__row:focus-visible,
.member:focus-visible,
.footer a:focus-visible,
.hero__city:focus-visible,
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===========================================================
   PHASE 3 POLISH (non-CJK, CSS-only)
   =========================================================== */

/* N3 (Legal column) was investigated and needs NO rule: the container is
   <div class="wrap legal-wrap"> and .wrap already applies `margin: 0 auto`,
   so the inline-capped 820px column is centred on all four legal pages. */

/* S7 — On desktop the cookie bar sits at the bottom of the viewport and, at
   common laptop heights (e.g. 1366×768), clips the bottom of the hero CTA
   buttons (~11px overlap measured). Reserve a little clearance under the hero
   CTAs only while the bar is present, so the buttons stay fully clear; reverts
   automatically once the bar is dismissed. Desktop-only (the mobile cookie bar
   is a different, taller stacked layout that this margin can't and shouldn't
   affect). Guarded by :has() so engines without support keep current behaviour. */
@media (min-width: 769px) {
  @supports selector(:has(*)) {
    body:has(.cookie-bar.is-in) .hero__cta { margin-bottom: clamp(64px, 11vh, 104px); }
  }
}

/* ============================================================
   LEADERSHIP ROSTER — name-led rows with each portrait seated in a
   frosted-glass box. Theme-aware: a dark glowing band in dark mode,
   light frosted cards on the warm page in light mode. Accents and ink
   follow the active theme's tokens (corporate-grey eyebrow, etc).
   ============================================================ */

/* --- layout (theme-independent) --- */
.lead-roster { position: relative; isolation: isolate; overflow: hidden; }
.lead-roster .team-grid { grid-template-columns: 1fr; gap: 2px clamp(28px, 4vw, 64px); }
@media (min-width: 820px) { .lead-roster .team-grid { grid-template-columns: 1fr 1fr; } }

.lead-roster .member {
  display: grid; grid-template-columns: 140px 1fr; grid-template-rows: auto auto auto;
  align-items: center; column-gap: 28px; padding: 19px 4px;
  border-bottom: 1px solid var(--line);
}

.lead-roster .member__ph {
  grid-column: 1; grid-row: 1 / span 3; align-self: center;
  width: 140px; height: 140px; border-radius: 34px;
  position: relative; overflow: hidden; display: block;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.lead-roster .member__ph img {
  position: absolute; left: 50%; top: 0;
  width: 104%; height: auto; transform: translateX(-50%);
  /* Reduce the studio over-exposure: brightness -35%, with a small contrast and
     saturation lift so the toned-down image stays crisp rather than flat. Also
     softens the stark white backdrop to a natural neutral grey. */
  filter: brightness(0.65) contrast(1.1) saturate(1.08);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
}
/* Light mode sits on a warm off-white page with bright frosted-glass cards, so
   the dark -35% reduction above reads muddy and greys the white backdrop into a
   cool rectangle that clashes. Light mode gets a much gentler correction; dark
   mode (where -35% was tuned and approved) is unchanged. */
:root[data-theme="light"] .lead-roster .member__ph img {
  filter: brightness(0.9) contrast(1.03) saturate(1.02);
}
.lead-roster .member:hover .member__ph { transform: translateY(-3px); }

.lead-roster .member__name { grid-column: 2; grid-row: 1; margin-top: 0; font-size: 22px; color: var(--fg); }
.lead-roster .member__name::after { bottom: -4px; }
.lead-roster .member__role { grid-column: 2; grid-row: 2; margin-top: 4px; font-size: 13.5px; color: var(--fg-soft); }
.lead-roster .member__loc  { grid-column: 2; grid-row: 3; margin-top: 7px; padding-top: 0; color: var(--fg-faint); }

/* --- DARK MODE: glowing navy band, light frosted-glass boxes --- */
.lead-roster {
  background:
    radial-gradient(58vw 42vw at 88% 0%,   rgba(147,162,175,0.10), transparent 60%),
    radial-gradient(56vw 52vw at 2% 104%,  rgba(14,40,65,0.45),    transparent 60%),
    radial-gradient(82vw 82vw at 50% 50%,  rgba(22,42,64,0.16),    transparent 72%),
    #0A0E16;
}
.lead-roster .member__ph {
  background: linear-gradient(160deg, rgba(244,247,252,0.14), rgba(244,247,252,0.05));
  -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 10px 26px rgba(5,10,20,0.45),
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.lead-roster .member__ph::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0.22), transparent 46%); }
.lead-roster .member:hover .member__ph {
  background: linear-gradient(160deg, rgba(248,250,255,0.22), rgba(244,247,252,0.08));
  box-shadow:
    0 16px 36px rgba(5,10,20,0.55),
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* --- LIGHT MODE: warm page, translucent frosted-glass panes, navy ink --- */
:root[data-theme="light"] .lead-roster {
  background:
    radial-gradient(58vw 42vw at 88% 0%,  rgba(147,162,175,0.16), transparent 62%),
    radial-gradient(56vw 52vw at 2% 104%, rgba(14,40,65,0.06),    transparent 60%),
    var(--bg-1);
}
/* low-opacity, cool-tinted fill so the page shows through and refracts;
   strong blur + saturation + a defining edge ring sell the glass pane */
:root[data-theme="light"] .lead-roster .member__ph {
  background: linear-gradient(150deg, rgba(255,255,255,0.42) 0%, rgba(234,241,250,0.20) 58%, rgba(210,224,240,0.30) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(150%) brightness(1.05);
  backdrop-filter: blur(16px) saturate(150%) brightness(1.05);
  box-shadow:
    0 14px 32px rgba(20,43,69,0.14),
    0 0 0 1px rgba(14,40,65,0.06),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.5),
    inset 0 -14px 24px rgba(14,40,65,0.05);
}
/* diagonal specular sweep — the key "pane of glass" highlight */
:root[data-theme="light"] .lead-roster .member__ph::after {
  background: linear-gradient(133deg, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0.14) 20%, transparent 40%, transparent 100%);
}
:root[data-theme="light"] .lead-roster .member:hover .member__ph {
  background: linear-gradient(150deg, rgba(255,255,255,0.55) 0%, rgba(234,241,250,0.28) 58%, rgba(210,224,240,0.38) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.07);
  backdrop-filter: blur(18px) saturate(160%) brightness(1.07);
  box-shadow:
    0 20px 42px rgba(20,43,69,0.20),
    0 0 0 1px rgba(14,40,65,0.08),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 0 0 1px rgba(255,255,255,0.6),
    inset 0 -14px 24px rgba(14,40,65,0.06);
}

/* --- fallback where backdrop-filter is unsupported: solid frosted tone --- */
@supports not ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
  .lead-roster .member__ph { background: linear-gradient(160deg, rgba(34,46,64,0.95), rgba(20,30,46,0.95)); }
  :root[data-theme="light"] .lead-roster .member__ph { background: linear-gradient(160deg, #FFFFFF, #EFEADF); }
}

/* An intentionally-English hero heading sitting on a CJK page (.is-en) — render
   it exactly like the English pages: English serif (Spectral), the English
   display size, and a true italic accent, overriding the page's CJK title
   rules (Noto serif + de-italicised em). */
:root[data-lang="ko"] .phero__title.is-en,
:root[data-lang="ja"] .phero__title.is-en,
:root[data-lang="zh"] .phero__title.is-en {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: clamp(46px, 7vw, 104px);
}
:root[data-lang="ko"] .phero__title.is-en em,
:root[data-lang="ja"] .phero__title.is-en em,
:root[data-lang="zh"] .phero__title.is-en em {
  font-style: italic;
}

/* Leadership roster cascade — members fade + rise in a gentle stagger as the
   roster's existing .team-block.reveal carrier scrolls into view. The block
   becomes a no-op carrier (no background, so nothing flashes) and each member
   owns the motion; card design, hierarchy and the photo/name hovers are
   unchanged. Who We Are shares this sheet across EN/zh/ja/ko. Disabled under
   reduced motion (roster shown static). */
.lead-roster .team-block.reveal { opacity: 1; transform: none; }
.lead-roster .team-grid .member {
  --rd: 0s;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease) var(--rd), transform .7s var(--ease) var(--rd);
}
.lead-roster .team-block.in .team-grid .member { opacity: 1; transform: none; }
.lead-roster .team-grid .member:nth-child(2)  { --rd: .035s; }
.lead-roster .team-grid .member:nth-child(3)  { --rd: .070s; }
.lead-roster .team-grid .member:nth-child(4)  { --rd: .105s; }
.lead-roster .team-grid .member:nth-child(5)  { --rd: .140s; }
.lead-roster .team-grid .member:nth-child(6)  { --rd: .175s; }
.lead-roster .team-grid .member:nth-child(7)  { --rd: .210s; }
.lead-roster .team-grid .member:nth-child(8)  { --rd: .245s; }
.lead-roster .team-grid .member:nth-child(9)  { --rd: .280s; }
.lead-roster .team-grid .member:nth-child(10) { --rd: .315s; }
.lead-roster .team-grid .member:nth-child(11) { --rd: .350s; }
.lead-roster .team-grid .member:nth-child(12) { --rd: .385s; }
.lead-roster .team-grid .member:nth-child(n+13) { --rd: .420s; }
@media (prefers-reduced-motion: reduce){
  .lead-roster .team-grid .member { opacity: 1; transform: none; transition: none; }
}

/* Premium hover on the market image tiles — the card lifts with a soft shadow
   bloom while the photo eases a touch closer (extending the existing zoom).
   Disabled under reduced motion (no lift/shadow). */
.mkt { transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease); }
.mkt:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 24px 48px -14px rgba(8,14,24,0.52); }
.mkt:hover video, .mkt:hover img, .mkt:hover .mkt__ph { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce){
  .mkt { transition: none; }
  .mkt:hover { transform: none; box-shadow: none; }
}

/* ============================================================
   DESIGN POLISH (preview) — 2026-06
   1) cross-page view transitions  2) section rail  3) hero
   grain+vignette  5) button lift  6) lightbox counter.
   Every motion is gated on prefers-reduced-motion.
   ============================================================ */

/* ---- 1. Cross-page view transitions (progressive; ignored where unsupported) ---- */
@view-transition { navigation: auto; }
.nav { view-transition-name: site-header; }   /* header stays steady while content cross-fades */
@media (prefers-reduced-motion: no-preference){
  ::view-transition-old(root),
  ::view-transition-new(root){ animation-duration: .38s; animation-timing-function: cubic-bezier(.4,0,.2,1); }
}
@media (prefers-reduced-motion: reduce){
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*){ animation: none !important; }
}

/* ---- 2. Section rail — quiet scroll wayfinding, desktop only ---- */
.srail { position: fixed; right: clamp(14px,1.8vw,30px); top: 50%; transform: translateY(-50%);
  z-index: 60; display: none; flex-direction: column; gap: 15px; align-items: flex-end; }
@media (min-width: 1100px){ .srail { display: flex; } }
.srail__item { display: flex; align-items: center; gap: 10px; background: none; border: 0;
  cursor: pointer; padding: 3px 0; color: var(--fg-mute); }
.srail__label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  color: var(--fg-soft); opacity: 0; transform: translateX(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease); }
.srail__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .32;
  transform: scale(.8); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.srail__item:hover .srail__label,
.srail__item.is-active .srail__label { opacity: 1; transform: translateX(0); }
.srail__item:hover .srail__dot { opacity: .65; }
.srail__item.is-active { color: var(--accent-text); }
.srail__item.is-active .srail__dot { opacity: 1; transform: scale(1.2); }
@media (prefers-reduced-motion: reduce){ .srail__label, .srail__dot { transition: none; } }

/* ---- 3. Hero grain + vignette (cinematic atmosphere; over media, under copy) ---- */
.hero::before { content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: radial-gradient(125% 95% at 50% 36%, transparent 52%, rgba(4,7,12,.42) 100%); }
.hero::after { content:""; position:absolute; inset:-50%; z-index:1; pointer-events:none; opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:160px 160px; animation: heroGrain 1s steps(3) infinite; }
@keyframes heroGrain { 0%{transform:translate(0,0)} 33%{transform:translate(-4%,3%)} 66%{transform:translate(3%,-4%)} 100%{transform:translate(0,0)} }
@media (prefers-reduced-motion: reduce){ .hero::after { animation:none; } }

/* ---- 5. Button lift (subtle tactility atop the existing arrow slide) ---- */
@media (prefers-reduced-motion: no-preference){
  .btn { transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease); }
  .btn:hover { transform: translateY(-1px); }
  .btn--solid:hover { box-shadow: 0 10px 26px -10px rgba(0,0,0,.45); }
}

/* ---- 6. Lightbox photo counter (badge over the image) ---- */
.blight__card { position: relative; }
.blight__count { position: absolute; top: 12px; right: 14px; z-index: 2;
  padding: 4px 10px; border-radius: 999px; background: rgba(4,7,12,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-size: 11px; letter-spacing: .12em; color: #F8F6F1; font-variant-numeric: tabular-nums; }

/* ============================================================
   MOBILE POLISH (preview) — 2026-06
   1) tap feedback (:active)  2) menu choreography  3) compact
   cookie banner  5) safe-area insets. (#6 hero swipe is in JS.)
   Touch-scoped via (hover:none); motion reduced-motion-gated.
   ============================================================ */

/* ---- 1. Tap feedback — touch has no hover, so every interactive
   surface gets a crisp pressed state. ---- */
@media (hover: none) {
  .btn, .txtlink, .nav__link, .lang-switch__btn, .cookie-btn,
  .mkt, .asset, .blight__nav, .blight__close { -webkit-tap-highlight-color: transparent; }
  .btn:active { transform: scale(.97); }
  .cookie-btn:active { transform: scale(.97); }
  .mkt:active { transform: scale(.98); }
  .asset:active { transform: scale(.97); opacity: .92; }
  .blight__nav:active, .blight__close:active { transform: scale(.9); }
  .txtlink:active, .nav__link:active, .lang-switch__btn:active { opacity: .55; }
  /* snappy press timing on touch */
  .btn, .cookie-btn, .mkt, .asset, .blight__nav, .blight__close { transition-duration: .18s; }
}
@media (hover: none) and (prefers-reduced-motion: reduce) {
  .btn:active, .cookie-btn:active, .mkt:active, .asset:active,
  .blight__nav:active, .blight__close:active { transform: none; }
}

/* ---- 2. Mobile menu: opaque backdrop + staggered link entrance ---- */
@media (max-width: 768px) {
  .nav__links { background: rgba(8,11,18,1); }
  :root[data-theme="light"] .nav__links { background: rgba(244,241,234,1); }
  .nav__links > a,
  .nav__links > .lang-switch { opacity: 0; transform: translateY(12px);
    transition: opacity .45s var(--ease), transform .45s var(--ease); }
  .nav__links.open > a,
  .nav__links.open > .lang-switch { opacity: 1; transform: none; }
  .nav__links.open > *:nth-child(1) { transition-delay: .08s; }
  .nav__links.open > *:nth-child(2) { transition-delay: .14s; }
  .nav__links.open > *:nth-child(3) { transition-delay: .20s; }
  .nav__links.open > *:nth-child(4) { transition-delay: .26s; }
  .nav__links.open > *:nth-child(5) { transition-delay: .32s; }
  .nav__links.open > *:nth-child(6) { transition-delay: .38s; }
  .nav__links.open > *:nth-child(7) { transition-delay: .44s; }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .nav__links > a, .nav__links > .lang-switch { transition: none; transform: none; opacity: 1; }
  .nav__links.open > * { transition-delay: 0s; }
}

/* ---- 3. Compact cookie banner on small screens (was burying the hero) ---- */
@media (max-width: 600px) {
  .cookie-bar { padding: 12px 18px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); gap: 10px; }
  .cookie-bar__text { font-size: 12.5px; line-height: 1.45; }
  .cookie-bar__actions { gap: 8px; }
  .cookie-bar__actions .cookie-btn { padding: 9px 14px; font-size: 11px; }
}

/* ---- 5. Safe-area insets for the fixed nav (banner already insets bottom) ---- */
@supports (padding: max(0px)) {
  .nav {
    padding-left: max(var(--gut), env(safe-area-inset-left));
    padding-right: max(var(--gut), env(safe-area-inset-right));
  }
  @media (max-width: 880px) {
    .nav { padding-top: max(14px, env(safe-area-inset-top)); }
  }
}

/* ---- Content-page forward link (replaces per-page CTA on Who We Are / What We Do) ---- */
.page-next { border-top: 1px solid var(--line); }
.page-next .wrap { display: flex; justify-content: flex-end; padding-block: clamp(36px, 5vw, 64px); }
.page-next__link { font-family: var(--serif); font-weight: 300; font-size: clamp(21px, 2.3vw, 32px); letter-spacing: -0.01em; color: var(--fg); text-decoration: none; display: inline-flex; align-items: baseline; gap: 12px; transition: color .3s var(--ease), gap .3s var(--ease); }
/* Italic only for Latin (EN) — CJK serif italics are synthesised and look wrong, so locales stay upright */
:root[data-lang="en"] .page-next__link { font-style: italic; }
.page-next__link .arr { font-style: normal; font-size: .66em; transition: transform .3s var(--ease); }
.page-next__link:hover { color: var(--accent-text); gap: 20px; }
@media (prefers-reduced-motion: reduce){ .page-next__link, .page-next__link .arr { transition: none; } }
