/* ============================================================
   Lowick Hedry — website v1 stylesheet
   Grown from the coming-soon stylesheet; mirrors the tokens in
   01. Design System/colors_and_type.css and adds the full
   multi-section component library for Home / Team / Contact.

   Brand discipline:
   - Buttons rectangular (--r-button: 0). Cards 10px radius.
     Only tag chips are pill-shaped.
   - Two typefaces only: Fraunces (display) + Rethink Sans (UI).
   - Off White is the dominant surface; Anchor Blue dark sections
     use the official dark gradient. Light gradient sections are
     available but applied deliberately. Signal-red is the accent on
     light; Light Yellow is reserved for the dark gradient only.
   - Type-led, editorial, calm. No SaaS rounding, no emoji.
   ============================================================ */

/* Fonts loaded from Google Fonts — Fraunces (variable) + Rethink Sans (variable) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,100..900,0..100;1,9..144,100..900,0..100&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

:root {
  /* ---- Brand palette (official) ---- */
  --off-white:     #FAFAFA;
  --anchor:        #0A2C4A;   /* Midnight Navy */
  --anchor-deep:   #051A2E;
  --whisper:       #C8D8EC;
  --whisper-60:    #DCE6F3;
  --whisper-20:    #ECF2F8;
  --civic:         #4F719C;
  --civic-deep:    #3D5A7E;
  --signal:        #D84011;   /* Orangey-Red — the dot */
  --signal-deep:   #B83209;
  --signal-tint:   #FBE0D6;
  --highlight:     #F6FFB0;   /* Light Yellow — dark-gradient only */
  --ink:           #0A2C4A;
  --ink-soft:      #1F3E5C;
  --graphite:      #4F719C;
  --stone:         #8A9FB7;

  /* Dark-section surfaces */
  --night:         #111E30;
  --night-card:    #16263C;
  --night-line:    rgba(255,255,255,0.12);
  --night-line-soft: rgba(255,255,255,0.08);

  /* ---- Type families ---- */
  --font-display:  "Fraunces", "Source Serif Pro", "Georgia", serif;
  --font-sans:     "Rethink Sans", "Inter", "Helvetica Neue", system-ui, sans-serif;

  /* ---- Type scale ---- */
  --fs-display-l:  clamp(44px, 6vw, 88px);
  --fs-display:    clamp(38px, 4.725vw, 67px);
  --fs-h1:         clamp(32px, 3.6vw, 52px);
  --fs-h2:         clamp(26px, 2.8vw, 38px);
  --fs-h3:         clamp(20px, 1.6vw, 24px);
  --fs-eyebrow:    13px;
  --fs-caption:    13px;
  --fs-body:       17px;
  --fs-body-sm:    15px;

  /* ---- Spacing (4/8 grid) ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --maxw:          1600px;
  --maxw-narrow:   880px;

  /* ---- Radii ---- */
  --r-card:        10px;
  --r-tag:         999px;
  --r-button:      0;
  --r-sm:          6px;

  /* ---- Shadows (used sparingly) ---- */
  --sh-1: 0 1px 0 rgba(14,17,23,0.04), 0 1px 2px rgba(14,17,23,0.05);
  --sh-2: 0 2px 0 rgba(14,17,23,0.04), 0 12px 28px -8px rgba(14,17,23,0.12);
  --sh-3: 0 18px 48px -16px rgba(10,44,74,0.30);

  /* ---- Motion ---- */
  --ease-out:   cubic-bezier(0.2, 0.7, 0.1, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.2, 1);
  --dur-fast:   120ms;
  --dur-base:   200ms;
  --dur-slow:   320ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
}
img { max-width: 100%; display: block; }
::selection { background: var(--signal); color: #fff; }

/* ============================================================
   Typography helpers
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.05;letter-spacing: -0.01em;}
h2 {
  font-size: var(--fs-h2);
  line-height: 1.16;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 48, "SOFT" 6, "WONK" 0;
}
h3 {
  font-size: var(--fs-h3);
  line-height: 1.24;
  letter-spacing: -0.004em;
  font-variation-settings: "opsz" 32, "SOFT" 8, "WONK" 0;
}
h4 {
  line-height: 1.28;
  letter-spacing: 0;
  font-variation-settings: "opsz" 28, "SOFT" 8, "WONK" 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 0;
  text-wrap: balance;
  margin: 0;
}
.display em, h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
}

p { margin: 0 0 1em; text-wrap: pretty; }
.lead {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}
.small { font-size: var(--fs-body-sm); }
.muted { color: var(--graphite); }

/* Eyebrow with optional rule */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--civic);
  margin: 0 0 var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow .rule {
  width: 40px; height: 1.5px;
  background: var(--signal);
  display: inline-block;
}
.theme-dark .eyebrow { color: var(--whisper); }

.reddot { color: var(--signal); }

/* The Anchor / Signal dot used in the wordmark and headlines */
.dot {
  color: var(--signal);
  margin-left: 0.04em;
}

