/* ==========================================================================
   Harbour Strategies (HK) Limited
   One stylesheet. No framework, no external requests.
   ========================================================================== */

/* --------------------------------------------------------------- fonts --- */

@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 200 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin-ext.woff2') format('woff2');
  font-weight: 200 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------- tokens -- */

:root {
  --accent: #ec635e;
  --accent-hi: #f4837e;
  --accent-dark: #c4413c;
  --accent-soft: rgba(236, 99, 94, 0.13);

  --ink: #14151a;
  --ink-2: #3c4049;
  --ink-3: #6a6f7a;
  --muted: #9aa0aa;
  --line: #e6e8ec;
  --line-2: #d6d9df;
  --bg: #fff;
  --bg-2: #f5f6f8;
  --bg-3: #eef0f4;
  --surface: #fff;        /* cards, panels, form fields */
  --surface-2: #fff;      /* raised elements on tinted sections */
  --dark: #0f1014;
  --dark-2: #191b21;

  /* Chinese locales get a CJK-first stack so glyphs never fall back badly. */
  --font-display: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-cjk: 'PingFang HK', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei',
    'Noto Sans CJK HK', 'Noto Sans TC', 'Noto Sans SC', sans-serif;

  --wrap: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 88px;
  --r: 3px;
  --r-lg: 6px;

  /* Layered shadows — the core of the depth language. */
  --sh-1: 0 1px 2px rgba(15, 16, 20, 0.05), 0 2px 6px rgba(15, 16, 20, 0.04);
  --sh-2: 0 2px 4px rgba(15, 16, 20, 0.05), 0 8px 18px rgba(15, 16, 20, 0.06),
    0 18px 40px rgba(15, 16, 20, 0.05);
  --sh-3: 0 4px 8px rgba(15, 16, 20, 0.06), 0 14px 30px rgba(15, 16, 20, 0.09),
    0 32px 68px rgba(15, 16, 20, 0.12);
  --sh-dark: 0 18px 50px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body.locale-zh-Hans,
body.locale-zh-Hant {
  --font-display: 'Jost', var(--font-cjk);
  --font-body: 'Inter', var(--font-cjk);
}

/* ------------------------------------------------------------ dark theme -- */
/* Applied by the toggle in the header, or automatically when the visitor's
   system prefers dark and they have not chosen otherwise. Sections that are
   already dark in the light theme are untouched. */

:root[data-theme='dark'] {
  --ink: #eef0f4;
  --ink-2: #c3c8d2;
  --ink-3: #949bab;
  --muted: #6f7787;
  --line: #262a33;
  --line-2: #333844;
  --bg: #101116;
  --bg-2: #16181f;
  --bg-3: #1c1f27;
  --surface: #171a21;
  --surface-2: #1c1f27;

  --accent-dark: #f0908c;   /* links need to lift off a dark page */
  --accent-soft: rgba(236, 99, 94, 0.18);

  --sh-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-2: 0 2px 6px rgba(0, 0, 0, 0.42), 0 10px 24px rgba(0, 0, 0, 0.32);
  --sh-3: 0 4px 10px rgba(0, 0, 0, 0.45), 0 16px 36px rgba(0, 0, 0, 0.4),
    0 32px 68px rgba(0, 0, 0, 0.35);
}

:root[data-theme='dark'] body { background: var(--bg); }

/* Photography carries a lot of white; knock it back so it does not glare. */
:root[data-theme='dark'] .news-card__media img,
:root[data-theme='dark'] .seg-tile__media img,
:root[data-theme='dark'] .gal__slide img,
:root[data-theme='dark'] .about__frame img,
:root[data-theme='dark'] .article__figure img { filter: brightness(0.88); }

:root[data-theme='dark'] .news-card:hover .news-card__media img,
:root[data-theme='dark'] .seg-tile:hover .seg-tile__media img { filter: brightness(1); }

:root[data-theme='dark'] .about__frame--sm { border-color: var(--surface); }
:root[data-theme='dark'] .switcher { background: rgba(16, 17, 22, 0.94); }
:root[data-theme='dark'] .contact__ico img { filter: invert(1) brightness(1.6); }
:root[data-theme='dark'] .jump__link:hover img,
:root[data-theme='dark'] .switcher__link.is-active img { filter: brightness(0) invert(1); }
:root[data-theme='dark'] .map iframe { filter: grayscale(0.35) invert(0.9) hue-rotate(180deg); }

/* ---------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--accent-dark); text-decoration: none; transition: color 0.22s var(--ease); }
a:hover { color: var(--accent); }

ul, ol, dl { margin: 0; padding: 0; list-style: none; }

.i { width: 1em; height: 1em; flex: 0 0 auto; }
.i--arrow { width: 20px; height: 10px; transition: transform 0.3s var(--ease-out); }
.i--cd { width: 11px; height: 8px; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 300;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: var(--r);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; color: #fff; }

section { padding-block: clamp(60px, 7.5vw, 118px); }

/* --------------------------------------------------------------- header -- */
/* Transparent over the hero, resolving into a solid dark bar on scroll.
   Coral is reserved for the active link, nothing else. */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* A soft scrim keeps white nav text legible over bright photography before
   the solid background kicks in. */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.55), rgba(10, 11, 14, 0));
  transition: opacity 0.35s var(--ease);
}
.site-header.is-stuck,
body.header-solid .site-header {
  background: rgba(15, 16, 20, 0.94);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}
.site-header.is-stuck::before,
body.header-solid .site-header::before { opacity: 0; }
body.header-solid .nav__link { text-shadow: none; }

.site-header__inner {
  width: 100%; max-width: 1920px; margin-inline: auto;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  min-height: var(--header-h);
  padding-inline: clamp(20px, 3.4vw, 56px);
  transition: min-height 0.3s var(--ease);
}
.site-header.is-stuck .site-header__inner { min-height: 68px; }

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__mark {
  width: clamp(148px, 15vw, 210px); height: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
  transition: width 0.3s var(--ease);
}
.site-header.is-stuck .brand__mark { width: clamp(130px, 12vw, 172px); }

.site-header__bar {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(8px, 1.6vw, 22px);
}

