/* ============================================================
   Grey Gulf — the Gulf seen through haze (v2, cinematic)
   Cool greyscale · slate & fog · resolve-bar motif
   ============================================================ */

:root {
  /* Palette */
  --base:      #15181B;  /* near-black */
  --slate:     #22272B;  /* slate */
  --fog-mid:   #5B6469;  /* mid fog */
  --fog-light: #9AA1A6;  /* light fog — the "unresolved" state */
  --mist:      #DDE1E3;  /* cool pale mist — primary light text */
  --teal:      #2F5D63;  /* muted petrol-teal — resolve-bar final segment + card hover hairline only */

  /* Type — Hanken Grotesk (display 200/300) · Instrument Sans (body) · Space Mono (labels) */
  --font-display: "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Instrument Sans", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* Rhythm */
  --wrap:   clamp(20px, 7vw, 132px);
  --maxw:   1280px;
  --gap-xl: clamp(110px, 20vh, 240px);

  /* Motion */
  --ease-fog: cubic-bezier(0.22, 0.61, 0.30, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--base);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: rgba(47, 93, 99, 0.55); color: var(--mist); }

/* ---------- Focus / skip ---------- */
:focus-visible {
  outline: 2px solid var(--fog-light);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--slate);
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ---------- Shared layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--wrap);
}
.wrap--narrow { max-width: 1000px; }
.center { text-align: center; }

.section {
  position: relative;
  padding-block: var(--gap-xl);
}

/* Recurring mono label — the one deliberate detail */
.eyebrow {
  margin: 0 0 clamp(24px, 4vh, 44px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;   /* Space Mono ships 400/700 only */
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--fog-mid);
}
.eyebrow--center { margin-inline: auto; }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--mist);
}
.wordmark--nav {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.30em;
  white-space: nowrap;
}
.wordmark--footer {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.30em;
  color: var(--fog-light);
}

/* ============================================================
   RESOLVE BAR — the brand mark. Segments fade faint → solid,
   left to right (fog clearing); the final segment is the Gulf.
   ============================================================ */
.bar {
  display: inline-flex;
  gap: 5px;
}
.bar i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mist);
}
.bar i:nth-child(1) { opacity: 0.14; }
.bar i:nth-child(2) { opacity: 0.30; }
.bar i:nth-child(3) { opacity: 0.52; }
.bar i:nth-child(4) { opacity: 0.78; }
.bar .bar__end { opacity: 1; background: var(--teal); }

.bar--mark { margin-bottom: clamp(30px, 5vh, 52px); }
.bar--corner {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 4vh, 44px);
  right: var(--wrap);
}
.bar--lockup { margin: clamp(24px, 4vh, 40px) 0 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(21, 24, 27, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(91, 100, 105, 0.18);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(18px, 3vh, 26px) var(--wrap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links {
  display: flex;
  gap: clamp(16px, 2.6vw, 38px);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fog-light);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--fog-light);
  transition: color 0.35s ease;
}
.nav__links a:hover { color: var(--mist); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--fog-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-fog);
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 560px) {
  .nav__inner { gap: 10px; padding-inline: clamp(16px, 4.5vw, 24px); }
  .wordmark--nav { font-size: 12px; letter-spacing: 0.10em; }
  .nav__links { gap: 10px; font-size: 11px; letter-spacing: 0; }
}

/* ============================================================
   SCRIM — shared cinematic grade for hero + panels
   ============================================================ */
.scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(21, 24, 27, 0.92) 0%, rgba(21, 24, 27, 0.34) 40%, rgba(21, 24, 27, 0.10) 72%, rgba(21, 24, 27, 0.26) 100%),
    radial-gradient(130% 90% at 50% 34%, rgba(21, 24, 27, 0) 42%, rgba(21, 24, 27, 0.42) 100%);
  background-color: rgba(21, 24, 27, 0.18);
}
.scrim--even {
  background:
    linear-gradient(to top, rgba(21, 24, 27, 0.72) 0%, rgba(21, 24, 27, 0.38) 50%, rgba(21, 24, 27, 0.55) 100%);
  background-color: rgba(21, 24, 27, 0.25);
}

