/* ==========================================================================
   Socomet Sales, proposition V1 "Deep Water"
   Dark cinematic maritime language. Native CSS + GSAP ScrollTrigger.
   Dials: VARIANCE 7 / MOTION 7 / DENSITY 4. Radius 0 everywhere.
   z-index scale: page 0, nav 50, menu 40, skip link 60.
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0B100E;
  --surface-1: #121916;
  --surface-2: #18211D;
  --text: #E8ECE7;
  --muted: #9AA59D;
  --line: rgba(232, 236, 231, .10);
  --line-strong: rgba(232, 236, 231, .20);
  --accent: #5E853E;        /* Socomet green, fills and active rules */
  --accent-hi: #6E9A4A;     /* same hue, hover fill */
  --accent-text: #8DB36B;   /* same hue, text on dark (8.0:1) */
  --on-accent: #070A09;     /* label on green (4.6:1) */

  --gutter: clamp(20px, 4.4vw, 72px);
  --maxw: 1400px;
  --nav-h: 72px;
  --section-y: clamp(96px, 11vw, 176px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --wide: 118%;

  color-scheme: dark;
}

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

html { -webkit-text-size-adjust: 100%; }
html.menu-open { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
@media (min-width: 1024px) { body { font-size: 18px; } }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
figure { margin: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

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

.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;
}

.skip {
  position: fixed; top: 12px; left: 12px; z-index: 60;
  padding: 12px 18px; background: var(--accent); color: var(--on-accent);
  font-weight: 600; text-decoration: none;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip:focus-visible { transform: none; }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

/* ---------- Type ---------- */

.h2,
.svc-intro__title,
.svc__title,
.bento h3,
.acc__btn,
.reports__title,
.hero__title {
  font-stretch: var(--wide);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .01em;
}

.h2 {
  font-size: clamp(30px, 4.1vw, 62px);
  line-height: 1.02;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .h2 { font-stretch: 108%; }
  .team__head .h2 { font-size: clamp(24px, 7vw, 30px); }
}

.eyebrow {
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  font-stretch: 112%;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-text);
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75em;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 650;
  font-stretch: 112%;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn i { font-size: 1.25em; transition: transform .45s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary::before { background: var(--accent-hi); }

.btn--ghost {
  color: var(--text);
  background: rgba(11, 16, 14, .38);
  box-shadow: inset 0 0 0 1px rgba(232, 236, 231, .34);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost::before { background: rgba(232, 236, 231, .12); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 14, .82);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: inset 0 -1px 0 var(--line);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.nav.is-solid::before,
.menu-open .nav::before { opacity: 1; }

.nav__inner {
  position: relative;
  height: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.nav__logo { display: block; flex: none; padding-block: 8px; }
.nav__logo img { height: 26px; width: auto; }

.nav__links {
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 550;
  font-stretch: 112%;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: var(--accent-text);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="true"]::after { transform: scaleX(1); }

.nav__cta { min-height: 44px; padding: 0 18px; font-size: 13px; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  margin-left: auto;
  margin-right: -10px;
  place-items: center;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1099px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: grid; }
  .nav__logo img { height: 22px; }
}

/* ---------- Mobile menu ---------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 32px;
  background: var(--ink);
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 7.4vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  font-stretch: var(--wide);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .04s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .08s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .12s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .16s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: .2s; }
.menu__foot { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.menu__foot .btn { width: 100%; margin-bottom: 8px; }
.menu__meta { color: var(--muted); text-decoration: none; font-size: 16px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; will-change: transform; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 14, .6) 0%, rgba(11, 16, 14, 0) 20%),
    linear-gradient(90deg, rgba(11, 16, 14, .78) 0%, rgba(11, 16, 14, .45) 34%, rgba(11, 16, 14, 0) 58%),
    linear-gradient(0deg, rgba(11, 16, 14, 1) 0%, rgba(11, 16, 14, .72) 16%, rgba(11, 16, 14, 0) 46%);
}
.hero__sentinel {
  position: absolute;
  left: 0;
  top: calc(100% - 160px);
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: clamp(48px, 9vh, 104px);
}
.hero__title {
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: .98;
  letter-spacing: 0;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__title .line > span { display: block; }
.hero__lead {
  max-width: 34em;
  margin-top: clamp(20px, 2.4vw, 32px);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  color: var(--text);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.2vw, 44px);
}

/* Landscape desktop: title rides the empty sky, lead and CTAs sit on the sea below the vessel */
@media (min-width: 1024px) and (min-aspect-ratio: 5/4) {
  .hero { align-items: stretch; }
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-h) + clamp(24px, 5.5vh, 64px));
  }
  .hero__title { font-size: min(4.7vw, 80px); }
  .hero__lead { margin-top: 0; max-width: 32em; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11, 16, 14, .66) 0%, rgba(11, 16, 14, .34) 24%, rgba(11, 16, 14, 0) 40%),
      linear-gradient(0deg, rgba(11, 16, 14, 1) 0%, rgba(11, 16, 14, .7) 15%, rgba(11, 16, 14, 0) 40%),
      linear-gradient(90deg, rgba(11, 16, 14, .5) 0%, rgba(11, 16, 14, 0) 46%);
  }
}

