@charset "utf-8";
/* ==========================================================================
   AMG TECHNOLOGY (HK) LIMITED — design system
   Palette: brand red / graphite grey / black. Accent kept under ~5% of area.
   Type: Kodchasan (display, from the logo) + Inter (text) + system CJK.
   ========================================================================== */

@import url("../fonts/fonts.css");

/* --------------------------------------------------------------- tokens - */
:root {
  /* neutrals */
  --ink: #0b0c0e;
  --carbon: #131519;
  --graphite: #1d2026;
  --steel: #2b2f36;
  --grey: #575656;
  --grey-2: #8b8e93;
  --grey-3: #c9cacc;
  --mist: #f1f1ef;
  --mist-2: #e6e6e3;
  --paper: #ffffff;

  /* brand */
  --red: #d51f26;
  --red-hi: #ff3b30;
  --red-dk: #9e1219;

  /* lines */
  --line-d: rgba(255, 255, 255, .12);
  --line-l: #dcdcd9;

  /* type */
  --display: "Kodchasan", "Trebuchet MS", system-ui, sans-serif;
  --text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cjk: "PingFang HK", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
         "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;

  /* metrics */
  --shell: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 84px;
  --nav-h-sm: 64px;
  --sect: clamp(72px, 9vw, 132px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html[lang^="zh"] {
  --display: "Kodchasan", "PingFang HK", "PingFang SC", "Microsoft YaHei", sans-serif;
  --text: "Inter", "PingFang HK", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.66;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-hi);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

.sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ----------------------------------------------------------- typography - */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

.h-xl { font-size: clamp(1.95rem, 6.1vw, 4.9rem); }
.h-lg { font-size: clamp(1.72rem, 4.1vw, 3.35rem); }
.h-md { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
.h-sm { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }

.light { font-weight: 300; letter-spacing: -.02em; }

.eyebrow {
  font-family: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow { flex-wrap: wrap; }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  transform: skewX(-24deg);
  flex: none;
}
.eyebrow.is-plain::before { display: none; }

.lede {
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.62;
  font-weight: 300;
  color: #3a3d42;
  max-width: 62ch;
}
.on-dark .lede, .sect--dark .lede, .sect--ink .lede, .cta .lede,
.feature--dark .lede { color: #b9bcc1; }

.muted { color: var(--grey); }
.sect--dark .muted, .sect--ink .muted, .on-dark .muted { color: var(--grey-2); }

/* --------------------------------------------------------------- layout - */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1560px; }

.sect { padding-block: var(--sect); position: relative; }
.sect--mist { background: var(--mist); }
.sect--dark { background: var(--carbon); color: #e8e9ea; }
.sect--ink  { background: var(--ink); color: #e8e9ea; }
.sect--tight { padding-block: clamp(48px, 6vw, 84px); }

.sect--dark h1, .sect--dark h2, .sect--dark h3,
.sect--ink h1, .sect--ink h2, .sect--ink h3 { color: #fff; }

.grid { display: grid; gap: clamp(24px, 3.2vw, 46px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-52 { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: start; }

@media (max-width: 1020px) {
  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .g-2, .g-3, .g-4, .g-52 { grid-template-columns: minmax(0, 1fr); }
}

.head { max-width: 74ch; margin-bottom: clamp(34px, 4vw, 58px); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------- accent - */
/* the brand's angled slash, reused as a decorative rule */
.slashes { display: flex; gap: 6px; align-items: center; }
.slashes i {
  display: block; width: 34px; height: 5px; background: var(--red);
  transform: skewX(-24deg);
}
.slashes i:nth-child(2) { width: 20px; background: var(--grey); }
.slashes i:nth-child(3) { width: 10px; background: var(--grey-3); }
.sect--dark .slashes i:nth-child(2) { background: #6d7075; }
.sect--dark .slashes i:nth-child(3) { background: #3a3d42; }

/* --------------------------------------------------------------- button - */
.btn {
  --bg: var(--red);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0 auto 0 -12%;
  width: 124%;
  background: var(--ink);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform .42s var(--ease-out);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: skewX(-18deg) translateX(0); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-l);
}
.btn--ghost:hover { color: #fff; }
.btn--ghost::before { background: var(--red); }

.on-dark .btn--ghost, .sect--dark .btn--ghost, .sect--ink .btn--ghost,
.hero .btn--ghost, .phero .btn--ghost, .cta .btn--ghost, .feature--dark .btn--ghost,
.uhero .btn--ghost, .drawer .btn--ghost {
  --fg: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* text link with animated rule */
.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
  padding-bottom: 6px;
  position: relative;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(.28); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------- topbar/nav */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
}
.topbar::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: var(--line-d); opacity: 0; transition: opacity .35s var(--ease);
}
.topbar.is-solid {
  background: rgba(11, 12, 14, .93);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  height: 68px;
}
.topbar.is-solid::after { opacity: 1; }
.topbar.is-hidden { transform: translateY(-100%); }
.topbar { transition-property: background, height, box-shadow, transform; }

/* pages that start on a light hero need the solid bar from the start */
body.nav-solid .topbar { background: rgba(11, 12, 14, .96); }

.topbar__in {
  width: 100%; max-width: 1560px; margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; transition: height .35s var(--ease); }
.topbar.is-solid .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); margin-left: auto; }

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 4px;
  font-size: 13px; font-weight: 600; letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__item.is-open .nav__link { color: #fff; }
.nav__link::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover::after, .nav__item.is-open .nav__link::after,
.nav__item.is-current .nav__link::after { transform: scaleX(1); }
.nav__link .chev { width: 9px; height: 9px; transition: transform .25s var(--ease); opacity: .7; }

/* Aviation · Marine · Global spell the company out. ::first-letter needs a
   block container, hence the inline-block label. Latin only — the Chinese
   names do not spell anything, so the device is switched off there. */
.nav__t { display: inline-block; }
html[lang="en"] .nav__item.is-amg .nav__t::first-letter,
html[lang="en"] .drawer a.is-amg .nav__t::first-letter {
  color: var(--red-hi);
  font-weight: 700;
}
html[lang="en"] .nav__item.is-amg:hover .nav__t::first-letter { color: var(--red-hi); }
.nav__item.is-open .chev { transform: rotate(180deg); }

/* dropdown */
.drop {
  position: absolute; top: calc(100% + 14px); left: -22px;
  min-width: 288px;
  width: max-content;
  max-width: 380px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.nav__item.is-open .drop { opacity: 1; visibility: visible; transform: none; }
.drop a {
  position: relative;
  display: block; padding: 12px 16px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.drop a span {
  display: block; font-size: 12px; font-weight: 400; color: var(--grey); margin-top: 2px;
  white-space: nowrap;          /* keep every row one line tall */
}
.drop a:hover { background: var(--mist); border-left-color: var(--red); color: var(--red); }

/* one entry in the marine menu opens a page of its own rather than jumping to
   an anchor — say so, instead of letting the visitor find out by leaving */
.drop a.is-page {
  margin-top: 8px;
  padding-top: 16px;
  padding-right: 40px;
  border-top: 1px solid var(--line-l);
  color: var(--red);
}
.drop a.is-page span { color: var(--grey); }
.drop a.is-page::after {
  content: "";
  position: absolute; right: 16px; top: 20px;
  width: 11px; height: 11px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.drop a.is-page:hover::after { transform: rotate(45deg) translate(2px, -2px); }

/* the three fleet profiles hang off the Fleet Operations row and only appear
   when it is pointed at, so the menu stays a four-item list until you want more */
.drop__nest { position: relative; }
.drop__sub {
  position: absolute; left: calc(100% + 10px); top: -10px;
  min-width: 246px;
  width: max-content;
  max-width: 340px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  opacity: 0; visibility: hidden; transform: translateX(-8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.drop__nest:hover .drop__sub,
.drop__nest:focus-within .drop__sub { opacity: 1; visibility: visible; transform: none; }
.drop__sub a {
  display: block;
  padding: 11px 15px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  border-left: 2px solid transparent;
  white-space: nowrap;          /* one line each, so the rows match */
  transition: background .2s, border-color .2s, color .2s;
}
.drop__sub a:hover { background: var(--mist); border-left-color: var(--red); color: var(--red); }
.drop__nest:hover > a.is-page::after { transform: rotate(45deg) translate(2px, -2px); }

/* language switcher */
.lang { display: flex; align-items: center; gap: 2px; flex: none; }
.lang button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  padding: 7px 9px;
  transition: color .2s, background .2s;
}
.lang button:hover { color: #fff; }
.lang button[aria-pressed="true"] { color: #fff; background: var(--red); }
.lang .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .2); }

.nav-cta { flex: none; }
.nav-cta .btn { padding: 12px 20px; font-size: 12px; }

.burger {
  display: none; flex: none;
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  position: relative;
}
.burger i {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 21px; }
.burger i:nth-child(3) { top: 27px; }
body.menu-open .burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger i:nth-child(2) { opacity: 0; }
body.menu-open .burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav, .nav-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .lang { margin-left: auto; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--ease-out);
}
body.menu-open .drawer { clip-path: inset(0 0 0 0); }
.drawer a {
  display: block; padding: 16px 0;
  font-family: var(--display); font-size: clamp(1.5rem, 6vw, 2.2rem); font-weight: 700;
  color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .1);
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
body.menu-open .drawer a { opacity: 1; transform: none; transition-delay: calc(.08s * var(--i, 0) + .12s); }
.drawer a small { display: block; font-family: var(--text); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-2); margin-top: 4px; }
.drawer .btn { margin-top: 30px; }

/* ----------------------------------------------------------------- hero - */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 52% at 78% 46%, rgba(213, 31, 38, .20), transparent 66%),
    linear-gradient(90deg, rgba(11, 12, 14, .93) 0%, rgba(11, 12, 14, .72) 34%, rgba(11, 12, 14, .10) 66%, rgba(11, 12, 14, .35) 100%),
    linear-gradient(180deg, rgba(11, 12, 14, .88) 0%, rgba(11, 12, 14, .18) 30%, rgba(11, 12, 14, .30) 70%, rgba(11, 12, 14, .95) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero__glow {
    background:
      radial-gradient(62% 40% at 72% 28%, rgba(213, 31, 38, .18), transparent 70%),
      linear-gradient(180deg, rgba(11, 12, 14, .90) 0%, rgba(11, 12, 14, .52) 26%, rgba(11, 12, 14, .84) 66%, rgba(11, 12, 14, .97) 100%);
  }
}
.hero__in { position: relative; z-index: 2; width: 100%; padding-block: clamp(60px, 10vh, 120px); }
.hero__copy { max-width: min(820px, 60%); }
@media (max-width: 900px) { .hero__copy { max-width: 100%; } }
.hero h1 { font-size: clamp(1.95rem, 5.1vw, 4.3rem); margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--red-hi); }
.hero .lede { color: #c5c8cd; max-width: 54ch; }
.hero .btn-row { margin-top: 34px; }

.hero__legend {
  position: absolute; right: var(--gutter); bottom: 34px; z-index: 3;
  display: grid; gap: 10px;
  font-size: 11.5px; letter-spacing: .06em; color: rgba(255, 255, 255, .5);
  text-align: right;
}
.hero__legend li { display: flex; align-items: center; justify-content: flex-end; gap: 10px; white-space: nowrap; }
.hero__legend li::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex: none; opacity: .85;
}
.hero__legend li.is-hq { color: #fff; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero__legend li.is-hq::after { background: var(--red-hi); box-shadow: 0 0 0 3px rgba(255, 59, 48, .22); }
.hero__legend li.is-dim { color: rgba(255, 255, 255, .34); }
.hero__legend li.is-dim::after { background: rgba(213, 31, 38, .55); width: 5px; height: 5px; }
@media (max-width: 1100px) { .hero__legend { display: none; } }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .5);
}
.hero__scroll i {
  display: block; width: 46px; height: 1px; background: rgba(255, 255, 255, .3); position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--red);
  transform: translateX(-100%); animation: sweep 2.6s var(--ease) infinite;
}
@keyframes sweep { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

/* page hero (inner pages) */
.phero {
  position: relative;
  min-height: clamp(460px, 66vh, 660px);
  display: flex; align-items: flex-end;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.phero__bg { position: absolute; inset: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.phero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 14, .94) 0%, rgba(11, 12, 14, .74) 42%, rgba(11, 12, 14, .30) 100%),
    linear-gradient(0deg, rgba(11, 12, 14, .96) 2%, transparent 46%);
}
.phero__in { position: relative; z-index: 2; width: 100%; padding-block: clamp(44px, 6vw, 76px); }
.phero h1 { max-width: 18ch; }
.phero .lede { color: #c5c8cd; }

.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red-hi); }

/* ------------------------------------------------------------ stat band - */
.stats {
  background: var(--mist);
  border-top: 1px solid var(--line-l);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(30px, 3.6vw, 52px) clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--line-l);
}
.stat:last-child { border-right: 0; }
.stat__rule { width: 100%; height: 3px; background: var(--mist-2); position: relative; margin-bottom: 22px; }
.stat__rule::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--red);
  transition: width 1.1s var(--ease-out) .1s;
}
.stat.is-in .stat__rule::after { width: 46%; }
.stat__n {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.9rem); line-height: 1; letter-spacing: -.02em;
  color: var(--ink);
}
.stat__n sup { font-size: .5em; vertical-align: super; color: var(--red); margin-left: 2px; }
.stat__l { margin-top: 10px; font-size: 13px; color: var(--grey); line-height: 1.4; }
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-l); }
}