/* ============================================================
   1 · HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--base);
  isolation: isolate;
}

/* CSS haze fallback */
.hero__haze { position: absolute; inset: -20%; z-index: 0; }
.haze {
  position: absolute;
  inset: 0;
  display: block;
  filter: blur(60px);
  will-change: transform, opacity;
}
.haze--1 {
  background:
    radial-gradient(60% 45% at 30% 62%, rgba(120, 132, 138, 0.30), rgba(21, 24, 27, 0) 70%),
    radial-gradient(50% 40% at 72% 40%, rgba(84, 96, 102, 0.24), rgba(21, 24, 27, 0) 72%);
  animation: drift1 46s ease-in-out infinite;
}
.haze--2 {
  background:
    radial-gradient(55% 50% at 60% 78%, rgba(154, 161, 166, 0.16), rgba(21, 24, 27, 0) 68%),
    radial-gradient(45% 38% at 18% 30%, rgba(47, 93, 99, 0.14), rgba(21, 24, 27, 0) 70%);
  animation: drift2 63s ease-in-out infinite;
  opacity: 0.9;
}
.haze--3 {
  background:
    radial-gradient(70% 55% at 45% 92%, rgba(34, 39, 43, 0.9), rgba(21, 24, 27, 0) 60%),
    radial-gradient(40% 34% at 85% 68%, rgba(120, 132, 138, 0.12), rgba(21, 24, 27, 0) 74%);
  animation: drift3 81s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate3d(-3%, 1%, 0) scale(1.05); }
  50%     { transform: translate3d(4%, -2%, 0) scale(1.12); }
}
@keyframes drift2 {
  0%,100% { transform: translate3d(2%, -1%, 0) scale(1.1); }
  50%     { transform: translate3d(-4%, 3%, 0) scale(1.04); }
}
@keyframes drift3 {
  0%,100% { transform: translate3d(0, 2%, 0) scale(1.08); }
  50%     { transform: translate3d(3%, -1%, 0) scale(1.14); }
}

.hero__shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__shader.is-active { opacity: 1; }

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.82);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--wrap) clamp(96px, 17vh, 190px);
}
.hero__line {
  margin: 0;
  max-width: 40ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--mist);
}
/* Deliberate two-line lockup: sentence per line, not a ragged wrap */
.hero__line span { display: block; }
.hero__enquiries {
  display: inline-block;
  margin-top: clamp(22px, 3.5vh, 36px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog-light);
  border-bottom: 1px solid rgba(154, 161, 166, 0.35);
  padding-bottom: 4px;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.hero__enquiries:hover { color: var(--mist); border-color: rgba(221, 225, 227, 0.6); }

.scrollcue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(22px, 4vh, 40px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fog-mid);
  transition: color 0.35s ease;
}
.scrollcue:hover { color: var(--fog-light); }
.scrollcue__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scrollcue__line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, currentColor, transparent);
  overflow: hidden;
}
.scrollcue__line::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, var(--mist), transparent);
  animation: cue 2.6s var(--ease-fog) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ============================================================
   CINEMATIC PANELS — full-bleed media, caption bottom-left,
   resolve-bar in the corner. The consistent pattern.
   ============================================================ */
.panel {
  position: relative;
  min-height: clamp(560px, 92svh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--slate);
}

/* Consecutive full-bleed media sections must not butt together — deep
   near-black interstices keep each frame a distinct cinematic moment. */
.panel + .panel {
  margin-top: clamp(110px, 20vh, 260px);
}

/* Every panel dissolves into near-black at its top and bottom edges,
   so frames emerge from the dark instead of hard-cutting against it. */