/* ============================================================
   Buttons (rectangular, zero radius)
   ============================================================ */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--r-button);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(0.99); }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-signal  { background: var(--signal); color: #fff; }
.btn-signal:hover { background: var(--signal-deep); }
.btn-anchor  { background: var(--anchor); color: #fff; }
.btn-anchor:hover { background: var(--anchor-deep); }
.btn-ghost   { background: transparent; color: var(--anchor); border-color: var(--anchor); }
.btn-ghost:hover { background: var(--anchor); color: #fff; }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-on-dark:hover { background: #fff; color: var(--anchor); border-color: #fff; }
.btn-light   { background: #fff; color: var(--anchor); }
.btn-light:hover { background: var(--whisper-20); }

/* Quiet text link with arrow */
.link-arrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--anchor);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--signal);
  padding-bottom: 3px;
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.link-arrow:hover { gap: 12px; color: var(--signal-deep); }
.theme-dark .link-arrow { color: var(--off-white); border-bottom-color: var(--highlight); }
.theme-dark .link-arrow:hover { color: var(--highlight); }

/* Tag chip — only pill-shaped element */
.tag-chip {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 13px;
  border-radius: var(--r-card);
  background: var(--whisper-20);
  color: var(--anchor);
  display: inline-block;
}
.theme-dark .tag-chip {
  background: rgba(255,255,255,0.10);
  color: var(--whisper);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(22px, 5vw, 64px); }
.wrap.site-chrome-wrap,
.nav.site-chrome-wrap { max-width: 100%; }
.section { padding-block: clamp(64px, 9vh, 120px); }
.section-sm { padding-block: clamp(48px, 6vh, 80px); }
.section-tight { padding-block: clamp(40px, 5vh, 64px); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vh, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.testimonials-section .section-head { margin-bottom: 24px; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: var(--s-4); }
.section-head p { color: var(--ink-soft); max-width: 60ch; margin: 0; }
.section-head.center p { margin-inline: auto; }

/* Dark section using the official Lowick Hedry dark gradient */
.theme-dark {
  position: relative;
  background: var(--night);
  color: var(--whisper-20);
  overflow: hidden;
}
.theme-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 86% 54% at 92% 14%, rgba(54, 121, 210, 0.95) 0%, rgba(53, 122, 212, 0.78) 26%, rgba(31, 65, 109, 0.26) 52%, transparent 72%),
    radial-gradient(ellipse 78% 44% at 2% 96%, rgba(52, 117, 204, 0.88) 0%, rgba(52, 119, 208, 0.58) 34%, rgba(33, 71, 122, 0.22) 58%, transparent 78%),
    radial-gradient(ellipse 72% 58% at 12% 50%, rgba(33, 71, 122, 0.50) 0%, rgba(25, 51, 87, 0.32) 46%, transparent 72%),
    radial-gradient(ellipse 78% 64% at 90% 86%, rgba(19, 33, 51, 0.94) 0%, rgba(19, 37, 60, 0.70) 46%, transparent 74%),
    linear-gradient(158deg, #111E30 0%, #152640 22%, #193357 45%, #13253C 69%, #111E30 100%);
  z-index: 0;
  pointer-events: none;
}
.theme-dark > * { position: relative; z-index: 1; }
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark .display { color: var(--off-white); }
.theme-dark .lead, .theme-dark p { color: var(--whisper-60); }
.theme-dark a { color: var(--off-white); }

/* Light section using the official Lowick Hedry light gradient */
.theme-light {
  position: relative;
  background: var(--off-white);
  color: var(--ink);
  overflow: hidden;
}
.theme-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 34% at 92% 92%, rgba(184, 204, 230, 0.34) 0%, rgba(220, 230, 243, 0.20) 42%, transparent 72%),
    radial-gradient(ellipse 82% 42% at 94% 2%, rgba(92, 143, 211, 0.34) 0%, rgba(124, 164, 216, 0.27) 28%, rgba(187, 206, 232, 0.18) 55%, transparent 76%),
    radial-gradient(ellipse 78% 50% at 0% 50%, rgba(103, 147, 205, 0.30) 0%, rgba(139, 173, 217, 0.22) 31%, rgba(196, 212, 233, 0.16) 58%, transparent 80%),
    radial-gradient(ellipse 84% 48% at 36% 24%, rgba(236, 242, 248, 0.92) 0%, rgba(219, 229, 242, 0.38) 45%, transparent 74%),
    radial-gradient(ellipse 70% 46% at 82% 58%, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 250, 0.78) 40%, transparent 70%),
    radial-gradient(ellipse 92% 62% at 76% 94%, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.82) 50%, transparent 76%),
    linear-gradient(160deg, #E8EFF8 0%, #EEF3F8 29%, #DEE9F5 50%, #F7F9FB 72%, #FAFAFA 100%);
  z-index: 0;
  pointer-events: none;
}
.theme-light > * { position: relative; z-index: 1; }
.theme-light h1, .theme-light h2, .theme-light h3, .theme-light .display { color: var(--anchor); }
.theme-light .lead, .theme-light p { color: var(--ink-soft); }
.theme-light a { color: var(--anchor); }

/* Light-tint band (Whisper-20) for alternating rhythm */
.theme-tint { background: var(--whisper-20); }

