/* ============================================================
   ACE GLOBAL — 1:1 Design Recreation
   Yellow: #F7E956  |  Nav: #EDE293  |  Typography from design specs
   ============================================================ */

/* ---------- FONTS ---------- */
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkLg___.ttf') format('truetype'); font-weight:300; font-style:normal; font-display:swap }
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkLgIt_.ttf') format('truetype'); font-weight:300; font-style:italic; font-display:swap }
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkRg___.ttf') format('truetype'); font-weight:400; font-style:normal; font-display:swap }
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkRgIt_.ttf') format('truetype'); font-weight:400; font-style:italic; font-display:swap }
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkBd___.ttf') format('truetype'); font-weight:700; font-style:normal; font-display:swap }
@font-face { font-family:'Akkurat'; src:url('../fonts/AkkBdIt_.ttf') format('truetype'); font-weight:700; font-style:italic; font-display:swap }

/* ---------- RESET ---------- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }

:root {
  --yellow: #ffdd00;
  --nav-bg: #f9f4b9;
  --black: #1a1a1a;
  --dark: #282828;
  --body-color: #3a3a3a;
  --white: #fff;
  --pad: clamp(28px, 5.2vw, 100px);
  --nav-height: 76px;
  --container: 900px;
}

html { overflow-x:clip }
body { overflow-x: clip }

body {
  font-family: 'Akkurat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--yellow);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

/* ============================================================
   NAVIGATION — Desktop: 3-column grid (equal side bands, links hug logo).
   Mobile: one bar + hamburger + full-height panel (no wrapped-link clutter).
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  background: var(--nav-bg);
  overflow: visible;
  transition: box-shadow .4s, background-color .5s;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  background: rgba(249, 244, 185, 0.97);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: clamp(12px, 1.5vw, 26px);
  margin: 0;
}

.nav__lang {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: clamp(8px, 0.52vw, 10px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity .35s;
}

.nav:hover .nav__lang { opacity: 0.65 }

.nav__lang-btn {
  font: inherit;
  font-family: inherit;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  opacity: 0.55;
  transition: opacity .25s;
}

.nav__lang-btn:hover,
.nav__lang-btn:focus-visible { opacity: 1; outline: none }

.nav__lang-btn--active {
  opacity: 1;
  font-weight: 700;
}

.nav__lang-sep {
  opacity: 0.35;
  user-select: none;
}

.nav__links a {
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity .3s;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a:hover { opacity: .35 }

/* Active menu item — thin underline */
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
}

.nav__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  flex-shrink: 0;
}

.nav__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav.nav--open .nav__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.nav--open .nav__menu-bar:nth-child(2) { opacity: 0; }
.nav.nav--open .nav__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__panel {
  display: none;
}

.nav__links--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 320px;
  margin: 0 auto;
}