.panel::before,
.panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(70px, 12vh, 160px);
  z-index: 1;
  pointer-events: none;
}
.panel::before {
  top: 0;
  background: linear-gradient(to bottom, var(--base), rgba(21, 24, 27, 0));
}
.panel::after {
  bottom: 0;
  background: linear-gradient(to top, var(--base), rgba(21, 24, 27, 0));
}
.panel--deep { background: #1a1e21; }

.panel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Media child oversized for the slow parallax drift */
.panel__media .mist,
.panel__media .panel__img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
}
/* Panel media grade — darker than the hero so a skyline reads as haze, not a postcard */
.panel__img { filter: grayscale(1) contrast(1.04) brightness(0.72); }

/* Per-panel crops: keep the telling band of each frame in view at any ratio */
.panel--gulf .panel__img    { object-position: 50% 32%; }  /* hazy skyline band, marina buried by scrim */
#approach .panel__img       { object-position: 50% 45%; }  /* towers rising into sky */
#presence .panel__img       { object-position: 50% 68%; }  /* the Gate + skyline, less empty sky */
.credo .panel__img {
  object-position: 50% 58%;                                /* monument band centred */
  filter: grayscale(1) contrast(1.02) brightness(0.55);    /* quietest frame of the set */
}
/* The line must own this frame: deepest scrim of the set, pooled at the centre */
.credo > .scrim--even {
  background:
    radial-gradient(80% 68% at 50% 50%, rgba(21, 24, 27, 0.72) 0%, rgba(21, 24, 27, 0.48) 58%, rgba(21, 24, 27, 0.30) 100%);
  background-color: rgba(21, 24, 27, 0.22);
}

/* Caption panels take the spec scrim; centered panels keep the even scrim */
.panel > .scrim {
  background: linear-gradient(180deg, rgba(21, 24, 27, 0.55) 0%, rgba(21, 24, 27, 0.78) 100%);
}
.panel > .scrim--even {
  background:
    linear-gradient(to top, rgba(21, 24, 27, 0.72) 0%, rgba(21, 24, 27, 0.42) 50%, rgba(21, 24, 27, 0.58) 100%);
}

/* Placeholder mist layers (render beneath any dropped-in asset) */
.mist {
  display: block;
  filter: blur(70px);
  will-change: transform;
}
.mist--a {
  background:
    radial-gradient(50% 45% at 30% 42%, rgba(120,132,138,0.22), rgba(21,24,27,0) 70%),
    radial-gradient(45% 40% at 76% 66%, rgba(84,96,102,0.18), rgba(21,24,27,0) 72%);
  animation: mistA 54s ease-in-out infinite;
}
.mist--b {
  background:
    radial-gradient(55% 50% at 62% 28%, rgba(154,161,166,0.12), rgba(21,24,27,0) 68%),
    radial-gradient(40% 36% at 18% 74%, rgba(47,93,99,0.12), rgba(21,24,27,0) 70%);
  animation: mistB 72s ease-in-out infinite;
}
@keyframes mistA {
  0%,100% { transform: translate3d(-2%, 1%, 0) scale(1.05); }
  50%     { transform: translate3d(3%, -2%, 0) scale(1.12); }
}
@keyframes mistB {
  0%,100% { transform: translate3d(2%, -1%, 0) scale(1.1); }
  50%     { transform: translate3d(-3%, 2%, 0) scale(1.04); }
}

.panel__caption {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(56px, 9vh, 104px);
}
.panel__caption .eyebrow { color: var(--fog-light); }
.panel__line {
  margin: 0;
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--mist);
}
.panel__support {
  margin: clamp(18px, 3vh, 28px) 0 0;
  max-width: 52ch;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--fog-light);
}