/* --------------------------------------------------------------- ticker - */
/* The one-line version of the market band, sitting directly under the hero.
   It creeps along on its own and can be dragged; it stops on hover so a
   figure can actually be read. */
.ticker {
  position: relative;
  height: 54px;
  display: flex;
  align-items: stretch;
  background: var(--carbon);
  color: #cfd2d6;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}
.ticker__scroller {
  flex: 1;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.ticker__scroller::-webkit-scrollbar { display: none; }
.ticker__scroller.is-dragging { cursor: grabbing; }
.ticker__scroller:focus-visible { outline: 2px solid var(--red-hi); outline-offset: -3px; }

.ticker__track { display: flex; align-items: center; height: 100%; width: max-content; }

.tk {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 0 clamp(16px, 1.8vw, 26px);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .08);
  align-self: center;
  line-height: 1;
}
.tk__k {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #8b8e93;
}
.tk__v {
  font-family: var(--display); font-weight: 700; font-size: 15.5px; color: #fff;
  font-variant-numeric: tabular-nums;
}
.tk__v small { font-family: var(--text); font-size: .62em; font-weight: 500; color: #8b8e93; margin-left: 2px; }
.tk__d { font-size: 11.5px; font-weight: 600; font-variant-numeric: tabular-nums; color: #74777c; }
.tk__d.is-up { color: var(--red-hi); }

.ticker__stamp {
  margin: 0; flex: none;
  display: flex; align-items: center; gap: 9px;
  padding: 0 clamp(16px, 3vw, 40px) 0 clamp(22px, 4vw, 54px);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: #74777c;
  background: linear-gradient(90deg, transparent, var(--carbon) 34%);
  position: relative; z-index: 2;
  pointer-events: none;
}
.ticker__stamp::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey); flex: none;
}
.ticker__stamp.is-live::after { background: var(--red); animation: pulse 2.4s var(--ease) infinite; }
@media (max-width: 720px) { .ticker__stamp { display: none; } }

/* ---------------------------------------------------------- market band - */
/* A draggable strip of the figures our clients price against. Deliberately
   quiet: no trading-terminal colours, brand red only on the direction mark. */
.market {
  background: var(--mist);
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
  padding-block: clamp(26px, 3vw, 40px);
}
.market__bar {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px;
}
.market__bar .eyebrow { margin-bottom: 0; }
.market__stamp {
  margin: 0;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-2);
  display: flex; align-items: center; gap: 8px;
}
.market__stamp::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-3);
}
.market__stamp.is-live::after { background: var(--red); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .28; } }