.nav__links--mobile a {
  display: block;
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav__links--mobile li:last-child a { border-bottom: none }

/* ----- Desktop (wide): single short bar + grid columns; lang absolute (no extra row) ----- */
@media (min-width: 992px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: end;
    align-content: end;
    column-gap: clamp(10px, 1.8vw, 32px);
    padding: 0 var(--pad) 10px;
    min-height: var(--nav-height);
    height: var(--nav-height);
    box-sizing: border-box;
  }

  .nav__menu-toggle { display: none !important; }

  .nav__lang {
    position: absolute;
    top: 8px;
    right: var(--pad);
    margin: 0;
    z-index: 202;
  }

  .nav__links--left {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .nav__logo {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateY(47%);
    justify-self: center;
    align-self: end;
    z-index: 201;
  }

  .nav__links--right {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-start;
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .nav__panel { display: none !important; }

  .nav__logo img {
    height: clamp(88px, 7.8vw, 132px);
    width: auto;
  }
}

/* ----- Mobile / tablet: compact bar + overlay menu ----- */
@media (max-width: 991px) {
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    height: auto;
    padding: 8px 14px;
    box-sizing: border-box;
  }

  .nav__menu-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
    position: relative;
    z-index: 203;
  }

  .nav__lang {
    order: 2;
    margin-left: auto;
    margin-right: 4px;
    position: relative;
    z-index: 203;
    opacity: 0.75;
  }

  .nav__links--left,
  .nav__links--right {
    display: none !important;
  }

  .nav__logo {
    order: 1;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: 203;
    margin: 0;
    flex: 0 0 auto;
  }

  .nav__logo img {
    height: 36px;
    width: auto;
    max-height: 36px;
    display: block;
  }

  .nav.scrolled .nav__logo img {
    transform: scale(0.95);
  }

  .nav__panel {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 52px;
    bottom: 0;
    z-index: 201;
    padding: 24px var(--pad) 40px;
    background: rgba(249, 244, 185, 0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
    pointer-events: none;
  }

  .nav.nav--open .nav__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================================================
   LABEL (subheading above main heading) + RULE (thick line)
   ============================================================ */
.label-rule { margin-bottom: 18px }

.label {
  display: block;
  font-size: clamp(9px, 0.62vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.rule {
  display: block;
  width: 160px;
  height: 6px;
  background: var(--black);
}

/* ============================================================
   HEADINGS — Section h1: 105px at 1920
   BODY — ~14px at 1920
   ============================================================ */
.heading {
  font-size: clamp(32px, 4.17vw, 80px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 28px;
  max-width: none;
}

.heading--accent { font-size: clamp(38px, 4.95vw, 95px) }

.body {
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--body-color);
  margin-bottom: 14px;
  max-width: 600px;
}

.body:last-child { margin-bottom:0 }

.body-offset { margin-left: 160px }
.body-offset--split { margin-left: 0 }

/* ============================================================
   BACKGROUND HELPERS
   ============================================================ */
.bg-yellow { background: var(--yellow) }
.bg-white  { background: var(--white) }

/* ============================================================
   HERO — Very long yellow section with 3 heading groups
   Hero title: Akkurat Light 153pt
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) max(var(--pad), calc((100vw - var(--container)) / 2)) 80px;
  overflow: visible;
  background: var(--yellow);
}

/* 3D Orb canvas — extends beyond hero so orb overlaps mission background, but sits behind all text */
.hero__3d {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 140%;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}

.hero__3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hero__top {
  text-align: center;
  padding: 60px 0 0;
  margin-bottom: clamp(120px, 18vh, 240px);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: none;
}

.hero__title {
  font-size: clamp(48px, 5.5vw, 105px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 36px;
  white-space: nowrap;
}

.hero__sub {
  font-size: clamp(14px, 0.88vw, 17px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--dark);
  max-width: 580px;
  margin: 0 auto;
}

.hero__group {
  position: relative;
  z-index: 10;
  margin-bottom: clamp(100px, 14vh, 200px);
}

.hero__group:last-child { margin-bottom: 0 }
.hero__group--left { max-width: 100% }

/* Mission section continues after hero */
.hero--continuation {
  padding-top: clamp(48px, 7vh, 100px);
  padding-bottom: 80px;
}

/* ============================================================
   BRIDGE IMAGES
   ============================================================ */
.bridge {
  position: relative;
  width: 100%;
  overflow: visible;
}

.bridge + .bridge { margin-top: -1px }

.bridge__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  height: clamp(280px, 40vh, 500px);
}

.bridge--tall .bridge__img { height: clamp(350px, 50vh, 620px) }

.bridge--hardcut .bridge__img {
  mask-image: none;
  -webkit-mask-image: none;
}

.bridge--flush { margin-top: 0 }

.bridge__video {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  height: auto;
}

.bridge--vid-70 .bridge__video { height: 70vh; object-fit: cover }
.bridge--vid-60 .bridge__video { height: 60vh; object-fit: cover }
.bridge--vid-40 .bridge__video { height: 40vh; object-fit: cover }

.bridge--yellow-tint::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffdd00;
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   GLARE GRADIENT CIRCLES — At top/bottom EDGES of sections
   ============================================================ */
.glare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9;
  filter: blur(10px);
  transform: translateZ(0);
}

.glare--white {
  background: radial-gradient(circle,
    #ffffff 0%, #ffffff 24%,
    rgba(255,255,255,0.98) 27%,
    rgba(255,255,255,0.9) 32%,
    rgba(255,255,255,0.72) 38%,
    rgba(255,255,255,0.52) 44%,
    rgba(255,255,255,0.36) 50%,
    rgba(255,255,255,0.24) 55%,
    rgba(255,255,255,0.14) 60%,
    rgba(255,255,255,0.08) 64%,
    rgba(255,255,255,0.045) 68%,
    rgba(255,255,255,0.022) 72%,
    rgba(255,255,255,0.01) 75%,
    rgba(255,255,255,0.004) 78%,
    transparent 82%);
}

.glare--yellow {
  background: radial-gradient(circle,
    #ffdd00 0%, #ffdd00 24%,
    rgba(255,221,0,0.98) 27%,
    rgba(255,221,0,0.9) 32%,
    rgba(255,221,0,0.72) 38%,
    rgba(255,221,0,0.52) 44%,
    rgba(255,221,0,0.36) 50%,
    rgba(255,221,0,0.24) 55%,
    rgba(255,221,0,0.14) 60%,
    rgba(255,221,0,0.08) 64%,
    rgba(255,221,0,0.045) 68%,
    rgba(255,221,0,0.022) 72%,
    rgba(255,221,0,0.01) 75%,
    rgba(255,221,0,0.004) 78%,
    transparent 82%);
}

@media (max-width: 900px) {
  .glare--white {
    background: radial-gradient(circle,
      #ffffff 0%, #ffffff 18%,
      rgba(255,255,255,0.97) 22%,
      rgba(255,255,255,0.82) 30%,
      rgba(255,255,255,0.55) 38%,
      rgba(255,255,255,0.32) 46%,
      rgba(255,255,255,0.16) 52%,
      rgba(255,255,255,0.08) 58%,
      rgba(255,255,255,0.035) 63%,
      rgba(255,255,255,0.012) 68%,
      transparent 74%);
  }
  .glare--yellow {
    background: radial-gradient(circle,
      #ffdd00 0%, #ffdd00 18%,
      rgba(255,221,0,0.97) 22%,
      rgba(255,221,0,0.82) 30%,
      rgba(255,221,0,0.55) 38%,
      rgba(255,221,0,0.32) 46%,
      rgba(255,221,0,0.16) 52%,
      rgba(255,221,0,0.08) 58%,
      rgba(255,221,0,0.035) 63%,
      rgba(255,221,0,0.012) 68%,
      transparent 74%);
  }
}

/* ============================================================
   ACE WATERMARK ORB (decorative on sections)
   ============================================================ */
.orb {
  position: absolute;
  pointer-events: none;
  z-index: 8;
}

.orb__back,
.orb__front {
  position: absolute;
  inset: 0;
}

.orb__back { z-index: 1 }
.orb__front { z-index: 2 }

.orb__back canvas,
.orb__front canvas { width:100% !important; height:100% !important; display:block }

.orb--lg {
  width: clamp(840px, 96vw, 1700px);
  height: clamp(840px, 96vw, 1700px);
}

.orb--md {
  width: clamp(560px, 60vw, 1040px);
  height: clamp(560px, 60vw, 1040px);
}

/* Post–mission bridge: larger, sits left so it clips off-screen */
.orb--mission-bridge {
  width: clamp(620px, 66vw, 1140px);
  height: clamp(620px, 66vw, 1140px);
}

/* ============================================================
   TEXT BLOCK SECTIONS
   ============================================================ */
.block {
  position: relative;
  padding: clamp(60px, 8vh, 120px) max(var(--pad), calc((100vw - var(--container)) / 2));
  overflow: visible;
}

.block__inner { max-width: 900px; position: relative; z-index: 10 }

.block--right {
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.split--reverse { flex-direction:row-reverse }

.split__img {
  flex: 1.25;
  position: relative;
  overflow: visible;
}

.split__img img {
  width: 100%;
  height: clamp(320px, 52vh, 600px);
  object-fit: cover;
  display: block;
}

.split__img--fade-r img {
  mask-image:
    linear-gradient(to right, black 38%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 90%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(to right, black 38%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.split__img--fade-l img {
  mask-image:
    linear-gradient(to left, black 38%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 90%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(to left, black 38%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.split__txt {
  flex: 1;
  padding: 36px clamp(24px, 3vw, 56px);
  position: relative;
  z-index: 4;
}

.split__txt .body { max-width:500px }

/* ============================================================
   OVERLAPS
   ============================================================ */
.overlap--up-sm  { margin-top:-60px }
.overlap--up-md  { margin-top:-100px }
.overlap--up-lg  { margin-top:-160px }
.overlap--up-xl  { margin-top:-200px }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { padding:16px var(--pad) }
.divider__line { height:1px; background:rgba(0,0,0,0.1); max-width:1000px }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 60px var(--pad) 28px;
  z-index: 10;
  position: relative;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
}

.footer__label-rule {
  margin-bottom: 18px;
}

.footer__label {
  display: block;
  font-size: clamp(9px, 0.62vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.footer__rule {
  display: block;
  width: 160px;
  height: 6px;
  background: var(--yellow);
}

.footer__disclaimer {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer__col p, .footer__col a {
  font-size: 15px; font-weight: 300;
  line-height: 2; display: block;
  transition: color .3s;
}

.footer__col a:hover { color:var(--white) }

/* footer logo removed — contact label-rule replaces it */

.footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px; margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__credit {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer__credit a {
  color: rgba(255,255,255,0.35);
  transition: color .3s;
  font-size: 12px;
}

.footer__credit a:hover {
  color: var(--white);
}

/* ============================================================
   SCROLL ANIMATIONS — Apple-inspired, high-end
   ============================================================ */

/* --- Headings: elegant fade + rise --- */
.heading.anim {
  opacity: 0;
  transform: translateY(36px);
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.heading.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero title: scale + fade --- */
.hero__title.anim {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  clip-path: none;
  transition:
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title.anim.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* --- Body text: fade up --- */
.body.anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.body.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero subtitle: fade --- */
.hero__sub.anim {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero__sub.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Labels: slide from left --- */
.label {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.label.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Rule line: grow from left --- */
.rule {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.rule.visible {
  transform: scaleX(1);
}

/* --- Bridge images/videos: subtle fade-in only --- */
.bridge__img,
.bridge__video {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bridge.visible .bridge__img,
.bridge.visible .bridge__video {
  opacity: 1;
}

/* --- Stagger delays --- */
.d1 { transition-delay: 0.15s }
.d2 { transition-delay: 0.3s }
.d3 { transition-delay: 0.45s }

/* --- Divider line: grow from center --- */
.divider__line {
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.divider.visible .divider__line {
  transform: scaleX(1);
}

/* ---------- LEGAL / DISCLAIMER (secondary page) ---------- */
.page-disclaimer {
  background: var(--yellow);
  min-height: 100vh;
}

.page-disclaimer .nav {
  position: relative;
}

.legal {
  padding: calc(var(--nav-height) + 48px) var(--pad) 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal__back {
  display: inline-block;
  font-size: clamp(9px, 0.56vw, 11px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  margin-bottom: 28px;
  transition: opacity .25s;
}

.legal__back:hover { opacity: 1 }

.legal__title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--black);
}

.legal__body p {
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.85;
  color: var(--body-color);
  margin-bottom: 20px;
}

.legal__body p:last-child { margin-bottom: 0 }

.legal__tagline {
  margin-top: 48px;
  font-size: clamp(13px, 0.85vw, 16px);
  font-style: italic;
  color: var(--dark);
  max-width: 520px;
  line-height: 1.6;
}

/* ORB — 3D rendered, no CSS animation needed */


/* Glare drift animations removed for scroll performance */

/* ============================================================
   NAV — Logo image motion (scroll shrink on desktop)
   ============================================================ */
.nav__logo img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 992px) {
  .nav.scrolled .nav__logo img {
    transform: scale(0.85);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .split, .split--reverse { flex-direction:column; min-height:auto }
  .split__img img { height:clamp(220px,36vh,360px) }
  .split__img--fade-r img, .split__img--fade-l img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 92%, transparent 100%);
    mask-composite:unset; -webkit-mask-composite:unset;
  }
  .split__txt { padding:28px var(--pad) }
  .body-offset { margin-left:clamp(0px,10vw,160px); }
  .overlap--up-lg { margin-top:-80px }
  .overlap--up-xl { margin-top:-110px }
}

@media (max-width: 991px) {
  .hero { padding-top: clamp(88px, 22vw, 120px) }

  .page-disclaimer .legal {
    padding-top: clamp(68px, 20vw, 96px);
  }

  .hero__title { font-size:clamp(36px,10vw,60px) }
  .hero__top { margin-bottom:60px }
  .hero__group { margin-bottom:40px }
  .heading { font-size:clamp(24px,7vw,40px) }
  .heading--accent { font-size:clamp(28px,8.5vw,48px) }

  .body { font-size:clamp(12px,3vw,15px) }
  .body-offset { margin-left:0 }
  .block--right { justify-content:flex-start }
  .footer__inner { flex-direction:column; gap:20px }
  .hero__orb { width:120vw; height:120vw }

  .overlap--up-sm { margin-top:-30px }
  .overlap--up-md { margin-top:-50px }
  .overlap--up-lg { margin-top:-60px }
  .overlap--up-xl { margin-top:-80px }

  .hero--continuation { padding-top: clamp(28px, 4vh, 60px); padding-bottom: 40px; }

  .bridge--vid-60 .bridge__video { height: 30vh }
  .bridge--vid-40 .bridge__video { height: 20vh }
}

/* Narrow desktop: slightly smaller logo + tighter gaps so links clear the mark + hero overlap */
@media (min-width: 992px) and (max-width: 1280px) {
  .nav__links {
    gap: clamp(11px, 1.35vw, 22px);
  }
  .nav__links a {
    letter-spacing: 0.13em;
  }
  .nav__logo img {
    height: clamp(88px, 7.5vw, 120px);
  }
}

@media (max-width:480px) {
  .hero { padding: clamp(78px, 26vw, 108px) 16px 60px }
  .block { padding:44px 16px }
  .nav { padding-left: 10px; padding-right: 10px }
  .nav__logo img { height: 40px; max-height: 40px }
}