/* ============================================================
   Site header / nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(236, 242, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--whisper-60);
}
.site-header.on-dark {
  background: rgba(17, 30, 48, 0.50);
  border-bottom-color: var(--night-line-soft);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px clamp(22px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .brand { display: inline-flex; align-items: center; }
.nav .brand img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--signal); }
.nav-links a.active { color: var(--signal); }
.on-dark .nav-links a { color: var(--whisper-20); }
.on-dark .nav-links a:hover, .on-dark .nav-links a.active { color: var(--highlight); }
.nav .btn { padding: 11px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: inherit;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   Hero (dark gradient)
   ============================================================ */
.hero {
  min-height: 90vh;
  padding-block: clamp(72px, 13vh, 150px);
  display: flex;
  align-items: center;
}
.hero > .wrap { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow { color: var(--whisper); }
.hero h1, .hero .display {
  font-size: var(--fs-display);
  line-height: 1.02;
  color: var(--off-white);
  /*max-width: 17ch;*/
  font-variation-settings: "opsz" 144, "SOFT" 28, "WONK" 0;
}
.hero h1 em { color: var(--whisper); }
.hero .lead {
  color: var(--whisper-60);
  margin-top: clamp(20px, 3vh, 32px);
  max-width: 52ch;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(28px, 4vh, 40px);
}
.hero .trust-line {
  margin-top: clamp(36px, 5vh, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--night-line);
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  max-width: 60ch;
}
.hero-video-slider {
  justify-self: end;
  width: min(44vw, 560px);
  min-width: 360px;
  position: relative;
  isolation: isolate;
}
.hero-video-slider::before {
  content: "";
  position: absolute;
  inset: 8% -8% 6% 8%;
  background: rgba(5, 26, 46, 0.45);
  filter: blur(32px);
  z-index: -1;
}
.hero-slider-viewport {
  height: var(--slider-viewport-height, clamp(420px, 58vh, 560px));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.hero-slider-track {
  --slide-gap: clamp(18px, 2.3vw, 30px);
  --slide-step: 340px;
  --slider-pad: 76px;
  display: flex;
  flex-direction: column;
  gap: var(--slide-gap);
  padding-block: var(--slider-pad);
  will-change: transform;
  animation: lhVerticalSlider 10.4s infinite;
}
.hero-video-slider:hover .hero-slider-track,
.hero-video-slider:focus-within .hero-slider-track {
  animation-play-state: paused;
}
.hero-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.62);
  background: var(--anchor);
  flex: 0 0 auto;
}
.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,26,46,0.02) 0%, rgba(5,26,46,0.08) 100%);
  z-index: 1;
}
.hero-video-card.tone-anchor { background: linear-gradient(135deg, #0A2C4A 0%, #4F719C 100%); }
.hero-video-card.tone-civic { background: linear-gradient(135deg, #C8D8EC 0%, #4F719C 82%); }
.hero-video-card.tone-signal { background: linear-gradient(135deg, #D84011 0%, #F6FFB0 118%); }
.hero-video-card.tone-whisper { background: linear-gradient(135deg, #ECF2F8 0%, #0A2C4A 100%); }
.video-placeholder,
.video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-placeholder {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.14), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 18px);
}
.video-placeholder video {
  object-fit: cover;
}
@keyframes lhVerticalSlider {
  0%, 11% {
    transform: translateY(calc(var(--slide-step) * -1));
    animation-timing-function: cubic-bezier(0.64, -0.2, 0.24, 1.28);
  }
  25%, 36% {
    transform: translateY(calc(var(--slide-step) * -2));
    animation-timing-function: cubic-bezier(0.64, -0.2, 0.24, 1.28);
  }
  50%, 61% {
    transform: translateY(calc(var(--slide-step) * -3));
    animation-timing-function: cubic-bezier(0.64, -0.2, 0.24, 1.28);
  }
  75%, 86% {
    transform: translateY(calc(var(--slide-step) * -4));
    animation-timing-function: cubic-bezier(0.64, -0.2, 0.24, 1.28);
  }
  100% {
    transform: translateY(calc(var(--slide-step) * -5));
  }
}

/* Sub-page hero (Team / Contact) — accounts for the fixed header */
.subhero {
  padding-block: clamp(72px, 13vh, 150px) clamp(56px, 9vh, 104px);
}
.subhero h1 {
  font-size: var(--fs-display);
  color: var(--off-white);
  max-width: 30ch;
  font-variation-settings: "opsz" 144, "SOFT" 24, "WONK" 0;
}
.subhero .lead { color: var(--whisper-60); margin-top: 20px; }

/* ============================================================
   Intro / positioning (two columns)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.split.center-y { align-items: center; }
.split p { color: var(--ink-soft); }
.split p:last-child { margin-bottom: 0; }

/* ============================================================
   Client logo stripe
   ============================================================ */
.logo-stripe { border-block: 1px solid var(--whisper-60); }
.logo-stripe .intro {
  text-align: center;
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: var(--s-7);
}
.marquee {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee.is-dragging { cursor: grabbing; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
  width: max-content;
  animation: lhMarquee 42s linear infinite;
}
.marquee.is-draggable .marquee-track {
  animation: none;
  transform: translate3d(var(--marquee-x, 0px), 0, 0);
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  width: clamp(120px, 13vw, 190px);
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.marquee-item img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marquee-item.logo-aviva img { transform: scale(0.95); }
.marquee-item.logo-new-west-end img { transform: scale(1.5); }
.marquee-item.logo-sav img { transform: scale(1.2); }
.marquee-item.logo-burberry img { transform: scale(0.85); }
@keyframes lhMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Proof / data stat boxes (dark, arrow corner — per reference)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  position: relative;
  border: 1px solid var(--night-line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.stat-box:hover { border-color: var(--night-line); transform: translateY(-3px); }
.stat-box .stat-label {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--whisper);
  align-self: flex-end;
  text-align: right;
  max-width: 20ch;
  line-height: 1.35;
  margin-top: auto;
}
.stat-box .corner + .stat-label::before {
  content: "↗";
  color: var(--signal);
  font-weight: 800;
  margin-right: 0.45em;
}
.stat-box .stat-figure {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--off-white);
  font-variant-numeric: tabular-nums;
}
.stat-box .stat-figure .reddot { color: var(--signal); font-weight: 800; }
.stat-box .corner {
  display: none;
  color: var(--whisper);
}
.stat-box .corner svg { width: 22px; height: 22px; }
/* secondary plain note row under stats */
.stat-note {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: var(--fs-body-sm);
  color: var(--whisper);
}
.stat-note span { display: inline-flex; align-items: center; gap: 9px; }
.stat-note .b { width: 6px; height: 6px; border-radius: 999px; background: var(--signal); display: inline-block; }

/* ============================================================
   Services / expertise cards
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  min-height: clamp(360px, 38vw, 500px);
  border: 0;
  border-radius: var(--r-card);
  background: var(--anchor);
  color: var(--off-white);
  padding: clamp(22px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.service-card:nth-child(2) { background: var(--signal); }
.service-card:nth-child(3) { background: var(--civic); }
.service-card:nth-child(4) { background: var(--anchor-deep); }
.service-card .num {
  display: none;
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--signal);
}
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--off-white);
  font-size: var(--fs-h3);
  line-height: 1.24;
  letter-spacing: 0;
}
.service-card p {
  color: var(--off-white);
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
}
.service-card .rule { display: none; }

/* ============================================================
   How we help / situations
   ============================================================ */
.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--whisper-60);
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-card);
  overflow: hidden;
}
.situation {
  background: var(--off-white);
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--dur-base) var(--ease-out);
}
.situation:hover { background: #fff; }
.situation .ix { color: var(--signal); }
.situation .ix svg { width: 24px; height: 24px; }
.situation p {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.36;
  letter-spacing: 0;
  color: var(--anchor);
}

/* ============================================================
   Testimonials
   ============================================================ */
.quote-grid {
  display: grid;
  place-items: center;
  max-width: 1127px;
  margin-inline: auto;
}
.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  row-gap: 18px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}
.quote-card::before {
  display: none;
}
.testimonial-slider {
  isolation: isolate;
}
.testimonial-slider .quote-card,
.testimonial-slider .quote-card.reveal.in {
  grid-area: 1 / 1;
  width: min(100%, 1100px);
  opacity: 0;
  transform: translateX(42px);
  pointer-events: none;
  transition:
    opacity 420ms var(--ease-inout),
    transform 520ms var(--ease-inout);
}
.testimonial-slider .quote-card.is-active,
.testimonial-slider .quote-card.reveal.in.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.quote-card .q-mark {
  font-family: var(--font-display);
  grid-column: 1;
  justify-self: center;
  font-size: clamp(68px, 8vw, 108px);
  line-height: 0.7;
  color: var(--signal);
  height: clamp(42px, 5vw, 64px);
  transform: translateY(35px);
}
.quote-card blockquote {
  grid-column: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.24;
  letter-spacing: 0;
  color: var(--anchor);
  text-wrap: balance;
  font-variation-settings: "opsz" 48, "SOFT" 10;
}
.quote-card .attr {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
}
.quote-card .attr .name {
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1.2;
  color: var(--anchor);
}
.quote-card .attr .role {
  font-size: var(--fs-body-sm);
  line-height: 1.3;
  color: var(--civic);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 4vh, 44px);
}
.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--whisper);
  cursor: pointer;
  transition:
    background var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  background: var(--civic);
  transform: scale(1.18);
}
.testimonial-dot:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}
.testimonial-dot.is-active {
  background: var(--signal);
}
.placeholder-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   Team teaser (home) + team page grids
   ============================================================ */