.nav { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
.nav__list { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 30px); }

.nav__link {
  position: relative; display: inline-block; padding: 10px 2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em; white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.site-header.is-stuck .nav__link { text-shadow: none; }
.nav__link span { position: relative; }
.nav__link span::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--accent); box-shadow: 0 0 12px rgba(236, 99, 94, 0.7);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover span::after, .nav__link.is-active span::after { transform: scaleX(1); }

/* Language */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; font: inherit; font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--r);
  cursor: pointer; backdrop-filter: blur(8px);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.lang__btn:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.42); color: #fff; }
.lang__btn .i--cd { transition: transform 0.22s var(--ease); }
.lang__btn[aria-expanded='true'] .i--cd { transform: rotate(180deg); }

.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 178px; padding: 6px;
  background: rgba(20, 21, 26, 0.97); backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--r-lg);
  box-shadow: var(--sh-dark);
}
.lang__opt { display: block; padding: 10px 14px; font-size: 14px; color: rgba(255, 255, 255, 0.8); border-radius: var(--r); }
.lang__opt:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }
.lang__opt.is-active { color: var(--accent-hi); font-weight: 600; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  color: #fff; background: transparent; border: 0; border-radius: 50%;
  cursor: pointer; transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.icon-btn .i { width: 21px; height: 21px; }

.theme-btn .i--moon { display: none; }
:root[data-theme='dark'] .theme-btn .i--sun { display: none; }
:root[data-theme='dark'] .theme-btn .i--moon { display: block; }

.burger { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; border: 0; cursor: pointer; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------- search panel -- */

.search-panel {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 11, 14, 0.86); backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(80px, 14vh, 180px) var(--gutter) 40px;
  overflow-y: auto;
  animation: fadeIn 0.25s var(--ease-out) both;
}
.search-panel__inner { max-width: 780px; margin-inline: auto; }
.search-panel__field {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 6px 6px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--r-lg);
  box-shadow: var(--sh-dark);
  color: #fff;
}
.search-panel__field .i { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.55); }
.search-panel__field input {
  flex: 1; min-width: 0; padding: 14px 0; font: inherit; font-size: 19px;
  color: #fff; background: transparent; border: 0; outline: none;
}
.search-panel__field input::placeholder { color: rgba(255, 255, 255, 0.42); }
.search-panel__hint { margin: 18px 2px 0; font-size: 14px; color: rgba(255, 255, 255, 0.5); }

.search-results { margin-top: 22px; display: grid; gap: 8px; }
.search-results a {
  display: block; padding: 16px 20px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.search-results a:hover, .search-results a:focus-visible {
  background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.24); transform: translateX(4px);
}
.search-results__kind { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-hi); margin-bottom: 5px; }
.search-results__title { display: block; font-family: var(--font-display); font-size: 18px; color: #fff; }
.search-results__desc { display: block; margin-top: 4px; font-size: 14px; color: rgba(255, 255, 255, 0.58); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 32px; font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--r); cursor: pointer;
  transform-style: preserve-3d;
  transition: background 0.26s var(--ease), color 0.26s var(--ease),
    border-color 0.26s var(--ease), transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease);
}
.btn--lg { padding: 17px 38px; }
.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--block { width: 100%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:hover .i--arrow { transform: translateX(5px); }

.btn--primary {
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 65, 60, 0.32), 0 12px 28px rgba(196, 65, 60, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--primary:hover {
  color: #fff;
  box-shadow: 0 8px 20px rgba(196, 65, 60, 0.38), 0 22px 44px rgba(196, 65, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

/* Translucent glass button — used over photography and in the cookie bar. */
.btn--glass {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px rgba(0, 0, 0, 0.22);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.6); color: #fff; }

.btn--line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--accent); color: var(--accent-dark); box-shadow: var(--sh-1); }

/* ---------------------------------------------------- section furniture -- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 16px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}
.eyebrow__dash { display: inline-block; width: 30px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--accent-hi); }

.sec-head { max-width: 780px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.sec-head--left { margin-inline: 0; text-align: left; }
.sec-head--left .eyebrow { justify-content: flex-start; }
.sec-head__title { font-size: clamp(28px, 3.6vw, 46px); }
.sec-head__title--sm { font-size: clamp(22px, 2.4vw, 30px); }
.sec-head__sub { margin: 20px 0 0; color: var(--ink-3); }
.sec-head--light .sec-head__title { color: #fff; }
.sec-head--light .sec-head__sub { color: rgba(255, 255, 255, 0.72); }

.sec-more { margin: clamp(36px, 4vw, 56px) 0 0; text-align: center; }

/* --------------------------------------------------------- hero slider --- */

.hero {
  position: relative; padding: 0;
  height: 100svh; min-height: 560px; max-height: 1000px;
  overflow: hidden; isolation: isolate; color: #fff;
}
.hero__stage { position: absolute; inset: 0; }

.slide {
  position: absolute; inset: 0;
  display: grid; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease-out), visibility 1s;
}
.slide.is-active { opacity: 1; visibility: visible; }

.slide__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.slide__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(0.82);
  transform: scale(1.12);
  transition: transform 8s linear;
}
.slide.is-active .slide__media img { transform: scale(1); }

/* Depth: vignette + directional gradient + a coral wash at the foot. */
.slide::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 20% 50%, rgba(10, 11, 14, 0.2), rgba(10, 11, 14, 0.86) 100%),
    linear-gradient(92deg, rgba(10, 11, 14, 0.9) 0%, rgba(10, 11, 14, 0.5) 55%, rgba(10, 11, 14, 0.65) 100%),
    linear-gradient(0deg, rgba(196, 65, 60, 0.22) 0%, transparent 42%);
}

.slide__inner { position: relative; max-width: 1100px; padding-top: var(--header-h); }
.slide__index {
  margin: 0 0 18px; font-family: var(--font-display); font-size: 15px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--accent-hi);
}
.slide__index span { color: rgba(255, 255, 255, 0.45); }
.slide__title {
  font-size: clamp(32px, 5.6vw, 78px); font-weight: 300; line-height: 1.06;
  color: #fff; text-transform: uppercase; letter-spacing: 0.005em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.slide__strapline {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin: 26px 0 0; font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.82);
}
.slide__rule { display: inline-block; width: 84px; height: 2px; background: var(--accent); box-shadow: 0 0 18px rgba(236, 99, 94, 0.8); }
.slide__inner .btn { margin-top: 38px; }