@media (max-width: 767px) {
  .hero__img { object-position: 71% 50%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11, 16, 14, .55) 0%, rgba(11, 16, 14, 0) 18%),
      linear-gradient(0deg, rgba(11, 16, 14, 1) 0%, rgba(11, 16, 14, .86) 34%, rgba(11, 16, 14, .2) 62%, rgba(11, 16, 14, 0) 76%);
  }
  .hero__title { font-size: clamp(30px, 9.4vw, 46px); font-stretch: 108%; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .js .hero__img { opacity: 0; transform: scale(1.14); }
  .hero.is-loaded .hero__img {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 3s var(--ease);
  }
  .js .hero__title .line > span { animation: rise 1.15s var(--ease) .15s both; }
  .js .hero__title .line:nth-child(2) > span { animation-delay: .27s; }
  .js .hero__lead { animation: fadeUp 1s var(--ease) .55s both; }
  .js .hero__actions { animation: fadeUp 1s var(--ease) .7s both; }
}
@keyframes rise { from { transform: translateY(108%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Proof strip ---------- */

.proof { border-bottom: 1px solid var(--line); }
.proof__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.proof__list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px clamp(16px, 2.4vw, 36px) 32px;
  border-left: 1px solid var(--line);
}
.proof__list li:first-child { border-left: 0; padding-left: 0; }
.proof__list strong {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.15;
  font-weight: 600;
  font-stretch: var(--wide);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.proof__list span { color: var(--muted); font-size: 15px; line-height: 1.4; }

@media (max-width: 767px) {
  .proof__list { grid-template-columns: 1fr 1fr; }
  .proof__list li { padding: 22px 0 24px 16px; }
  .proof__list li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .proof__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- About ---------- */

.manifesto {
  max-width: 24em;
  font-size: clamp(25px, 3.25vw, 50px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--muted);
  text-wrap: pretty;
}
.manifesto strong { color: var(--text); font-weight: 500; }
.manifesto .w { display: inline; }

.bento {
  margin-top: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.bento > * { background: var(--ink); }
.bento__img {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.bento__clip { position: absolute; inset: 0; overflow: hidden; }
.bento__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.bento__cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(28px, 3.2vw, 52px);
  background: var(--surface-1);
}
.bento__cell--lead {
  grid-column: 6 / 13;
  justify-content: space-between;
  gap: 48px;
  min-height: 360px;
  background: var(--surface-2);
}
.bento__cell--a { grid-column: 6 / 10; }
.bento__cell--b { grid-column: 10 / 13; }
.bento h3 { font-size: clamp(19px, 1.6vw, 24px); line-height: 1.1; }
.bento__cell--lead h3 { font-size: clamp(40px, 5.6vw, 88px); line-height: .95; }
.bento p { color: var(--muted); max-width: 46ch; }
.bento__cell--lead p { color: var(--text); max-width: 44ch; font-size: clamp(17px, 1.3vw, 20px); }

@media (max-width: 1023px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__img { grid-column: 1 / 2; grid-row: 1 / 4; min-height: 0; }
  .bento__cell--lead, .bento__cell--a, .bento__cell--b { grid-column: 2 / 3; }
  .bento__cell--lead { min-height: 0; gap: 28px; }
}
@media (max-width: 767px) {
  .bento { grid-template-columns: 1fr; }
  .bento__img { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
  .bento__cell--lead, .bento__cell--a, .bento__cell--b { grid-column: auto; }
}

/* ---------- Services ---------- */

.services { position: relative; padding-block: var(--section-y); }
.services__track {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 140px);
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.svc-intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(82vh, 720px);
  padding: clamp(24px, 3.4vw, 52px);
}
.svc-intro__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 14% 50%;
}
.svc-intro__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 16, 14, .5) 0%, rgba(11, 16, 14, 0) 34%),
    linear-gradient(0deg, rgba(11, 16, 14, .85) 0%, rgba(11, 16, 14, 0) 42%);
}
.svc-intro__text { display: contents; }
.svc-intro__title { font-size: clamp(44px, 7vw, 120px); line-height: .9; }
.svc-intro p {
  max-width: 24em;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
}

.svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.svc__media { overflow: hidden; aspect-ratio: 4 / 3; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc--chartering .svc__media img { filter: saturate(.78) brightness(.92); }
.svc__body { display: flex; flex-direction: column; gap: 16px; max-width: 36em; }
.svc__body p { color: var(--muted); }
.svc__title { font-size: clamp(30px, 3.6vw, 56px); line-height: 1; margin-bottom: 8px; }
.svc__lead { font-size: clamp(22px, 2.3vw, 34px); line-height: 1.3; }
.svc__body .svc__lead { color: var(--text); }

.svc__terms { margin: 4px 0; border-top: 1px solid var(--line); }
.svc__terms div {
  display: grid;
  grid-template-columns: 4.6em 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.svc__terms dt {
  font-weight: 600;
  font-stretch: var(--wide);
  letter-spacing: .04em;
  color: var(--accent-text);
}
.svc__terms dd { margin: 0; color: var(--text); line-height: 1.45; }

.services__bar { display: none; }

@media (min-width: 768px) {
  .svc { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 4vw, 72px); align-items: center; }
  .services:not(.is-pinned) .svc:nth-of-type(odd) .svc__media { order: 2; }
}

/* pinned horizontal mode, enabled by main.js */
.services.is-pinned { padding-block: 0; }
.services.is-pinned .services__pin {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.services.is-pinned .services__track {
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(48px, 6vw, 112px);
  width: max-content;
  max-width: none;
  margin: 0;
  padding: calc(var(--nav-h) + 28px) var(--gutter) 28px;
  will-change: transform;
}
.services.is-pinned .svc-intro { width: min(52vw, 820px); min-height: 0; flex: none; }
.services.is-pinned .svc {
  flex: none;
  width: min(86vw, 1280px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}
.services.is-pinned .svc__media { height: 100%; aspect-ratio: auto; }
.services.is-pinned .svc__body { max-width: 34em; }
.services.is-pinned .services__bar {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  height: 72px;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.services__progress {
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line-strong);
}
.services__progress span {
  display: block;
  height: 2px;
  margin-top: -.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.services__nav { display: flex; gap: clamp(20px, 3.4vw, 56px); }
.services__nav button {
  position: relative;
  padding: 12px 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-stretch: 112%;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s ease;
}
.services__nav button::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.services__nav button:hover::after { transform: scaleX(1); }
.services__nav button[aria-current="true"] { color: var(--text); }
.services__nav button[aria-current="true"]::after { transform: scaleX(1); background: var(--accent-text); }

@media (min-width: 768px) and (max-width: 1023px) {
  .services.is-pinned .svc {
    width: 84vw;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 28px;
  }
  .services.is-pinned .svc__media { height: auto; min-height: 0; }
  .services.is-pinned .svc-intro { width: 70vw; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .services.is-pinned .svc { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
}
@media (min-width: 768px) and (max-height: 820px) {
  .services.is-pinned .services__track { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 20px; }
  .services.is-pinned .svc__body { gap: 10px; font-size: 16px; line-height: 1.5; }
  .services.is-pinned .svc__title { font-size: clamp(28px, 3vw, 44px); margin-bottom: 4px; }
  .services.is-pinned .svc__terms div { padding: 5px 0; }
  .services.is-pinned .svc__terms dd { line-height: 1.35; }
  .services.is-pinned .services__bar { height: 60px; }
}

/* ---------- Fleet ---------- */

.fleet { padding-bottom: var(--section-y); overflow: hidden; }

.marquee {
  overflow: hidden;
  padding-block: clamp(22px, 2.8vw, 40px);
  border-block: 1px solid var(--line);
  margin-bottom: clamp(80px, 10vw, 150px);
}
.marquee__track { display: flex; width: max-content; }
.marquee ul { display: flex; flex: none; }
.marquee li {
  padding-right: .8em;
  font-size: clamp(34px, 5.2vw, 84px);
  line-height: 1.05;
  font-weight: 300;
  font-stretch: 125%;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}
.marquee li:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 236, 231, .5);
}
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 80s linear infinite; }
  .marquee.is-paused .marquee__track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(-50%); } }

.fleet__head { margin-bottom: clamp(48px, 6vw, 96px); }
.fleet__cols {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  column-gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.fleet__col { display: flex; flex-direction: column; gap: clamp(72px, 8vw, 128px); }
.fleet__col--b { padding-top: clamp(40px, 7vw, 120px); }

.stat { display: flex; flex-direction: column; gap: 14px; }
.stat__num {
  font-size: clamp(120px, 16vw, 250px);
  line-height: .8;
  font-weight: 300;
  font-stretch: 112%;
  letter-spacing: -.03em;
  color: var(--accent-text);
}
.stat__label {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  font-stretch: var(--wide);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shot__frame { overflow: hidden; aspect-ratio: 16 / 9; }
.shot--43 .shot__frame { aspect-ratio: 4 / 3; }
.shot__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot:hover .shot__frame img,
.js .shot:hover [data-reveal="clip"].is-in img { transform: scale(1.03); }
.shot figcaption {
  display: grid;
  grid-template-columns: minmax(0, 13em) minmax(0, 1fr);
  gap: 8px 24px;
  padding-top: 20px;
}
.fleet__col--a .shot figcaption { grid-template-columns: minmax(0, 1fr); gap: 6px; max-width: 34em; }
.shot h3 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-stretch: var(--wide);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.shot p { color: var(--muted); font-size: 16px; line-height: 1.5; }

@media (max-width: 1023px) {
  .shot figcaption { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .fleet__cols { grid-template-columns: 1fr; row-gap: 64px; }
  .fleet__col { display: contents; }
  .fleet__col--b { padding-top: 0; }
}

/* ---------- Quote ---------- */

.quote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(120px, 15vw, 230px);
}
.quote__bg {
  position: absolute;
  left: 0;
  top: -8%;
  z-index: -2;
  width: 100%;
  height: 116%;
  object-fit: cover;
}
.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(11, 16, 14, .25) 28%, rgba(11, 16, 14, .25) 72%, var(--ink) 100%),
    linear-gradient(90deg, rgba(11, 16, 14, .55) 0%, rgba(11, 16, 14, 0) 70%);
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  max-width: 25em;
  font-size: clamp(26px, 3.3vw, 52px);
  line-height: 1.18;
  font-weight: 350;
  letter-spacing: -.012em;
  text-indent: -.42em;
  text-wrap: balance;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(36px, 4vw, 56px);
}
.quote figcaption img { width: 88px; height: 88px; object-fit: cover; object-position: 50% 30%; }
.quote figcaption strong {
  display: block;
  font-weight: 600;
  font-stretch: var(--wide);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
}
.quote figcaption span span { display: block; color: var(--muted); font-size: 15px; }

/* ---------- Compliance ---------- */

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.compliance__text { grid-column: 1 / 7; }
.compliance__media {
  grid-column: 8 / 13;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.compliance__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%; }
.compliance__tagline {
  max-width: 21em;
  margin: clamp(24px, 3vw, 40px) 0 clamp(48px, 5vw, 72px);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
}

.acc { border-top: 1px solid var(--line-strong); }
.acc__item { border-bottom: 1px solid var(--line-strong); }
.acc__h { font-size: inherit; }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.4vw, 30px) 0;
  background: none;
  border: 0;
  color: var(--text);
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}
.acc__icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.acc__icon i { transition: transform .5s var(--ease); }
.acc__btn:hover .acc__icon i { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__icon {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: none;
}
.acc__btn[aria-expanded="true"] .acc__icon i { transform: rotate(45deg); }
.acc__panel { padding: 0 64px 30px 0; }
.acc__panel p { color: var(--muted); max-width: 40em; }
@media (prefers-reduced-motion: no-preference) {
  .acc__panel.is-opening { animation: fadeUp .6s var(--ease) both; }
}

@media (max-width: 1023px) {
  .compliance__text { grid-column: 1 / 13; }
  .compliance__media { grid-column: 1 / 13; position: relative; top: 0; margin-top: 56px; aspect-ratio: 16 / 10; }
}
@media (max-width: 767px) {
  .acc__panel { padding-right: 0; }
  .compliance__media { aspect-ratio: 4 / 3; }
}

/* ---------- Team ---------- */

.team__head .h2 { max-width: 23em; }
.team__lead {
  max-width: 40em;
  margin-top: clamp(20px, 2.4vw, 32px);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}
.team__sheet {
  margin-top: clamp(56px, 6vw, 96px);
  display: grid;
  gap: 2px;
}
.team__group { overflow: hidden; aspect-ratio: 2 / 1; background: #FAFAFA; }
.team__group img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }

.team__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
}
.team__frame { overflow: hidden; aspect-ratio: 1; background: #F4F4F4; }
.team__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.team__list figure:hover img { transform: scale(1.04); }
.team__list figcaption { display: flex; flex-direction: column; gap: 2px; padding: 18px 12px 0 0; }
.team__list strong { font-weight: 600; font-size: 17px; line-height: 1.3; }
.team__list figcaption span { color: var(--muted); font-size: 15px; }

@media (max-width: 1023px) {
  .team__group { aspect-ratio: 3 / 2; }
  .team__list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; margin-top: 2px; }
  .team__ceo { grid-column: 1 / -1; order: -1; }
  .team__ceo .team__frame { aspect-ratio: 16 / 10; }
  .team__ceo .team__frame img { object-position: 50% 30%; }
}