.team-teaser .photo {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--whisper-60);
  aspect-ratio: 16 / 10;
  background: var(--whisper-20);
}
.team-teaser .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-teaser h2 { margin-bottom: var(--s-4); }

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile .portrait {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--whisper-60);
  aspect-ratio: 4 / 5;
  background: var(--whisper-20);
  position: relative;
}
.profile .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.profile:hover .portrait img { transform: scale(1.03); }
.profile h3 { color: var(--anchor); margin-bottom: 2px; }
.profile .role {
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 600;
}
.profile .bio { font-size: var(--fs-body-sm); color: var(--ink-soft); line-height: 1.6; margin: 0; }
.profile .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wider-team .profile .tag-chip { background: #fff; }
.profile .socials { display: flex; gap: 12px; margin-top: 2px; }
.profile .socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-sm);
  color: var(--civic);
  transition: all var(--dur-base) var(--ease-out);
}
.profile .socials a:hover { background: var(--anchor); color: #fff; border-color: var(--anchor); }
.profile .socials svg { width: 16px; height: 16px; }

/* placeholder profile card */
.profile.is-placeholder .portrait { background: #c8c8c8; }
.profile.is-placeholder h3,
.profile.is-placeholder .role { color: var(--stone); }

/* Creative partners */
.creative-partners {
  border-bottom: 1px solid var(--whisper-60);
}
.partners-layout {
  display: flex;
  gap: clamp(44px, 8vw, 120px);
  align-items: flex-start;
}
.partners-intro {
  flex: 1 1 34%;
  max-width: 760px;
}
.partners-intro h2 {
  margin-bottom: var(--s-4);
}
.partners-intro p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}
.partner-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex: 1 1 66%;
}
.partner {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.2vw, 34px);
  color: inherit;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.partner:hover,