/* Slide entrance — staged, subtle upward drift */
.slide.is-active .slide__index,
.slide.is-active .slide__title,
.slide.is-active .slide__strapline,
.slide.is-active .btn { animation: slideUp 0.9s var(--ease-out) both; }
.slide.is-active .slide__title { animation-delay: 0.08s; }
.slide.is-active .slide__strapline { animation-delay: 0.18s; }
.slide.is-active .btn { animation-delay: 0.28s; }
@keyframes slideUp { from { opacity: 0; transform: translate3d(0, 30px, 0); } to { opacity: 1; transform: none; } }

/* The page <h1>: the company positioning line, deliberately quiet so the
   active slide title carries the visual weight. Never hidden — it is the
   document heading. */
.hero__lede { position: absolute; left: 0; right: 0; bottom: 118px; z-index: 3; pointer-events: none; }
.hero__kicker {
  margin: 0; max-width: 640px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 500;
  line-height: 1.6; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero__kicker em { font-style: normal; color: rgba(255, 255, 255, 0.82); }

.hero__arrow {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 4;
  display: grid; place-items: center; width: 58px; height: 58px; padding: 0;
  color: #fff; background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 50%;
  backdrop-filter: blur(8px); cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease-out);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__arrow .i { width: 13px; height: 21px; }
.hero__arrow--prev { left: clamp(12px, 2.4vw, 40px); }
.hero__arrow--next { right: clamp(12px, 2.4vw, 40px); }
.hero__arrow--prev:hover { transform: translate(-3px, -50%); }
.hero__arrow--next:hover { transform: translate(3px, -50%); }

.dots { position: absolute; left: 0; right: 0; bottom: 62px; z-index: 4; display: flex; justify-content: center; gap: 10px; }
.dots__dot {
  position: relative; width: 46px; height: 3px; padding: 0;
  background: rgba(255, 255, 255, 0.28); border: 0; border-radius: 2px;
  cursor: pointer; overflow: hidden;
  transition: background 0.25s var(--ease);
}
.dots__dot:hover { background: rgba(255, 255, 255, 0.5); }
.dots__fill { position: absolute; inset: 0; width: 0; background: var(--accent); box-shadow: 0 0 12px rgba(236, 99, 94, 0.9); }
.dots__dot.is-active .dots__fill { width: 100%; transition: width var(--slide-ms, 6500ms) linear; }
.dots__dot.is-active.is-paused .dots__fill { transition: none; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; translate: -50% 0; z-index: 4;
  width: 24px; height: 38px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 13px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 7px; translate: -50% 0;
  width: 3px; height: 7px; background: #fff; border-radius: 2px;
  animation: scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(13px); }
}

/* --------------------------------------------------------- page banner --- */

.page-banner {
  position: relative; display: grid; align-items: end;
  min-height: clamp(340px, 52vh, 520px);
  padding-block: calc(var(--header-h) + 40px) clamp(48px, 6vw, 76px);
  color: #fff; overflow: hidden; isolation: isolate;
}
.page-banner__media { position: absolute; inset: -6% 0; z-index: -2; will-change: transform; }
.page-banner__bg { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.85) brightness(0.8); }
.page-banner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(92deg, rgba(10, 11, 14, 0.9), rgba(10, 11, 14, 0.5) 70%),
    linear-gradient(0deg, rgba(10, 11, 14, 0.75), transparent 55%);
}
.page-banner__inner { max-width: 880px; }
.page-banner__title {
  font-size: clamp(30px, 4.6vw, 58px); font-weight: 300; color: #fff; text-transform: uppercase;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}
.page-banner__sub { margin: 20px 0 0; max-width: 660px; color: rgba(255, 255, 255, 0.82); }

/* --------------------------------------------------------- breadcrumbs --- */

.crumbs { padding: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 15px; font-size: 13px; color: var(--ink-3); }
.crumbs li + li::before { content: '›'; margin-right: 8px; color: var(--muted); }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--accent-dark); }

/* -------------------------------------------------------------- ticker --- */

.ticker { padding: 0; overflow: hidden; background: var(--dark); color: #fff; }
.ticker__track { display: flex; align-items: center; gap: 24px; padding-block: 15px; width: max-content; animation: marquee 30s linear infinite; }
.ticker__item { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.ticker__dot { color: var(--accent); font-size: 7px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ 3D cards --- */

.tilt { transform-style: preserve-3d; will-change: transform; }

.segments { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(16px, 2vw, 26px); }

.svc-card {
  position: relative; display: flex; flex-direction: column; gap: 15px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  color: inherit; overflow: hidden; box-shadow: var(--sh-1);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.35s var(--ease-out);
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-out);
}
.svc-card__glow {
  position: absolute; inset: -40%; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(236, 99, 94, 0.16), transparent 55%);
  transition: opacity 0.4s var(--ease);
}
.svc-card:hover { border-color: transparent; box-shadow: var(--sh-3); color: inherit; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover .svc-card__glow { opacity: 1; }

.svc-card__icon { width: 46px; height: 46px; transform: translateZ(28px); transition: transform 0.4s var(--ease-out); }
.svc-card:hover .svc-card__icon { transform: translateZ(38px) scale(1.06); }
.svc-card__title { font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; transform: translateZ(18px); transition: color 0.25s var(--ease); }
.svc-card:hover .svc-card__title { color: var(--accent-dark); }
.svc-card__text { margin: 0; font-size: 15px; color: var(--ink-3); flex: 1; transform: translateZ(10px); }
.svc-card__more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); transform: translateZ(14px);
}
.svc-card:hover .i--arrow { transform: translateX(6px); }

/* --------------------------------------------------------------- stats --- */