/* ---------- Reports ---------- */

.team { padding-bottom: clamp(64px, 7vw, 112px); }
.reports__list { margin-top: clamp(40px, 5vw, 72px); border-top: 1px solid var(--line-strong); }
.reports__list li { border-bottom: 1px solid var(--line-strong); }
.reports__link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 8fr) minmax(0, 1.6fr) 56px;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 2.8vw, 36px) 0;
  text-decoration: none;
}
.reports__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--accent-text);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .7s var(--ease);
}
.reports__link:hover::after { transform: scaleX(1); }
.reports__link time,
.reports__cat { color: var(--muted); font-size: 15px; font-variant-numeric: tabular-nums; }
.reports__title {
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.1;
  transition: transform .6s var(--ease);
}
.reports__link:hover .reports__title { transform: translateX(10px); }
.reports__arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.reports__arrow i { transition: transform .5s var(--ease); }
.reports__link:hover .reports__arrow i { transform: translate(3px, -3px); }

@media (max-width: 767px) {
  .reports__link {
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-areas: "meta arrow" "title arrow";
    gap: 8px 16px;
  }
  .reports__link time { grid-area: meta; }
  .reports__cat { display: none; }
  .reports__title { grid-area: title; }
  .reports__arrow { grid-area: arrow; width: 44px; height: 44px; font-size: 18px; }
}