.partner:focus-visible {
  border-color: var(--whisper);
  box-shadow: var(--sh-2);
  transform: translateY(-3px);
}
.partner-logo {
  align-self: flex-start;
  width: auto;
  height: 28px;
  max-width: min(260px, 100%);
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}
.partner:nth-child(2) .partner-logo {
  height: 23px;
}
.partner-name {
  margin: 0 0 26px;
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #2c2d31;
}
.partner > p {
  max-width: 58ch;
  color: var(--ink-soft);
  margin: 0;
}
.partner .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

/* ============================================================
   Contact form + details
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--sh-2);
}
.demo-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-deep);
  background: var(--signal-tint);
  border-radius: var(--r-tag);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--civic);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone); }
.form-card .btn { margin-top: 22px; }

/* contact details column */
.detail-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.detail-item { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.detail-item .icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--anchor);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.theme-dark .detail-item .icon { background: var(--signal); }
.detail-item .icon svg { width: 18px; height: 18px; }
.detail-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 3px 0 5px;
}
.theme-dark .detail-item .label { color: var(--whisper); }
.detail-item .value { font-size: var(--fs-body-sm); color: var(--ink); text-decoration: none; font-weight: 500; line-height: 1.45; }
.theme-dark .detail-item .value { color: var(--off-white); }
.detail-item a.value { border-bottom: 1px solid color-mix(in oklab, var(--anchor) 22%, transparent); }
.detail-item a.value:hover { border-bottom-color: var(--signal); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--off-white); max-width: 50ch; margin: 0 auto var(--s-5); }
.cta-band p { color: var(--whisper-60); max-width: 52ch; margin: 0 auto var(--s-7); }
.cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--anchor);
  color: var(--whisper-60);
  padding-block: clamp(56px, 8vh, 88px) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 75px; margin-bottom: 20px; }