.stats {
  position: relative; padding-block: clamp(52px, 6vw, 84px);
  background: radial-gradient(90% 140% at 50% 0%, var(--dark-2), var(--dark));
  color: #fff; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(236, 99, 94, 0.15), transparent 70%);
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 4vw, 60px); text-align: center; }
.stat { position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: calc(clamp(28px, 4vw, 60px) / -2); top: 12%; height: 76%;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.stat__value {
  margin: 0; font-family: var(--font-display); font-size: clamp(44px, 5.6vw, 70px);
  font-weight: 300; line-height: 1; color: var(--accent-hi);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 30px rgba(236, 99, 94, 0.45);
}
.stat__unit { margin: 12px 0 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: #fff; }
.stat__label { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.6); }

/* ----------------------------------------------------------- why cards --- */

.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.why-card {
  position: relative; padding: clamp(30px, 3vw, 42px) clamp(28px, 3vw, 40px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: box-shadow 0.4s var(--ease), transform 0.35s var(--ease-out);
}
.why-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease-out);
}
.why-card:hover { box-shadow: var(--sh-3); }
.why-card:hover::before { transform: scaleY(1); }
.why-card__num {
  position: absolute; right: 18px; top: 6px;
  font-family: var(--font-display); font-size: 72px; font-weight: 500; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(236, 99, 94, 0.28);
  transition: -webkit-text-stroke-color 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.why-card:hover .why-card__num { -webkit-text-stroke-color: rgba(236, 99, 94, 0.55); transform: translateY(-3px); }
.why-card__title { position: relative; font-size: 20px; margin-bottom: 12px; transform: translateZ(14px); }
.why-card__desc { position: relative; margin: 0; font-size: 15px; color: var(--ink-3); transform: translateZ(8px); }

/* ---------------------------------------------------------------- news --- */

.news-sec { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.news-sec--related { background: var(--bg-2); border-top: 1px solid var(--line); text-align: center; }
.news-sec--related .news-grid { text-align: left; margin-top: 40px; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(20px, 2.4vw, 34px); }

.news-card {
  position: relative;
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1);
  transition: box-shadow 0.4s var(--ease), transform 0.35s var(--ease-out);
}
.news-card:hover { box-shadow: var(--sh-3); }
.news-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.06); filter: grayscale(0); }
.news-card__body { padding: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.news-card__date { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.news-card__title { font-size: 21px; line-height: 1.3; }
.news-card__title a { color: var(--ink); }
/* Stretched link: the title anchor covers the whole tile, so the entire card is
   one hit target while the accessible name stays the headline. */
.news-card__title a::after { content: ''; position: absolute; inset: 0; z-index: 2; }
.news-card__title a:hover { color: var(--accent-dark); }
.news-card__excerpt { margin: 0; font-size: 15px; color: var(--ink-3); flex: 1; }
.news-card__more { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.news-card:hover .i--arrow { transform: translateX(6px); }

.newsroom-note {
  max-width: 70ch; margin: clamp(32px, 4vw, 48px) auto 0;
  padding: 16px 20px; font-size: 13px; color: var(--ink-3);
  background: var(--bg-3); border-left: 3px solid var(--line-2); border-radius: var(--r);
}

/* --------------------------------------------------------------- about --- */

.about__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 5vw, 84px); align-items: center; }
.about__media { position: relative; padding-bottom: 72px; perspective: 1400px; }
.about__frame { margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.about__frame--lg { box-shadow: var(--sh-3); transform: rotateY(4deg) rotateX(1.5deg); transition: transform 0.6s var(--ease-out); }
.about__frame--lg:hover { transform: rotateY(0deg) rotateX(0deg); }
.about__frame--lg img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about__frame--sm {
  position: absolute; right: -6%; bottom: 0; width: 54%;
  border: 7px solid #fff; box-shadow: var(--sh-3);
}
.about__frame--sm img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.about__lede { font-size: clamp(17px, 1.7vw, 21px); color: var(--ink); line-height: 1.65; }
.about__lede strong { font-family: var(--font-display); font-weight: 500; color: var(--accent-dark); }
.about__actions { margin-top: 32px; }

/* ------------------------------------------------------------ services --- */

.jump { padding: 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--sh-1); position: relative; z-index: 2; }
.jump__inner { display: flex; gap: 10px; padding-block: 18px; overflow-x: auto; scrollbar-width: thin; }
.jump__link {
  display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto;
  padding: 11px 18px; font-size: 13px; font-weight: 500; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px; white-space: nowrap;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease), transform 0.24s var(--ease-out);
}
.jump__link:hover {
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  border-color: transparent; color: #fff; transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 65, 60, 0.3);
}
.jump__link:hover img { filter: brightness(0) invert(1); }
.jump__link img { width: 20px; height: 20px; }

.svc { scroll-margin-top: calc(var(--header-h) + 24px); }
.svc--alt { background: var(--bg-2); }

.svc__head { display: flex; gap: clamp(18px, 2.2vw, 30px); align-items: flex-start; margin-bottom: 30px; }
.svc__icon-wrap {
  display: grid; place-items: center; flex: 0 0 auto;
  width: clamp(60px, 6vw, 78px); height: clamp(60px, 6vw, 78px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.svc__icon { width: 60%; height: auto; }
.svc__title { font-size: clamp(24px, 3.2vw, 40px); text-transform: uppercase; font-weight: 300; }
.svc__strapline { margin: 12px 0 0; font-size: clamp(15px, 1.5vw, 19px); color: var(--ink-3); }
.svc__intro { max-width: 84ch; font-size: 17px; color: var(--ink-2); }
.svc__outro {
  max-width: 84ch; margin-top: 30px; padding: 20px 24px;
  background: var(--surface); border-left: 3px solid var(--accent); border-radius: var(--r);
  box-shadow: var(--sh-1); color: var(--ink-2);
}
.svc--alt .svc__outro { background: var(--surface); }
.svc__sub { margin: 38px 0 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
.svc__back { margin-top: 36px; font-size: 13px; }
.svc__back a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-3); }
.svc__back .i { width: 14px; height: 14px; }

.ticks { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 11px 36px; }
.ticks li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 0.6em; width: 13px; height: 7px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.ticks--tight { margin-top: 14px; grid-template-columns: 1fr; gap: 7px; }

.deflist__row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.deflist__row:first-child { border-top: 1px solid var(--line); }
.deflist dt { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.deflist dd { margin: 0; font-size: 15px; color: var(--ink-3); }

.numbered { display: grid; }
.numbered__item { display: flex; gap: clamp(18px, 2.2vw, 32px); padding: 26px 0; border-bottom: 1px solid var(--line); }
.numbered__item:last-child { border-bottom: 0; }
.numbered__num {
  flex: 0 0 auto; font-family: var(--font-display); font-size: 40px; font-weight: 400; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(236, 99, 94, 0.5);
}
.numbered__title { font-size: 19px; text-transform: uppercase; margin-bottom: 10px; }
.numbered__body p { font-size: 15px; color: var(--ink-3); margin: 0; }

.svc__gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 42px; perspective: 1400px; }
.svc__shot { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); transition: box-shadow 0.4s var(--ease), transform 0.35s var(--ease-out); }
.svc__shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: grayscale(0.35); transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease); }
.svc__shot:hover { box-shadow: var(--sh-3); }
.svc__shot:hover img { transform: scale(1.05); filter: grayscale(0); }