/* ---- the strip ---- */
.market__strip { position: relative; }

.market__scroller {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  border-top: 1px solid var(--line-l);
}
.market__scroller::-webkit-scrollbar { display: none; }
.market__scroller.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.market__scroller:focus-visible { outline: 2px solid var(--red-hi); outline-offset: 2px; }

.market__grid {
  display: flex;
  width: max-content;
  transition: transform .5s var(--ease-out);
}
.market__strip.is-nudging .market__grid { transform: translateX(-26px); }

.mk {
  flex: 0 0 clamp(196px, 18.2vw, 252px);
  padding: clamp(20px, 2.2vw, 28px) clamp(16px, 1.5vw, 24px);
  border-right: 1px solid var(--line-l);
  scroll-snap-align: start;
  user-select: none;
}
.mk:last-child { border-right: 0; }
.mk--fuel { background: rgba(213, 31, 38, .045); }

.mk__rule { width: 100%; height: 3px; background: var(--mist-2); position: relative; margin-bottom: 18px; }
.mk__rule::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--red);
  transition: width 1s var(--ease-out) .1s;
}
.market.is-in .mk__rule::after { width: 42%; }
.market.is-in .mk--fuel .mk__rule::after { width: 66%; }

.mk__pair {
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  min-height: 2.4em;
}
.mk__chip {
  font-size: 9.5px; letter-spacing: .1em; font-weight: 700;
  padding: 2px 6px; color: var(--red); background: rgba(213, 31, 38, .1);
}
.mk__v {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem); line-height: 1; letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.mk__v small { font-family: var(--text); font-size: .40em; font-weight: 500; color: var(--grey); margin-left: 3px; }
.mk__d {
  margin-top: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  color: var(--grey-2);
}
.mk__d.is-up { color: var(--red); }
.mk__d.is-down { color: #6f7278; }
.mk__l { margin-top: 8px; font-size: 11.5px; color: var(--grey-2); line-height: 1.4; }

/* ---- edges, buttons, hint, rail ---- */
.market__strip::before, .market__strip::after {
  content: ""; position: absolute; top: 1px; bottom: 0; width: clamp(28px, 5vw, 64px);
  pointer-events: none; z-index: 2; opacity: 0; transition: opacity .3s var(--ease);
}
.market__strip::before { left: 0; background: linear-gradient(90deg, var(--mist), transparent); }
.market__strip::after { right: 0; background: linear-gradient(270deg, var(--mist), transparent); }
.market__strip.can-prev::before { opacity: 1; }
.market__strip.can-next::after { opacity: 1; }

.market__nav {
  position: absolute; top: 50%; z-index: 3;
  width: 38px; height: 38px; margin-top: -19px;
  display: grid; place-items: center;
  border: 1px solid var(--line-l); background: #fff; color: var(--ink);
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s, background .2s, color .2s, border-color .2s;
}
.market__nav svg { width: 17px; height: 17px; }
.market__nav:hover { background: var(--red); border-color: var(--red); color: #fff; }
.market__nav.is-prev { left: -6px; }
.market__nav.is-next { right: -6px; }
.market__strip.can-prev .market__nav.is-prev,
.market__strip.can-next .market__nav.is-next { opacity: 1; visibility: visible; }
@media (hover: none) { .market__nav { display: none; } }

.market__hint {
  position: absolute; right: 0; bottom: -26px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-2);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.market__hint i {
  width: 26px; height: 1px; background: var(--grey-3); position: relative; display: block;
}
.market__hint i::after {
  content: ""; position: absolute; top: -2px; left: 0; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  animation: nudge 2.2s var(--ease) infinite;
}
@keyframes nudge {
  0%, 12% { transform: translateX(0); opacity: 0; }
  25% { opacity: 1; }
  70% { transform: translateX(21px); opacity: 1; }
  88%, 100% { transform: translateX(21px); opacity: 0; }
}
.market__strip.is-touched .market__hint { opacity: 0; }

.market__rail {
  position: relative; height: 2px; margin-top: 26px; background: var(--mist-2);
  overflow: hidden;
}
.market__rail span {
  position: absolute; left: 0; top: 0; bottom: 0; width: 30%;
  background: var(--red);
  transition: transform .12s linear, width .3s var(--ease);
}
.market__strip.is-full ~ .market__rail,
.market__strip.is-full .market__hint,
.market__strip.is-full .market__nav { display: none; }

.market__note {
  margin: 16px 0 0;
  font-size: 12px; line-height: 1.55; color: var(--grey-2); max-width: 92ch;
}

@media (prefers-reduced-motion: reduce) {
  .market__stamp.is-live::after, .market__hint i::after { animation: none; }
  .market__grid { transition: none; }
  .market__strip.is-nudging .market__grid { transform: none; }
}

/* ---------------------------------------------------------- media/cards - */
.frame { position: relative; overflow: hidden; background: var(--graphite); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--pano { aspect-ratio: 21 / 9; }
.frame::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  width: 0; height: 0;
  border-style: solid; border-width: 0 0 54px 54px;
  border-color: transparent transparent var(--red) transparent;
  opacity: 0; transform: translate(10px, 10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease-out);
}
.frame.is-marked::after { opacity: 1; transform: none; }

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-l);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0, 0, 0, .13); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__n {
  font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--red); margin-bottom: 16px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 15.5px; margin-bottom: 0; }