.footer-brand p { color: var(--whisper); max-width: 45ch; font-size: var(--fs-body-sm); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span.fline {
  color: var(--whisper-60);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  transition:
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}
.footer-col a:hover {
  color: var(--off-white);
  border-bottom-color: var(--signal);
}
.footer-office-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-office-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.footer-podcast-logo {
  display: block;
  width: min(85px, 100%);
  height: auto;
  margin: -2px 0 16px;
}
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--night-line);
  border-radius: var(--r-sm);
  color: var(--whisper);
  transition: all var(--dur-base) var(--ease-out);
}
.footer-social a:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: clamp(40px, 6vh, 60px);
  padding-top: 24px;
  border-top: 1px solid var(--night-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: var(--fs-caption);
  color: var(--whisper);
}
.footer-bottom a { color: var(--off-white); text-decoration: none; border-bottom: 1px solid transparent; }
.footer-bottom a:hover { border-bottom-color: var(--signal); }
.footer-bottom .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  text-align: right;
}
.footer-podcast { display: inline-flex; align-items: center; gap: 14px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-video-slider {
    justify-self: stretch;
    width: min(100%, 620px);
    min-width: 0;
    margin-inline: auto;
  }
  .hero-slider-viewport {
    height: var(--slider-viewport-height, clamp(360px, 56vh, 520px));
  }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 360px; }
  .situations { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-layout {
    flex-direction: column;
    gap: 42px;
  }
  .partners-intro,
  .partner-grid {
    max-width: 760px;
    width: 100%;
  }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .nav-toggle {
    display: inline-flex;
    color: var(--highlight);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    min-height: calc(100dvh - 63px);
    background: var(--off-white);
    border-bottom: 1px solid var(--whisper-60);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 5vh, 42px);
    padding: 40px clamp(22px, 5vw, 64px);
    display: none;
  }
  .on-dark .nav-links { background: var(--night); border-bottom-color: var(--night-line); }
  .nav-links.open { display: flex; }
  .nav-links li { width: auto; text-align: center; }
  .nav-links a {
    display: inline-flex;
    justify-content: center;
    padding: 8px 0;
    width: auto;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
  .nav-links .btn {
    margin-top: 4px;
    padding: 13px 20px;
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-block: 108px 64px;
  }
  .hero-video-slider {
    display: none;
  }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-box {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
  }
  .stat-box .stat-figure {
    flex: 0 0 auto;
  }
  .stat-box .stat-label {
    align-self: center;
    margin-top: 0;
    max-width: 22ch;
  }
  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: 300px;
    padding: 22px;
  }
  .profile-grid { grid-template-columns: 1fr; }
  .profile {
    display: grid;
    gap: 0;
  }
  .profile .portrait,
  .profile > div:not(.portrait):not(.tags):not(.socials),
  .profile .socials {
    grid-area: 1 / 1;
  }
  .profile .portrait::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(5, 26, 46, 0.86), rgba(5, 26, 46, 0));
    pointer-events: none;
    z-index: 1;
  }
  .profile > div:not(.portrait):not(.tags):not(.socials) {
    align-self: end;
    justify-self: start;
    width: calc(100% - 112px);
    padding: 0 0 22px 22px;
    z-index: 2;
  }
  .profile h3 {
    color: var(--off-white);
    text-shadow: 0 1px 10px rgba(5, 26, 46, 0.45);
  }
  .profile .role {
    color: var(--whisper);
    text-shadow: 0 1px 8px rgba(5, 26, 46, 0.45);
  }
  .profile .bio,
  .profile .tags {
    display: none;
  }
  .profile .socials {
    align-self: end;
    justify-self: end;
    padding: 0 22px 22px 0;
    z-index: 2;
  }
  .profile .socials a {
    color: var(--off-white);
    background: rgba(250, 250, 250, 0.12);
    border-color: rgba(250, 250, 250, 0.42);
    backdrop-filter: blur(6px);
  }
  .profile .socials a:hover {
    background: var(--off-white);
    color: var(--anchor);
    border-color: var(--off-white);
  }
  .partner-grid { flex-direction: column; }
  .partner-logo { margin-bottom: 22px; }
  .partner-name { margin-bottom: 18px; }
  .quote-card {
    row-gap: 16px;
  }
  .quote-card .q-mark { font-size: 64px; height: 40px; }
  .quote-card blockquote { font-size: var(--fs-h2); line-height: 1.24; }
  .testimonials-section { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand img { height: 52px; }
  .footer-firm { display: none; }
  .footer-col .footer-podcast-logo + ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-col .footer-podcast-logo + ul li {
    display: inline-flex;
    align-items: center;
  }
  .footer-col .footer-podcast-logo + ul li:not(:last-child)::after {
    content: "|";
    color: var(--whisper-60);
    margin-inline: 8px;
  }
  .footer-bottom { flex-direction: column; }
  .footer-bottom .legal {
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
  }
  .form-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-slider-track { animation: none; }
  .testimonial-slider .quote-card { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover .arrow { transform: none; }
}

/* ============================================================
   News archive / article
   ============================================================ */
.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;
}

.news-hero { padding-block: clamp(140px, 19vh, 220px) clamp(72px, 10vh, 128px); }
.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .90fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
}
.news-hero h1 { max-width: 13ch; font-size: var(--fs-display); }
.news-hero .lead { margin: 0 0 .4em; }

.news-index { background: var(--off-white); }
.news-featured-section { padding-bottom: clamp(36px, 5vh, 56px); }
.news-toolbar-section { padding-bottom: clamp(28px, 4vh, 44px); }
.latest-news-home { background: var(--off-white); }
.latest-news-home .related-head { margin-bottom: clamp(36px, 5vh, 56px); }
.featured-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: clamp(340px, 30vw, 400px);
  max-height: 400px;
  background: var(--whisper-20);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 0;
}
.featured-story-media { display: block; overflow: hidden; min-height: 0; }
.featured-story-media img,
.news-card-media img,
.article-lead-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.featured-story:hover .featured-story-media img,
.news-card:hover .news-card-media > img:not([src$=".svg"]) { transform: scale(1.025); }
.featured-story-copy {
  box-sizing: border-box;
  width: 100%;
  padding-block: clamp(30px, 4vw, 56px);
  padding-inline: clamp(30px, 4vw, 56px);
  align-self: center;
}
.featured-story-copy h2 { font-size: clamp(28px, 2.7vw, 42px); margin: 20px 0 16px; }
.featured-story-copy h2 a,
.news-card h3 a { color: inherit; text-decoration: none; }
.featured-story-copy > p { color: var(--ink-soft); margin-bottom: 30px; max-width: 48ch; }