/* ------------------------------------------------------------ article --- */

/* No page banner here, so the article has to clear the fixed header itself —
   otherwise the breadcrumbs sit underneath it and stop being clickable. */
.article { padding: calc(var(--header-h) + 8px) 0 0; }
.article__head { padding-block: clamp(48px, 6vw, 84px) 34px; text-align: center; }
.article__head .wrap { max-width: 880px; }
.article__head .eyebrow { justify-content: center; }
.article__title { margin: 14px 0 0; font-size: clamp(28px, 3.8vw, 50px); font-weight: 300; }
.article__standfirst { margin: 22px 0 0; font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-3); }
.article__figure { margin: 0; padding-inline: var(--gutter); }
.article__figure-inner { max-width: 1100px; margin-inline: auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); }
.article__figure img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.article__body { max-width: 780px; padding-block: clamp(40px, 5vw, 64px) clamp(52px, 6vw, 88px); }
.article__body p { font-size: 17.5px; line-height: 1.8; }
/* The opening paragraph carries the weight through size, not a drop cap —
   ::first-letter also leaked into figure values like "100 Wh". */
.article__body > p:first-of-type {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.7;
  color: var(--ink);
}
.article__signoff {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

/* ----------------------------------------------------- article figures --- */
/* Charts here are single-hue magnitude, not categorical identity, so no legend
   is needed. Lighter bar steps fall under 3:1 against the page, so every bar
   carries a visible value label and the same numbers repeat in a table. */

.fig { margin: clamp(30px, 3.4vw, 44px) 0; }
.fig__cap { margin-top: 12px; font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }
.fig__note {
  margin: 0 0 14px; padding: 8px 13px; display: inline-block;
  font-size: 12.5px; color: var(--ink-2);
  background: var(--bg-3); border-left: 3px solid var(--muted); border-radius: var(--r);
}

.fig__scroll { overflow-x: auto; }
.fig__table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.fig__table th, .fig__table td {
  padding: 12px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.fig__table thead th {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.fig__table tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
.fig__table td { color: var(--ink-2); }
.fig__table tbody tr:last-child th, .fig__table tbody tr:last-child td { border-bottom: 0; }

/* Bars: 4px rounded data-end, anchored to the baseline, recessive track. */
.bars { display: grid; gap: 10px; }
.bars__row { display: grid; grid-template-columns: minmax(96px, 30%) 1fr auto; align-items: center; gap: 14px; }
.bars__label { font-size: 13px; color: var(--ink-3); }
.bars__track { height: 14px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.bars__fill {
  display: block; width: var(--w); height: 100%;
  background: #f3a9a5; border-radius: 0 4px 4px 0;
}
.bars__fill.is-hi { background: var(--accent); }
.bars__value { font-size: 13px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.fig__data { margin-top: 14px; }
.fig__data summary { font-size: 13px; color: var(--ink-3); cursor: pointer; }
.fig__data summary:hover { color: var(--accent-dark); }
.fig__data .fig__table { margin-top: 10px; max-width: 340px; }

/* Key facts */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.facts__item { padding: 22px 24px; background: var(--surface); }
.facts__value { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 400; line-height: 1; color: var(--accent-dark); }
.facts__label { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-3); }

/* Process timeline */
.steps { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.steps__item { display: flex; gap: 18px; padding: 18px 22px; background: var(--surface); }
.steps__time {
  flex: 0 0 auto; min-width: 76px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--accent); padding-top: 2px;
}
.steps__title { margin: 0 0 4px; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.steps__desc { margin: 0; font-size: 14px; color: var(--ink-3); }

@media (max-width: 640px) {
  .bars__row { grid-template-columns: 1fr auto; }
  .bars__track { grid-column: 1 / -1; }
  .steps__item { flex-direction: column; gap: 6px; }
}

/* ---------------------------------------------------------- prose pages -- */

.prose { padding-block: clamp(52px, 6vw, 92px); }
.prose__wrap { max-width: 820px; }
.prose__block + .prose__block { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.prose__block h2 { font-size: clamp(20px, 2.2vw, 27px); margin-bottom: 14px; }
.prose__block p { font-size: 16.5px; color: var(--ink-2); }
.credit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 28px; }
.credit-list li { font-size: 14px; color: var(--ink-3); }

/* ------------------------------------------------------------ contact --- */

.contact__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.contact__name { font-size: clamp(21px, 2.2vw, 28px); text-transform: uppercase; font-weight: 400; margin-bottom: 32px; }
.contact__list { display: grid; gap: 24px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  display: grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-1);
}
.contact__ico img { width: 20px; height: 20px; }
.contact__label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact__list a { color: var(--ink-2); }
.contact__list a:hover { color: var(--accent-dark); }
.contact__meta { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 15px; }
.contact__reg { font-size: 13px; color: var(--muted); }

.contact__form-wrap {
  padding: clamp(28px, 3.4vw, 48px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.contact__form-title { font-size: clamp(20px, 2vw, 26px); }
.contact__form-sub { margin: 10px 0 28px; font-size: 14px; color: var(--ink-3); }
.contact__form-sub span, .field label span { color: var(--accent); }

.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--surface); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); outline: none;
}
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--accent-dark); }
.field__error { margin: 7px 0 0; font-size: 13px; color: var(--accent-dark); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin: 18px 0 0; font-size: 14px; }
.form__status.is-ok { color: #1c7a4a; }
.form__status.is-err { color: var(--accent-dark); }

.map { padding: 0; position: relative; }
.map iframe { display: block; width: 100%; height: clamp(320px, 44vh, 480px); border: 0; filter: grayscale(0.3); }
.map__link { margin: 0; padding: 16px var(--gutter); text-align: center; font-size: 14px; background: var(--bg-2); border-top: 1px solid var(--line); }
.map__link a { display: inline-flex; align-items: center; gap: 10px; }

/* ------------------------------------------------------------ CTA band --- */

.cta { position: relative; text-align: center; color: #fff; overflow: hidden; isolation: isolate; }
.cta__media { position: absolute; inset: -6% 0; z-index: -2; will-change: transform; }
.cta__bg { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.9) brightness(0.7); }
.cta::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 50% 50%, rgba(12, 13, 17, 0.72), rgba(12, 13, 17, 0.93)),
    linear-gradient(0deg, rgba(196, 65, 60, 0.18), transparent 60%);
}
.cta__inner { max-width: 900px; }
.cta__inner .eyebrow { justify-content: center; }
.cta__title { font-size: clamp(25px, 3.2vw, 42px); color: #fff; text-transform: uppercase; font-weight: 300; }
.cta__sub { margin: 22px auto 0; max-width: 640px; color: rgba(255, 255, 255, 0.74); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }

/* -------------------------------------------------------------- footer --- */

.site-footer { position: relative; padding-block: clamp(54px, 6vw, 84px) 0; background: var(--dark); color: rgba(255, 255, 255, 0.66); font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: clamp(30px, 4vw, 60px); padding-bottom: clamp(40px, 4vw, 60px); }
.footer__brand img { width: 200px; opacity: 0.95; }
.footer__tagline { margin: 20px 0 0; max-width: 36ch; font-size: 14px; }
.footer__heading { margin: 0 0 20px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: rgba(255, 255, 255, 0.66); }
.footer__col a:hover { color: var(--accent-hi); }
.footer__contact li { line-height: 1.65; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between;
  padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px; color: rgba(255, 255, 255, 0.45);
}
.footer__legal p { margin: 0; }
.footer__legal a { color: rgba(255, 255, 255, 0.6); }
.footer__legal a:hover { color: var(--accent-hi); }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: grid; place-items: center; width: 46px; height: 46px; padding: 0;
  color: #fff; background: rgba(20, 21, 26, 0.82); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%; backdrop-filter: blur(10px); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  box-shadow: var(--sh-dark);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-out), visibility 0.3s, background 0.22s var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); }
.to-top .i { width: 17px; height: 17px; }

/* ------------------------------------------------------- cookie banner --- */

.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; padding: 0 var(--gutter) clamp(14px, 2vw, 24px); }
.cookie__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--wrap); margin-inline: auto; padding: 20px clamp(20px, 2.4vw, 30px);
  background: rgba(18, 19, 24, 0.92); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.13); border-radius: var(--r-lg);
  box-shadow: var(--sh-dark);
  animation: cookieIn 0.5s var(--ease-out) both;
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie__title { margin: 0 0 6px; font-family: var(--font-display); font-size: 17px; color: #fff; }
.cookie__body { margin: 0; max-width: 74ch; font-size: 14px; color: rgba(255, 255, 255, 0.68); }
.cookie__body a { color: var(--accent-hi); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 12px; flex: 0 0 auto; }

/* ------------------------------------------------------- theme notice --- */
/* Sits under the header on the right, so it visually points at the toggle it
   is telling you about. */

.theme-notice {
  position: fixed; z-index: 140;
  top: calc(68px + 14px); right: clamp(14px, 2.4vw, 28px);
  width: min(340px, calc(100vw - 28px));
  animation: noticeIn 0.45s var(--ease-out) both;
}
.theme-notice.is-leaving { animation: noticeOut 0.35s var(--ease) forwards; }

.theme-notice__inner {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 16px 16px 18px;
  background: rgba(20, 21, 26, 0.94); backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--r-lg);
  box-shadow: var(--sh-dark);
  color: #fff;
}
.theme-notice__icon {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 34px; height: 34px; margin-top: 1px;
  color: var(--accent-hi);
  background: rgba(236, 99, 94, 0.16); border-radius: 50%;
}
.theme-notice__icon .i { width: 17px; height: 17px; }
.theme-notice__icon .i--moon { display: none; }
:root[data-theme='dark'] .theme-notice__icon .i--sun { display: none; }
:root[data-theme='dark'] .theme-notice__icon .i--moon { display: block; }