.card .tlink { margin-top: auto; padding-top: 22px; }

.sect--dark .card, .sect--ink .card {
  background: var(--graphite); border-color: rgba(255, 255, 255, .09);
}
.sect--dark .card p, .sect--ink .card p { color: var(--grey-2); }
.sect--dark .card:hover { box-shadow: 0 26px 60px rgba(0, 0, 0, .5); }

/* big split feature */
.feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.feature__media { position: relative; overflow: hidden; min-height: clamp(340px, 44vw, 620px); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(34px, 5vw, 84px);
  background: var(--paper);
}
.feature--dark .feature__body { background: var(--carbon); color: #e8e9ea; }
.feature--dark .feature__body h2 { color: #fff; }
.feature--dark .feature__body p { color: var(--grey-2); }
.feature--flip .feature__media { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

.shot { margin: 0; }
.shot figcaption {
  margin-top: 14px;
  font-size: 13.5px; line-height: 1.5; color: var(--grey);
  padding-left: 22px; position: relative;
}
.shot figcaption::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 3px; background: var(--red); transform: skewX(-24deg);
}
.sect--dark .shot figcaption, .sect--ink .shot figcaption { color: var(--grey-2); }

/* checklist */
.ticks li {
  position: relative; padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line-l);
  font-size: 15.5px; color: #34373c;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 21px;
  width: 12px; height: 3px; background: var(--red); transform: skewX(-24deg);
}
.sect--dark .ticks li, .sect--ink .ticks li, .cta .ticks li,
.feature--dark .ticks li { color: #c3c6cb; border-color: rgba(255, 255, 255, .1); }

/* spec pills */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pills li {
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  padding: 8px 15px;
  border: 1px solid var(--line-l);
  color: #3a3d42;
  transition: border-color .25s, color .25s, background .25s;
}
.pills li:hover { border-color: var(--red); color: var(--red); }
.sect--dark .pills li, .sect--ink .pills li, .feature--dark .pills li,
.cta .pills li { border-color: rgba(255, 255, 255, .16); color: #c3c6cb; }
.sect--dark .pills li:hover, .feature--dark .pills li:hover { border-color: var(--red-hi); color: #fff; background: rgba(213, 31, 38, .16); }

/* numbered process */
.steps { counter-reset: st; display: grid; gap: 0; }
.step {
  counter-increment: st;
  display: grid; grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-top: 1px solid var(--line-l);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-l); }
.step::before {
  content: "0" counter(st);
  font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 300;
  color: var(--red); line-height: 1;
}
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--grey); margin: 0; font-size: 15.5px; }
.sect--dark .step, .sect--ink .step { border-color: rgba(255, 255, 255, .1); }
.sect--dark .step p, .sect--ink .step p { color: var(--grey-2); }
.sect--ink .step, .sect--ink .step:last-child { border-color: rgba(255,255,255,.1); }
@media (max-width: 600px) { .step { grid-template-columns: 1fr; gap: 8px; } }

/* accordion */
.acc { border-top: 1px solid var(--line-l); }
.acc__item { border-bottom: 1px solid var(--line-l); }
.acc__btn {
  width: 100%; appearance: none; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; text-align: left;
  font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 700;
  color: inherit;
  transition: color .25s;
}
.acc__btn:hover { color: var(--red); }
.acc__ico { position: relative; width: 16px; height: 16px; flex: none; }
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; background: var(--red); transition: transform .35s var(--ease);
}
.acc__ico::before { inset: 7px 0 7px 0; height: 2px; }
.acc__ico::after { inset: 0 7px 0 7px; width: 2px; }
.acc__item.is-open .acc__ico::after { transform: scaleY(0); }
.acc__panel { overflow: hidden; height: 0; transition: height .42s var(--ease-out); }
.acc__inner { padding: 0 0 26px; max-width: 78ch; }
.acc__inner p { color: var(--grey); margin-bottom: .8em; }
.sect--dark .acc, .sect--dark .acc__item, .sect--ink .acc, .sect--ink .acc__item { border-color: rgba(255, 255, 255, .1); }
.sect--dark .acc__inner p, .sect--ink .acc__inner p { color: var(--grey-2); }