.story-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--civic);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.story-meta > * + * { position: relative; }
.story-meta > * + *::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--signal);
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
}
.featured-story .tag-chip + *::before,
.article-meta .tag-chip + *::before { display: none; }
.story-meta .tag-chip { letter-spacing: .06em; }
.featured-story .tag-chip { color: #fff; background: var(--signal); }

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--whisper-60);
}
.news-toolbar .eyebrow { margin: 0; }
.news-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-button {
  border: 1px solid var(--whisper-60);
  background: transparent;
  color: var(--civic-deep);
  border-radius: var(--r-tag);
  padding: 8px 15px;
  font: 600 13px/1 var(--font-sans);
  cursor: pointer;
  transition: color var(--dur-base), background var(--dur-base), border-color var(--dur-base);
}
.filter-button:hover,
.filter-button.is-active { background: var(--anchor); border-color: var(--anchor); color: #fff; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 4vw, 64px) clamp(22px, 3vw, 40px); }
.news-card { position: relative; padding-bottom: 34px; border-bottom: 1px solid var(--whisper-60); }
.news-card[hidden] { display: none; }
.news-card-media { display: block; aspect-ratio: 1.42 / 1; margin-bottom: 24px; overflow: hidden; background: var(--anchor); }
.news-card h3 { font-size: clamp(22px, 2vw, 29px); margin: 15px 38px 12px 0; }
.news-card > p {
  color: var(--ink-soft);
  font-size: var(--fs-body-sm);
  margin-bottom: 0;
  padding-right: 58px;
}
.card-arrow { position: absolute; right: 0; bottom: 32px; color: var(--signal); text-decoration: none; font-size: 25px; transition: transform var(--dur-base) var(--ease-out); }
.news-card:hover .card-arrow { transform: translate(4px, -4px); }
.graphic-media {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--highlight);
  text-decoration: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(78,135,210,.95), transparent 42%),
    linear-gradient(145deg, var(--anchor), var(--night));
}
.graphic-media::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.graphic-media img { width: min(150px, 55%); height: auto; object-fit: contain; }
.graphic-media span { position: relative; z-index: 1; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.graphic-media strong { position: relative; z-index: 1; color: var(--off-white); font: 500 clamp(36px, 4vw, 58px)/.9 var(--font-display); letter-spacing: -.03em; }
.tone-light .graphic-media { background: linear-gradient(145deg, var(--whisper-20), var(--whisper)); }
.tone-light .graphic-media strong,
.tone-light .graphic-media span { color: var(--anchor); }
.tone-light .graphic-media::after { border-color: rgba(10,44,74,.2); }
.news-empty { padding: 36px 0; color: var(--civic); }

.newsletter-grid { display: grid; grid-template-columns: 1fr minmax(340px, .8fr); align-items: end; gap: clamp(36px, 8vw, 120px); }
.newsletter-band { padding-bottom: clamp(72px, 9vh, 120px); }
.newsletter-grid h2 { max-width: 20ch; }
.newsletter-form { display: flex; border-bottom: 1.5px solid rgba(79, 113, 156, .45); }
.newsletter-form input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink); padding: 14px 4px; font: 16px var(--font-sans); outline: 0; }
.newsletter-form input::placeholder { color: var(--civic); }

.article-hero { padding: 0; }
.article-hero-grid {
  width: auto;
  max-width: none;
  margin-left: max(clamp(22px, 5vw, 64px), calc((100vw - var(--maxw)) / 2 + 64px));
  margin-right: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  gap: clamp(44px, 5vw, 80px);
}
.article-hero-inner {
  align-self: center;
  padding-block: clamp(122px, 15vh, 168px) clamp(52px, 7vh, 84px);
}
.article-back {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--off-white) !important;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: clamp(42px, 7vh, 72px);
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.article-back::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.article-back:hover { gap: 14px; color: var(--highlight) !important; }
.article-back:hover::after { transform: scaleX(1); }
.article-meta { margin-bottom: 24px; color: var(--whisper); }
.article-meta .tag-chip { color: var(--anchor); background: var(--highlight); }
.article-hero h1 {
  max-width: none;
  font-size: var(--fs-h1);
  font-optical-sizing: auto;
  font-variation-settings: normal;
}
.article-hero .lead { margin-top: 28px; max-width: 62ch; }
.article-byline { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.article-byline img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 18%; }
.article-byline p { display: flex; flex-direction: column; margin: 0; font-size: 14px; line-height: 1.35; }
.article-byline strong { color: var(--off-white); }
.article-byline span { color: var(--whisper); }