.theme-notice__text { flex: 1; min-width: 0; }
.theme-notice__title { margin: 0 0 5px; font-family: var(--font-display); font-size: 15.5px; color: #fff; }
.theme-notice__body { margin: 0; font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.66); }

.theme-notice__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex: 0 0 auto; }
.theme-notice__switch {
  padding: 7px 12px; font: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; color: #fff; white-space: nowrap;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--r); cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}
.theme-notice__switch:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); }
.theme-notice__close {
  display: grid; place-items: center; width: 26px; height: 26px; padding: 0;
  color: rgba(255, 255, 255, 0.55); background: transparent; border: 0; cursor: pointer;
  transition: color 0.2s var(--ease);
}
.theme-notice__close:hover { color: #fff; }
.theme-notice__close .i { width: 13px; height: 13px; }

@keyframes noticeIn {
  from { opacity: 0; transform: translate3d(24px, -8px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes noticeOut {
  to { opacity: 0; transform: translate3d(24px, -8px, 0); }
}

@media (max-width: 640px) {
  .theme-notice { top: auto; bottom: 14px; right: 14px; left: 14px; width: auto; }
  .theme-notice__actions { flex-direction: row-reverse; align-items: center; }
}

/* ----------------------------------------------------------------- 404 --- */

.page-404 .site-header { background: rgba(15, 16, 20, 0.94); }
.page-404 .site-header::before { opacity: 0; }
.notfound { min-height: 78vh; display: grid; place-items: center; text-align: center; padding-block: 120px; }
.notfound .eyebrow { justify-content: center; }
.notfound__title { font-size: clamp(28px, 4vw, 48px); font-weight: 300; }
.notfound__body { margin: 20px 0 32px; color: var(--ink-3); }

/* --------------------------------------------------------------- anim --- */

.js .reveal {
  opacity: 0; translate: 0 26px;
  transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .reveal.is-in { opacity: 1; translate: none; }

/* -------------------------------------------------- segment hub tiles --- */

.seg-index__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(18px, 2.2vw, 30px); }

.seg-tile {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden; color: inherit;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.seg-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); color: inherit; }
.seg-tile__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.seg-tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) brightness(0.86);
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease);
}
.seg-tile:hover .seg-tile__media img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
.seg-tile__body { position: relative; display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 2.6vw, 34px); flex: 1; }
.seg-tile__index {
  position: absolute; right: clamp(20px, 2.4vw, 30px); top: -30px;
  font-family: var(--font-display); font-size: 54px; font-weight: 300; line-height: 1;
  color: #fff; opacity: 0.9; text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}
.seg-tile__icon { width: 34px; height: 34px; }
.seg-tile__title { font-family: var(--font-display); font-size: 21px; color: var(--ink); text-transform: uppercase; transition: color 0.25s var(--ease); }
.seg-tile:hover .seg-tile__title { color: var(--accent-dark); }
.seg-tile__text { font-size: 15px; color: var(--ink-3); flex: 1; }
.seg-tile__more { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.seg-tile:hover .i--arrow { transform: translateX(6px); }

/* ------------------------------------------------------- segment hero --- */

.seg-hero {
  position: relative; display: grid; align-items: end;
  min-height: clamp(360px, 58vh, 580px);
  padding-block: calc(var(--header-h) + 48px) clamp(52px, 6vw, 84px);
  color: #fff; overflow: hidden; isolation: isolate;
}
.seg-hero__media { position: absolute; inset: -6% 0; z-index: -2; will-change: transform; }
.seg-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.8); }
.seg-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 20% 60%, rgba(10, 11, 14, 0.25), rgba(10, 11, 14, 0.88)),
    linear-gradient(0deg, rgba(196, 65, 60, 0.2), transparent 45%);
}
.seg-hero__inner { max-width: 960px; }
.seg-hero__title {
  font-size: clamp(30px, 5vw, 66px); font-weight: 300; line-height: 1.06;
  color: #fff; text-transform: uppercase; text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}
.seg-hero__strapline {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin: 22px 0 0; font-size: clamp(15px, 1.5vw, 19px); color: rgba(255, 255, 255, 0.82);
}
.seg-hero__rule { display: inline-block; width: 80px; height: 2px; background: var(--accent); box-shadow: 0 0 18px rgba(236, 99, 94, 0.8); }

/* ----------------------------------------- segment layout & switcher --- */

.seg__grid {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(32px, 4.5vw, 80px); align-items: start;
}

/* Sidebar list of segments — sticks beside the content while it scrolls. */
.seg__aside { position: sticky; top: calc(68px + 32px); }
.seg-list__heading {
  margin: 0 0 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.seg-list ul { display: grid; }
.seg-list__link {
  position: relative; display: block; padding: 15px 0;
  font-family: var(--font-display); font-size: clamp(15px, 1.15vw, 17px); font-weight: 400;
  line-height: 1.35; letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid transparent;
  transition: color 0.24s var(--ease), border-color 0.24s var(--ease), transform 0.24s var(--ease-out);
}
.seg-list__link::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.seg-list__link:hover { color: var(--accent-dark); transform: translateX(4px); }
.seg-list__link.is-active { color: var(--accent); }
.seg-list__link.is-active::after { transform: scaleX(1); }

/* ---------------------------------------------------- segment gallery --- */

.gal { position: relative; }
.gal__stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3); background: var(--bg-3); aspect-ratio: 16 / 9;
}
.gal__slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.gal__slide.is-active { opacity: 1; visibility: visible; }
.gal__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 7s linear; }
.gal__slide.is-active img { transform: scale(1); }