/* tabs */
.tabs__nav { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--line-l); margin-bottom: 36px; }
.tabs__nav button {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: var(--text); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey); padding: 14px 18px; position: relative;
  transition: color .25s;
}
.tabs__nav button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform .35s var(--ease-out);
}
.tabs__nav button[aria-selected="true"] { color: var(--ink); }
.tabs__nav button[aria-selected="true"]::after { transform: scaleX(1); }
.tabs__nav button:hover { color: var(--red); }
.sect--dark .tabs__nav, .sect--ink .tabs__nav { border-color: rgba(255, 255, 255, .12); }
.sect--dark .tabs__nav button[aria-selected="true"], .sect--ink .tabs__nav button[aria-selected="true"] { color: #fff; }
.tabs__panel[hidden] { display: none; }

/* marquee */
.marquee {
  overflow: hidden; background: var(--red); color: #fff;
  padding: 15px 0; --dur: 34s;
}
.marquee__track { display: flex; width: max-content; animation: slide var(--dur) linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee span::after { content: ""; width: 16px; height: 3px; background: rgba(255, 255, 255, .55); transform: skewX(-24deg); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* quote / statement */
h1, h2, h3 { overflow-wrap: break-word; }

.statement {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem); line-height: 1.24; letter-spacing: -.02em;
  max-width: 26ch;
}
.statement b { font-weight: 700; color: var(--red); }

/* jump card — a page-level shortcut sitting inside a section */
.jump {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  background: var(--paper);
  border: 1px solid var(--line-l);
  overflow: hidden;
}
.jump__media { min-height: 260px; }
.jump__media img { width: 100%; height: 100%; object-fit: cover; }
.jump:hover .jump__media img { transform: scale(1.04); }

.jump__body {
  padding: clamp(24px, 2.8vw, 40px);
  display: flex; flex-direction: column;
}
.jump__k {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 0 0 10px;
}
.jump__k a { transition: color .25s var(--ease); }
.jump__k a:hover { color: var(--red); }
.jump__t { font-size: 15px; line-height: 1.6; color: var(--grey); margin: 0 0 20px; max-width: 46ch; }

.jump__links { margin-top: auto; border-top: 1px solid var(--line-l); }
.jump__links li { border-bottom: 1px solid var(--line-l); }
.jump__links li:last-child { border-bottom: 0; }
.jump__links a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 2px 14px 0;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  transition: color .22s var(--ease), padding-left .22s var(--ease);
}
.jump__links a::after {
  content: ""; flex: none;
  width: 8px; height: 8px;
  border-top: 2px solid var(--red); border-right: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.jump__links a:hover { color: var(--red); padding-left: 10px; }
.jump__links a:hover::after { transform: rotate(45deg) translate(3px, -3px); }

@media (max-width: 860px) {
  .jump { grid-template-columns: minmax(0, 1fr); }
  .jump__media { min-height: 0; aspect-ratio: 16 / 9; }
}

/* CTA band */
.cta {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding-block: clamp(64px, 8vw, 108px);
}
.cta::before {
  content: ""; position: absolute; inset: -40% -20% auto auto;
  width: 46vw; height: 180%;
  background: linear-gradient(135deg, rgba(213, 31, 38, .32), transparent 62%);
  transform: skewX(-18deg);
  pointer-events: none;
}
.cta__in { position: relative; display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: space-between; }
.cta h2 { max-width: 20ch; margin: 0; }

.mailbig {
  display: inline-block;
  margin: 6px 0 4px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--red);
  padding-bottom: 6px;
  position: relative;
  word-break: break-word;
}
.mailbig::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(.18); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.mailbig:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------- forms - */
/* Honeypot. Taken out of the layout entirely rather than merely tucked away:
   while it was unstyled it rendered as a real field, and anything typed into
   it would have made the handler discard a genuine enquiry as spam. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.field.is-req > label::after { content: " *"; color: var(--red); font-size: 14px; line-height: 0; }
.req-star { color: var(--red); font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: var(--text); font-size: 15.5px; color: var(--ink);
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 0;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(213, 31, 38, .12);
}
.form__note { font-size: 13px; color: var(--grey); }
.form__fail { color: var(--red); }
.btn[disabled] { opacity: .55; cursor: default; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* contact rows */
.crow {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line-l);
}
.crow b { display: block; font-size: 15px; font-weight: 600; }
.crow small { display: block; font-size: 13px; color: var(--grey); margin-top: 2px; }
.crow a { font-size: 14.5px; color: var(--red); font-weight: 600; }
.sect--dark .crow, .sect--ink .crow { border-color: rgba(255, 255, 255, .1); }
.sect--dark .crow a { color: var(--red-hi); }