.article-image-wrap { min-height: clamp(560px, 70vh, 780px); overflow: hidden; }
.article-lead-image { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.article-layout {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(264px, 330px);
  justify-content: space-between;
  align-items: start;
  column-gap: 80px;
  padding-block: clamp(64px, 9vh, 112px);
}
.article-share { display: flex; align-items: center; gap: 12px; }
.article-share a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--whisper-60);
  border-radius: var(--r-sm);
  color: var(--civic);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
}
.article-share a:hover { color: #fff; background: var(--anchor); border-color: var(--anchor); }
.article-share svg { width: 16px; height: 16px; }
.article-body { color: var(--ink-soft); font-size: clamp(17px, 1.3vw, 19px); line-height: 1.75; }
.article-body img,
.article-body figure {
  width: 100%;
  max-width: 100%;
}
.article-body figure { margin-inline: 0; }
.article-body img { height: auto; }
.article-body > p { margin-bottom: 1.5em; }
.article-standfirst { color: var(--anchor); font: 500 clamp(23px, 2.4vw, 31px)/1.42 var(--font-display); }
.article-body h2 { margin: 2.2em 0 .65em; font-size: clamp(27px, 2.8vw, 38px); }
.article-body blockquote { margin: 2.2em 0; padding: 6px 0 6px 32px; border-left: 3px solid var(--signal); color: var(--anchor); font: 500 clamp(25px, 3vw, 40px)/1.28 var(--font-display); }
.article-conclusion { margin-top: 3em; padding: clamp(28px, 5vw, 52px); background: var(--whisper-20); }
.article-conclusion .eyebrow { margin-bottom: 12px; }
.article-conclusion h2 { margin: 0 0 16px; }
.article-conclusion-body > :last-child { margin-bottom: 0; }
.article-related {
  position: sticky;
  top: 96px;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 330px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.article-related-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding-bottom: 18px;
}
.article-related-head .eyebrow { margin-bottom: 8px; }
.article-related-head h2 { font-size: clamp(21px, 1.7vw, 26px); }
.article-related-head > a {
  flex: 0 0 auto;
  color: var(--signal);
  text-decoration: none;
}
.article-related-list { border-bottom: 1px solid var(--whisper-60); }
.article-related-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 15px;
  padding-block: 18px;
  border-top: 1px solid var(--whisper-60);
}
.article-related-media {
  display: block;
  height: 70px;
  overflow: hidden;
  background: var(--whisper-20);
}
.article-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}
.article-related-card:hover .article-related-media img { transform: scale(1.04); }
.article-related-card .story-meta {
  gap: 5px 14px;
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: .07em;
}
.article-related-card .story-meta > * + *::before { left: -9px; }
.article-related-card h3 {
  margin-top: 8px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.25;
}
.article-related-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--anchor);
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article-related-share {
  margin-top: clamp(38px, 6vh, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--whisper-60);
}
.article-related-share .eyebrow { margin-bottom: 16px; }
.related-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 42px; }
.news-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1360px) {
  .article-layout {
    grid-template-columns: minmax(0, 820px);
    row-gap: 64px;
  }
  .article-related {
    position: static;
    grid-column: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    max-height: none;
    overflow: visible;
  }
  .article-related-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    border-bottom: 0;
  }
  .article-related-card {
    display: block;
    padding-block: 18px 0;
  }
  .article-related-media { height: auto; aspect-ratio: 1.7 / 1; margin-bottom: 16px; }
}

@media (max-width: 980px) {
  .news-hero-grid,
  .featured-story,
  .newsletter-grid { grid-template-columns: 1fr; }
  .article-hero-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 0;
  }
  .article-hero-inner {
    padding: clamp(112px, 15vh, 144px) clamp(22px, 5vw, 64px) 52px;
  }
  .article-image-wrap { min-height: 0; }
  .article-lead-image { height: auto; aspect-ratio: 1.5 / 1; }
  .news-hero .lead { max-width: 42ch; }
  .featured-story { height: auto; max-height: none; min-height: 0; }
  .featured-story-media { min-height: 280px; aspect-ratio: 1.8 / 1; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .news-hero { padding-block: 122px 68px; }
  .news-hero-grid { gap: 22px; }
  .featured-story-media { min-height: 250px; aspect-ratio: 1.35 / 1; }
  .featured-story-copy { padding: 28px 22px 34px; }
  .news-toolbar { align-items: flex-start; flex-direction: column; }
  .news-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-button { flex: 0 0 auto; }
  .news-grid,
  .news-grid-two { grid-template-columns: 1fr; }
  .news-card-media { aspect-ratio: 1.5 / 1; }
  .newsletter-form { flex-direction: column; gap: 12px; border: 0; }
  .newsletter-form input { border-bottom: 1.5px solid rgba(79, 113, 156, .45); }
  .newsletter-form .btn { justify-content: center; }
  .article-hero { padding: 0; }
  .article-back { margin-bottom: 38px; }
  .article-lead-image { aspect-ratio: 1.2 / 1; }
  .article-layout { grid-template-columns: 1fr; gap: 26px; }
  .article-body blockquote { margin-inline: 0; padding-left: 22px; }
  .article-related { grid-column: 1; }
  .article-related-list { grid-template-columns: 1fr; gap: 0; }
  .article-related-card { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 15px; }
  .article-related-media { height: 70px; margin-bottom: 0; aspect-ratio: auto; }
  .related-head { align-items: flex-start; flex-direction: column; }
}

/* Diagonal action arrows — the shared 45-degree brand gesture. */
.arrow,
.link-arrow > span[aria-hidden="true"],
.card-arrow > span[aria-hidden="true"],
.article-related-head > a > span[aria-hidden="true"],
.article-back > span[aria-hidden="true"] {
  display: inline-block;
  font-size: 0;
  line-height: 1;
}
.arrow::after,
.link-arrow > span[aria-hidden="true"]::after,
.card-arrow > span[aria-hidden="true"]::after,
.article-related-head > a > span[aria-hidden="true"]::after {
  content: "\2197";
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}
.arrow::after,
.link-arrow > span[aria-hidden="true"]::after,
.article-back > span[aria-hidden="true"]::after {
  transform: translateY(2px);
}
.card-arrow > span[aria-hidden="true"]::after { font-size: 27px; }
.article-back > span[aria-hidden="true"]::after {
  content: "\2196";
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  color: currentColor;
  transition: transform var(--dur-base) var(--ease-out);
}
.article-back > span[aria-hidden="true"]::after { transform: translateY(1px); }
.article-back:hover > span[aria-hidden="true"]::after { transform: translate(-3px, 0); }