/* Centered-panel variant (Presence) */
.panel--centered { justify-content: center; }
.presence__content { position: relative; z-index: 2; }
.presence__content .eyebrow { color: var(--fog-light); }
.presence__lead {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.2vw, 3.1rem);
  line-height: 1.24;
  letter-spacing: -0.005em;
  color: var(--mist);
  text-wrap: balance;
}
.presence__secondary {
  margin: clamp(20px, 3.2vh, 34px) auto 0;
  max-width: 38ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--fog-light);
}
.presence__secondary span { display: block; }  /* one financial centre per line */
.presence__note {
  margin: clamp(14px, 2.2vh, 24px) auto 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--fog-mid);
  letter-spacing: 0.01em;
}
.horizon-line {
  position: absolute;
  top: 82%;   /* below the centred copy, above the skyline band */
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(91, 100, 105, 0.18) 22%,
    rgba(154, 161, 166, 0.38) 50%,
    rgba(91, 100, 105, 0.18) 78%,
    transparent 100%
  );
  animation: horizonDrift 18s ease-in-out infinite;
}
@keyframes horizonDrift {
  0%,100% { transform: translateY(-6px) scaleX(1); opacity: 0.7; }
  50%     { transform: translateY(6px)  scaleX(1.02); opacity: 1; }
}

/* ============================================================
   2 · CENTERED STATEMENT
   ============================================================ */
.statement { padding-block: clamp(130px, 22vh, 260px); }
.statement__body {
  margin: 0 auto;
  max-width: 30ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--mist);
  text-wrap: balance;
}
.statement__support {
  margin: clamp(22px, 3.4vh, 36px) auto 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--fog-light);
  letter-spacing: 0.01em;
}

/* ============================================================
   4 · INTERESTS — six-card sector grid
   ============================================================ */
.interests .eyebrow { margin-bottom: clamp(14px, 2.2vh, 22px); }
.section__title {
  margin: 0 0 clamp(36px, 6vh, 64px);
  max-width: 26ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--mist);
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.4vw, 20px);
}
.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;   /* titles align across the row, text beneath */
  min-height: clamp(150px, 15vw, 190px);
  padding: clamp(26px, 2.6vw, 40px);
  background: #1D2226;
  border: 1px solid rgba(91, 100, 105, 0.28);
  transition: border-color 0.4s var(--ease-fog),
              transform 0.4s var(--ease-fog);
}
.card:hover {
  border-color: rgba(47, 93, 99, 0.65);  /* the accent — a hairline, on hover */
  transform: translateY(-3px);
}
.card__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.005em;
  color: var(--mist);
}
.card__desc {
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: var(--fog-light);
  letter-spacing: 0.01em;
}
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   6 · PRINCIPLES — quiet stacked tenets, pure type
   ============================================================ */
.principles { padding-block: clamp(110px, 18vh, 220px); }
.principles .eyebrow { margin-bottom: clamp(30px, 5vh, 56px); }
.tenets { border-top: 1px solid rgba(91, 100, 105, 0.2); }
.tenets__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: clamp(24px, 3.8vh, 40px) 0;
  border-bottom: 1px solid rgba(91, 100, 105, 0.2);
}
.tenets__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  letter-spacing: 0.005em;
  color: var(--mist);
}
.tenets__desc {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--fog-light);
  letter-spacing: 0.01em;
}
@media (min-width: 760px) {
  .tenets__item {
    grid-template-columns: minmax(180px, 3fr) minmax(0, 9fr);
    align-items: baseline;
    gap: 40px;
  }
}

/* ============================================================
   8 · CREDIBILITY MOMENT — one line, the deepest space on the page
   ============================================================ */
.credo.panel {
  min-height: clamp(680px, 108svh, 1040px);
  padding-block: clamp(160px, 26vh, 320px);
}
.credo__content { position: relative; z-index: 2; }
.credo__line {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--mist);
  text-wrap: balance;
}

/* ============================================================
   9 · CLOSING LOCKUP
   ============================================================ */