.gal__arrow {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 3;
  display: grid; place-items: center; width: 52px; height: 52px; padding: 0;
  color: #fff; background: rgba(15, 16, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%;
  backdrop-filter: blur(10px); cursor: pointer; opacity: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease-out), opacity 0.25s var(--ease);
}
.gal:hover .gal__arrow, .gal__arrow:focus-visible { opacity: 1; }
.gal__arrow:hover { background: var(--accent); border-color: var(--accent); }
.gal__arrow .i { width: 12px; height: 19px; }
.gal__arrow--prev { left: 18px; }
.gal__arrow--next { right: 18px; }
.gal__arrow--prev:hover { transform: translate(-3px, -50%); }
.gal__arrow--next:hover { transform: translate(3px, -50%); }

.gal__counter {
  position: absolute; left: 18px; bottom: 16px; z-index: 3; margin: 0;
  padding: 7px 15px; font-family: var(--font-display); font-size: 14px;
  letter-spacing: 0.1em; color: #fff;
  background: rgba(15, 16, 20, 0.48); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px; backdrop-filter: blur(10px);
}
.gal__counter-total { color: rgba(255, 255, 255, 0.55); margin-left: 4px; }

.gal__dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.gal__dot {
  position: relative; width: 26px; height: 6px; padding: 0;
  background: var(--line-2); border: 0; border-radius: 100px;
  cursor: pointer; overflow: hidden;
  transition: background 0.25s var(--ease), width 0.3s var(--ease-out);
}
.gal__dot:hover { background: var(--muted); }
.gal__dot.is-active { width: 34px; background: var(--accent-soft); }
.gal__dot-fill { position: absolute; inset: 0; width: 0; background: var(--accent); border-radius: 100px; }
.gal__dot.is-active .gal__dot-fill { width: 100%; transition: width var(--slide-ms, 5200ms) linear; }
.gal__dot.is-active.is-paused .gal__dot-fill { transition: none; }