/* ---------- Contact ---------- */

.contact { border-top: 1px solid var(--line); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  align-items: end;
}
.contact__text { grid-column: 1 / 9; }
.contact__lines {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 12px);
  margin-top: clamp(40px, 5vw, 72px);
}
.contact__big {
  position: relative;
  display: inline-block;
  font-size: clamp(24px, 4.5vw, 72px);
  line-height: 1.1;
  font-weight: 450;
  letter-spacing: -.02em;
  text-decoration: none;
  padding-bottom: .08em;
  white-space: nowrap;
}
.contact__big::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .7s var(--ease);
}
.contact__big:hover::after { transform: scaleX(1); }
.contact__addr {
  margin-top: clamp(40px, 5vw, 64px);
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.contact__label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
  font-stretch: var(--wide);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
}
.contact__media { grid-column: 9 / 13; overflow: hidden; aspect-ratio: 3 / 4; }
.contact__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }

@media (max-width: 1023px) {
  .contact__text { grid-column: 1 / 13; }
  .contact__media { grid-column: 1 / 13; margin-top: 56px; aspect-ratio: 16 / 10; }
}
@media (max-width: 767px) {
  .contact__big { font-size: clamp(22px, 6.9vw, 34px); }
  .contact__media { aspect-ratio: 4 / 5; }
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(300px, 31vw, 470px);
}
.footer__media {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: clamp(360px, 42vw, 660px);
  overflow: hidden;
}
.footer__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.footer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 16, 14, .1) 30%, rgba(11, 16, 14, .12) 58%, rgba(11, 16, 14, .78) 82%, var(--ink) 100%);
}
.footer__inner { padding-bottom: 36px; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__logo img { height: 30px; width: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.footer__nav a,
.footer__legal a {
  font-size: 13px;
  font-weight: 550;
  font-stretch: 112%;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__nav a:hover,
.footer__legal a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer__legal a { color: var(--muted); }

/* ---------- Scroll reveals (IntersectionObserver in main.js) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal]:not([data-reveal="clip"]) {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease) var(--d, 0s), transform 1.1s var(--ease) var(--d, 0s);
  }
  .js [data-reveal="clip"] {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.3s var(--ease) var(--d, 0s);
  }
  .js [data-reveal="clip"] img { transform: scale(1.12); transition: transform 1.8s var(--ease); }
  .js [data-reveal].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
  .js [data-reveal="clip"].is-in img { transform: none; }
}

/* ---------- Reduced motion: everything static ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee__track { animation: none !important; }
}