.lockup {
  padding-block: clamp(130px, 22vh, 280px);
  border-top: 1px solid rgba(91, 100, 105, 0.14);
}
.lockup__mark {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: clamp(0.2em, 1vw, 0.32em);
  line-height: 1;
}
.lockup__line {
  margin: clamp(26px, 4vh, 44px) auto 0;
  max-width: 40ch;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--fog-light);
}
.lockup__line span { display: block; }
.lockup__enq {
  margin: clamp(40px, 6.5vh, 76px) 0 0;
  display: flex;
  gap: 8px 16px;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: 0.01em;
}
.lockup__enq-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog-mid);
}
.lockup__email {
  color: var(--mist);
  border-bottom: 1px solid rgba(221, 225, 227, 0.22);
  padding-bottom: 2px;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.lockup__email:hover { color: var(--mist); border-bottom-color: rgba(221, 225, 227, 0.6); }

/* ============================================================
   10 · FOOTER + DISCLAIMER
   ============================================================ */
.footer {
  padding-block: clamp(56px, 9vh, 96px);
  border-top: 1px solid rgba(91, 100, 105, 0.16);
}
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 40px);
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__locations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-mid);
}
@media (min-width: 760px) {
  .footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px clamp(40px, 6vw, 96px);
  }
  .footer__locations { text-align: right; }
}
.footer__contact {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--fog-mid);
  letter-spacing: 0.01em;
}
.footer__contact { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__contact a { transition: color 0.35s ease; }
.footer__contact a:hover { color: var(--fog-light); }
.footer__legal {
  margin: clamp(20px, 3.5vh, 36px) 0 0;
  max-width: 72ch;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(91, 100, 105, 0.85);
  letter-spacing: 0.01em;
}
.footer__entity {
  margin: clamp(16px, 2.6vh, 26px) 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(91, 100, 105, 0.85);
  letter-spacing: 0.01em;
}
.footer__links {
  margin-top: clamp(14px, 2.2vh, 22px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fog-mid);
}
.footer__links a {
  border-bottom: 1px solid rgba(91, 100, 105, 0.35);
  padding-bottom: 2px;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.footer__links a:hover { color: var(--fog-light); border-color: var(--fog-light); }
.footer__meta {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-mid);
}

/* ============================================================
   LEGAL PAGES — narrow single column, same register
   ============================================================ */
.legal-nav {
  padding: clamp(20px, 3.5vh, 30px) 0;
  border-bottom: 1px solid rgba(91, 100, 105, 0.14);
}
.legal-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-nav__back {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog-mid);
  transition: color 0.35s ease;
}
.legal-nav__back:hover { color: var(--fog-light); }
.legal {
  padding-block: clamp(70px, 11vh, 130px);
}
.legal .wrap { max-width: 800px; }
.legal h1 {
  margin: 0 0 clamp(36px, 6vh, 60px);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: -0.005em;
  color: var(--mist);
}
.legal h2 {
  margin: clamp(34px, 5vh, 52px) 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--mist);
}
.legal p {
  margin: 0 0 16px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  color: var(--fog-light);
}
.legal a { border-bottom: 1px solid rgba(154, 161, 166, 0.35); padding-bottom: 1px; }
.legal a:hover { color: var(--mist); }
.legal__updated {
  margin-top: clamp(36px, 6vh, 56px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-mid);
}

/* ============================================================
   FOG-RESOLVE — the signature reveal
   ============================================================ */
.reveal-ready .resolve {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(26px);
  will-change: opacity, filter, transform;
}
.reveal-ready .resolve.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
/* The bar resolves segment by segment, not as a block */
.reveal-ready .bar.resolve { filter: none; transform: none; }

/* ---------- Film grain — one faint layer binding panels and flat sections ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Reduced motion / no-JS: everything resolved, no drift, no autoplay.
   The hero holds on its poster still instead of the film. */
@media (prefers-reduced-motion: reduce) {
  .haze, .mist, .horizon-line, .scrollcue__line::after { animation: none !important; }
  .resolve { opacity: 1 !important; filter: none !important; transform: none !important; }
  .hero__video, .hero__haze, .hero__shader { display: none !important; }
  .hero {
    background: var(--base) url("/hero-poster.jpg") center / cover no-repeat;
  }
}