/* --------------------------------------------------- segment content --- */

.seg__head { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 26px); margin-top: clamp(40px, 4vw, 62px); }
.seg__icon { width: clamp(42px, 4vw, 54px); height: auto; flex: 0 0 auto; }
.seg__title { font-size: clamp(25px, 3.2vw, 42px); font-weight: 300; text-transform: uppercase; }
.seg__strapline { margin: 20px 0 0; font-size: clamp(16px, 1.6vw, 20px); color: var(--accent); }
.seg__intro { margin-top: 20px; max-width: 82ch; font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.seg__sub {
  margin: clamp(34px, 3.4vw, 48px) 0 18px; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
}
.seg__outro {
  max-width: 82ch; margin-top: clamp(28px, 3vw, 40px); padding: 22px 26px;
  font-size: 15.5px; color: var(--ink-2);
  background: var(--bg-2); border-left: 3px solid var(--accent); border-radius: var(--r);
}
.seg__cta { margin-top: clamp(36px, 4vw, 52px); }

/* -------------------------------------------------------- segment nav -- */

.seg-nav { padding-block: clamp(28px, 3vw, 44px); border-top: 1px solid var(--line); }
.seg-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.seg-nav__link { display: inline-flex; align-items: center; gap: 14px; max-width: 40%; color: var(--ink); }
.seg-nav__link .i { width: 11px; height: 18px; color: var(--accent); transition: transform 0.25s var(--ease-out); }
.seg-nav__link--prev:hover .i { transform: translateX(-4px); }
.seg-nav__link--next:hover .i { transform: translateX(4px); }
.seg-nav__link--next { text-align: right; }
.seg-nav__label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.seg-nav__title { display: block; font-family: var(--font-display); font-size: 16px; line-height: 1.3; }
.seg-nav__link:hover .seg-nav__title { color: var(--accent-dark); }
.seg-nav__all {
  flex: 0 0 auto; padding: 10px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 100px;
  transition: border-color 0.24s var(--ease), color 0.24s var(--ease);
}
.seg-nav__all:hover { border-color: var(--accent); color: var(--accent-dark); }

/* --------------------------------------------------------------- globe -- */

.reach {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 70% 30%, var(--dark-2), var(--dark));
  color: #fff;
}
.reach::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 78% 45%, rgba(236, 99, 94, 0.1), transparent 70%);
}
.reach__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.reach__title { font-size: clamp(26px, 3.4vw, 44px); font-weight: 300; color: #fff; text-transform: uppercase; }
.reach__sub { margin: 22px 0 0; max-width: 52ch; color: rgba(255, 255, 255, 0.68); }
.reach__legend-title {
  margin: clamp(30px, 3vw, 44px) 0 16px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-hi);
}

.globe__legend { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.globe__legend li { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.globe__legend li.is-main { color: #fff; font-weight: 600; }
.globe__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); }
.globe__legend li.is-main .globe__dot { background: var(--accent); box-shadow: 0 0 12px rgba(236, 99, 94, 0.9); }

.reach__globe { display: grid; place-items: center; }
.globe { width: 100%; max-width: 560px; display: grid; place-items: center; cursor: grab; touch-action: pan-y; }
.globe.is-dragging { cursor: grabbing; }
.globe__canvas { display: block; max-width: 100%; }

/* ---------------------------------------------------------- responsive --- */

@media (max-width: 1080px) {
  .about__grid, .contact__grid, .seg__grid, .reach__grid { grid-template-columns: 1fr; }
  /* The segment list becomes a horizontal scroller above the gallery. */
  .seg__aside { position: static; }
  .seg-list ul { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .seg-list ul::-webkit-scrollbar { display: none; }
  .seg-list__link {
    flex: 0 0 auto; padding: 10px 17px; font-size: 13px; white-space: nowrap;
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px;
  }
  .seg-list__link::after { display: none; }
  .seg-list__link:hover { transform: none; border-color: var(--accent); }
  .seg-list__link.is-active {
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    border-color: transparent; color: #fff;
  }
  .about__media { padding-bottom: 0; }
  .about__frame--lg { transform: none; }
  .about__frame--sm { position: static; width: 100%; margin-top: 16px; border: 0; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  :root { --header-h: 68px; }

  .burger { display: block; }
  .site-header__bar { justify-content: flex-end; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - var(--header-h));
    padding: 12px var(--gutter) 28px;
    background: rgba(15, 16, 20, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--sh-dark);
    overflow-y: auto;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease-out), visibility 0.28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: 16px 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); font-size: 16px; }
  .nav__link span::after { display: none; }
  .lang { margin-top: 20px; }
  .lang__btn { width: 100%; justify-content: space-between; }
  .lang__menu { position: static; margin-top: 8px; box-shadow: none; }
  body.nav-open { overflow: hidden; }

  .stat + .stat::before { display: none; }
  .hero__arrow { width: 46px; height: 46px; }
  .hero__lede { bottom: 96px; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 24px; font-size: 12px; }
  .gal__arrow { width: 40px; height: 40px; }
  .gal__thumb { width: 76px; }
  .seg-nav__inner { flex-wrap: wrap; gap: 14px; }
  .seg-nav__link { max-width: none; flex: 1 1 100%; }
  .seg-nav__link--next { justify-content: flex-end; }
  .seg-nav__all { order: 3; margin-inline: auto; }
  .btn--lg { padding: 15px 28px; }
  .hero { height: 88svh; }
  .svc__head { flex-direction: column; gap: 16px; }
  .numbered__item { flex-direction: column; gap: 12px; }
  .footer__legal { justify-content: flex-start; }
  .cookie__inner { flex-direction: column; align-items: stretch; }
  .cookie__actions .btn { flex: 1; }
  .to-top { right: 14px; bottom: 14px; }
}

/* ---------------------------------------------------------------- a11y --- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; translate: none; }
  .ticker__track, .globe__ring { animation: none; }
  .slide__media img { transform: none; }
}

@media print {
  .site-header, .cta, .map, .hero, .jump, .to-top, .cookie, .search-panel { display: none !important; }
  body { color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 11px; color: #555; }
}