/* ---------------------------------------------------------------- footer - */
.foot { background: var(--ink); color: #9ea1a6; padding-block: clamp(56px, 6vw, 84px) 0; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 60px); }
.foot__brand img { width: 172px; margin-bottom: 22px; }
.foot__brand p { font-size: 14px; line-height: 1.7; max-width: 34ch; }
.foot h4 {
  font-family: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.foot li { margin-bottom: 11px; }
.foot li a { font-size: 14.5px; transition: color .2s; }
.foot li a:hover { color: var(--red-hi); }
.foot__link { color: #9ea1a6; border-bottom: 1px solid rgba(255,255,255,.18); transition: color .2s, border-color .2s; }
.foot__link:hover { color: #fff; border-color: var(--red); }

.foot__bar {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12.5px; color: #6f7278;
}
@media (max-width: 900px) { .foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- reveals - */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="right"] { transform: translateX(-30px); }
[data-reveal="clip"] { opacity: 1; transform: none; clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease-out); }
[data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }
[data-reveal="zoom"] img { transform: scale(1.12); transition: transform 1.4s var(--ease-out); }
[data-reveal="zoom"].is-in img { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  [data-reveal="zoom"] img { transform: none !important; }
}

/* ------------------------------------------------- utility page header - */
/* Policies and credits get a plain typographic header rather than a
   photograph — they are documents, not sales pages. */
.uhero {
  background: var(--ink);
  color: #e8e9ea;
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 76px));
  padding-bottom: clamp(40px, 6vw, 76px);
}
.uhero h1 { color: #fff; max-width: 24ch; }
.uhero--404 { padding-bottom: clamp(56px, 8vw, 100px); }
.uhero--404 .eyebrow { color: var(--red-hi); }
.uhero .lede { color: #b9bcc1; }
.uhero .crumbs { margin-bottom: 20px; }

/* ------------------------------------------------------- credits table - */
.credits { border-top: 1px solid var(--line-l); }
.credit {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 190px 130px;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-l);
  font-size: 14px;
  align-items: baseline;
}
.credit--head {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-2);
}
.credit__slot { font-family: var(--display); font-weight: 700; color: var(--red); }
.credit--head .credit__slot { font-family: var(--text); color: var(--grey-2); font-weight: 700; }
.credit__file a { color: var(--ink); border-bottom: 1px solid var(--line-l); transition: color .2s, border-color .2s; }
.credit__file a:hover { color: var(--red); border-color: var(--red); }
.credit__by, .credit__lic { color: var(--grey); font-size: 13px; }
@media (max-width: 900px) {
  .credit { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .credit--head { display: none; }
  .credit__slot { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
}

/* --------------------------------------------------------------- utils - */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 26px; }
.mt-3 { margin-top: 42px; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.hide-sm { display: initial; }
@media (max-width: 720px) { .hide-sm { display: none; } }
