/* ============================================================
   SVETLANA BARABANOVA — Logistics & Consulting
   barabanovaconsulting.co
   Design v2 — "Sunlight & cargo": photographic, light-filled,
   large 3D objects, soft shadows, animated routes.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --bg: #f6f4ee;
  --bg-2: #efece2;
  --surface: #fcfbf7;
  --ink: #13241d;
  --ink-2: #2a3b34;
  --muted: #64736c;
  --line: rgba(19, 36, 29, 0.14);
  --line-strong: rgba(19, 36, 29, 0.3);
  --accent: #0e7d56;
  --accent-deep: #0a5f41;
  --accent-faint: rgba(14, 125, 86, 0.1);
  --gold: #d9a441;
  --gold-faint: rgba(217, 164, 65, 0.16);
  --on-accent: #f2fbf6;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 22px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(88px, 12vw, 176px);
  --header-h: 78px;
  --topbar-h: 34px;

  --shadow-card: 0 32px 80px -22px rgba(19, 36, 29, 0.32);
  --shadow-soft: 0 14px 44px -14px rgba(19, 36, 29, 0.22);
  --shadow-float: 0 40px 90px -30px rgba(19, 36, 29, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Typography utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
}

.t-accent {
  color: var(--accent);
}
.t-gold {
  color: var(--gold);
}
.t-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.t-serif.t-accent {
  color: var(--accent);
}
.t-serif.t-gold {
  color: var(--gold);
}
.t-outline {
  -webkit-text-stroke: 1.6px var(--ink);
  color: transparent;
}
.section--ink .t-outline,
.cta .t-outline {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.85);
}

.outline-text {
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}

.mono {
  font-family: var(--font-mono);
}

.arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.btn:hover .arrow {
  transform: translateX(5px);
}

.btn--sm {
  padding: 11px 18px;
  font-size: 13.5px;
  border-radius: 10px;
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn--on-ink {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--on-ink:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn--ghost-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--ghost-invert:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow:hover {
  gap: 16px;
  color: var(--accent-deep);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(252, 251, 247, 0.7);
  backdrop-filter: blur(4px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: var(--shadow-soft);
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Topbar ---------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--topbar-h);
}
.topbar__group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__item b {
  color: #fff;
  font-weight: 500;
}
.topbar__dot {
  color: var(--gold);
}
.topbar__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.topbar a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
}
.topbar a:hover {
  color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(252, 251, 247, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 10px 40px -18px rgba(19, 36, 29, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.brand__mark {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 10px 18px rgba(14, 125, 86, 0.28));
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__dot {
  color: var(--accent);
}
.brand__text em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--ink);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.is-active {
  color: var(--accent);
}
.nav-link.is-active::after {
  transform: scaleX(1);
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  padding: 0 11px;
}
.nav-toggle span {
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 7vh, 90px) 0 60px;
}
.hero__bg {
  position: absolute;
  inset: -8% 0;
  background-image: url("../assets/img/port-01.jpg");
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(19, 36, 29, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 36, 29, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(246, 244, 238, 0.72) 18%,
      rgba(246, 244, 238, 0.1) 46%,
      rgba(246, 244, 238, 0) 60%
    ),
    linear-gradient(to top, var(--bg) 0%, rgba(246, 244, 238, 0) 34%),
    radial-gradient(900px 600px at 12% 16%, rgba(255, 255, 255, 0.85), transparent 62%),
    radial-gradient(1000px 700px at 92% 88%, rgba(14, 125, 86, 0.12), transparent 60%);
}
.hero__flare {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.22), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  margin-bottom: 26px;
  background: rgba(252, 251, 247, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
}
.hero__title {
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__title .line {
  display: block;
  width: max-content;
  max-width: 100%;
}
.hero__title .t-serif {
  font-size: 1.06em;
  padding-right: 0.08em;
}
.hero__title .dot {
  color: var(--gold);
}
.hero__sub {
  margin-top: 30px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-2);
}
.hero__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 26px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: horizontal-tb;
}
.hero__scroll::before {
  content: "";
  width: 1px;
  height: 52px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__scroll::before {
  background: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-size: 1px 12px;
  animation: scrolldrop 2s var(--ease) infinite;
}
@keyframes scrolldrop {
  0% { background-position: 0 -12px; }
  100% { background-position: 0 52px; }
}

/* ---------- Hero stage / 3D ---------- */
.stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 46vw, 600px);
  perspective: 1500px;
}
.stage__halo {
  position: absolute;
  width: min(86%, 540px);
  aspect-ratio: 1;
  border: 1px dashed rgba(19, 36, 29, 0.2);
  border-radius: 50%;
  animation: spin 52s linear infinite;
}
.stage__halo--inner {
  width: min(66%, 400px);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 36s;
}
.stage__shadow {
  position: absolute;
  bottom: 8%;
  width: 62%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(19, 36, 29, 0.34), transparent 68%);
  filter: blur(14px);
  animation: breath 6s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { transform: scaleX(1) scaleY(1); opacity: 0.9; }
  50% { transform: scaleX(1.08) scaleY(0.9); opacity: 0.7; }
}

.scene {
  position: relative;
  width: clamp(260px, 34vw, 380px);
  height: clamp(260px, 34vw, 380px);
  transform-style: preserve-3d;
}
.cube {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(-16deg) rotateY(38deg);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
.cube.is-tilting {
  animation: none;
}
.cube--a {
  --cw: clamp(240px, 32vw, 360px);
  --ch: clamp(140px, 18vw, 200px);
  --cd: clamp(240px, 32vw, 360px);
}
.cube--b {
  --cw: clamp(120px, 16vw, 178px);
  --ch: clamp(84px, 11vw, 124px);
  --cd: clamp(120px, 16vw, 178px);
  inset: auto;
  top: 4%;
  right: -6%;
  transform: rotateX(-16deg) rotateY(38deg) translate3d(40px, -40px, 20px);
  animation: floaty 8.5s ease-in-out infinite;
  animation-delay: 1.1s;
  z-index: 2;
}
.face {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(19, 36, 29, 0.5);
  backface-visibility: hidden;
  overflow: hidden;
}
.face-front,
.face-back {
  width: var(--cw);
  height: var(--ch);
}
.face-front {
  transform: rotateY(0deg) translateZ(calc(var(--cd) / 2));
  background: var(--ink);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 26px, transparent 26px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.face-back {
  transform: rotateY(180deg) translateZ(calc(var(--cd) / 2));
  background: var(--ink-2);
}
.face-left,
.face-right {
  width: var(--cd);
  height: var(--ch);
  left: calc((var(--cw) - var(--cd)) / 2);
}
.face-left {
  transform: rotateY(-90deg) translateZ(calc(var(--cw) / 2));
  background: var(--ink-2);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0 26px,
    transparent 26px 28px
  );
}
.face-right {
  transform: rotateY(90deg) translateZ(calc(var(--cw) / 2));
  background: var(--ink);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.07) 0 26px,
    transparent 26px 28px
  );
}
.face-top,
.face-bottom {
  width: var(--cw);
  height: var(--cd);
  top: calc((var(--ch) - var(--cd)) / 2);
}
.face-top {
  transform: rotateX(90deg) translateZ(calc(var(--ch) / 2));
  background: var(--accent);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 55%);
}
.cube--b .face-top {
  background: var(--gold);
}
.face-bottom {
  transform: rotateX(-90deg) translateZ(calc(var(--ch) / 2));
  background: #1a2b24;
}
.cube--b .face-bottom {
  background: #6f521e;
}

/* light sheen / hard shadow across the cargo unit */
.cube--a .face-front,
.cube--a .face-right,
.cube--a .face-left {
  box-shadow: inset -10px 0 22px rgba(0, 0, 0, 0.35);
}

/* light from upper-left, hard shadow below-right */
.cube .face-front,
.cube .face-right,
.cube .face-top {
  background-blend-mode: overlay;
}

.cube__plate {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(252, 251, 247, 0.92);
  background: rgba(10, 31, 23, 0.5);
  border: 1px solid rgba(252, 251, 247, 0.35);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.cube__plate b {
  color: #fff;
}
.cube__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(252, 251, 247, 0.18);
  border: 1px solid rgba(19, 36, 29, 0.55);
}
.cube__corner.c1 { top: 0; left: 0; }
.cube__corner.c2 { top: 0; right: 0; }
.cube__corner.c3 { bottom: 0; left: 0; }
.cube__corner.c4 { bottom: 0; right: 0; }

.cube__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 64px;
  background: linear-gradient(90deg, transparent, rgba(14, 125, 86, 0.4), transparent);
  animation: scanmove 3.4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes scanmove {
  from { left: 0; }
  to { left: calc(100% - 64px); }
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transform: translateZ(-150px) rotateX(70deg);
  animation: ringspin 28s linear infinite;
  pointer-events: none;
}
.ring::before,
.ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(19, 36, 29, 0.18);
  inset: 22px;
}
.ring::after {
  inset: -18px;
  border-color: rgba(217, 164, 65, 0.4);
}
.ring i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.2);
}
@keyframes ringspin {
  from { transform: translateZ(-150px) rotateX(70deg) rotateZ(0deg); }
  to { transform: translateZ(-150px) rotateX(70deg) rotateZ(360deg); }
}

.waypoint {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(252, 251, 247, 0.82);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: var(--shadow-card);
  animation: floaty 6s ease-in-out infinite;
  z-index: 4;
}
.waypoint i {
  font-style: normal;
  color: var(--gold);
}
.waypoint::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(14, 125, 86, 0.18);
  flex: none;
}
.waypoint--a { top: 6%; right: 2%; animation-delay: 0.4s; }
.waypoint--b { bottom: 22%; left: -2%; animation-delay: 1.2s; }
.waypoint--c { bottom: -2%; right: 12%; animation-delay: 2s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::after {
  content: "◆";
  color: var(--gold);
  font-size: 10px;
}
.marquee__item em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--alt {
  background: var(--bg-2);
}
.section--ink {
  background: var(--ink);
  color: #fff;
}
.section--ink .eyebrow {
  color: var(--gold);
}
.section--ink p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "label label" "title aside";
  column-gap: 48px;
  row-gap: 22px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head__label {
  grid-area: label;
  margin-bottom: 4px;
}
.section-head__title {
  grid-area: title;
  font-size: clamp(38px, 5.4vw, 66px);
  max-width: 14ch;
}
.section-head__aside {
  grid-area: aside;
  max-width: 380px;
  color: var(--muted);
}
.section--ink .section-head__aside {
  color: rgba(255, 255, 255, 0.68);
}
.section--ink .section-head__title {
  color: #fff;
}

/* ---------- Services cards (home) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.svc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
}
.svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 36, 29, 0.5),
    rgba(19, 36, 29, 0) 55%
  );
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card:hover .svc-card__media img {
  transform: scale(1.06);
}
.svc-card__num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(19, 36, 29, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 14px;
}
.svc-card__tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.svc-card__body {
  padding: 24px 26px 26px;
}
.svc-card__body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.015em;
}
.svc-card__arrow {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-size: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.svc-card:hover .svc-card__arrow {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.svc-card__body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.svc-card__tags span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 5px 11px;
}
.svc-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.svc-card--wide .svc-card__media {
  aspect-ratio: auto;
  min-height: 300px;
}
.svc-card--wide .svc-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.svc-card--wide .svc-card__body h3 {
  font-size: 32px;
}
.svc-card--wide .svc-card__body p {
  font-size: 16.5px;
  max-width: 46ch;
}
.svc-card--wide .svc-card__tags {
  margin-top: 24px;
}

.split__cta {
  margin-top: 40px;
}

/* ---------- Process ---------- */
.process {
  position: relative;
}
.process__track {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.process__track i {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  animation: trackrun 8s var(--ease) infinite;
}
@keyframes trackrun {
  0% { left: 0; width: 22%; }
  50% { left: 74%; width: 26%; }
  100% { left: 0; width: 22%; }
}
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.step {
  position: relative;
  padding-top: 64px;
}
.step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 7px rgba(14, 125, 86, 0.12);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-top: 10px;
  color: var(--ink);
}
.step__desc {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}

.section--ink .step::before {
  border-color: var(--gold);
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(217, 164, 65, 0.12);
}
.section--ink .step__num {
  color: var(--gold);
}
.section--ink .step__title {
  color: #fff;
}
.section--ink .step__desc {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Coverage ---------- */
.coverage {
  position: relative;
  overflow: hidden;
}
.coverage__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/sea-01.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: saturate(0.6);
}
.coverage__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 125, 86, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 78%);
}
.coverage .container {
  position: relative;
  z-index: 2;
}
.route-map {
  position: relative;
  min-height: 340px;
  margin-top: 40px;
}
.route-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-map__svg path {
  stroke-dasharray: 6 7;
  animation: dashflow 1.4s linear infinite;
}
@keyframes dashflow {
  to { stroke-dashoffset: -13; }
}
.route-map__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.route-map__chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(14, 125, 86, 0.18);
}
.route-map__chip small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.route-map__chip--a { left: 2%; top: 26%; }
.route-map__chip--b { left: 24%; top: 6%; }
.route-map__chip--c { right: 30%; top: 14%; }
.route-map__chip--d { right: 4%; top: 38%; }
.route-map__chip--e { right: 18%; bottom: 8%; }
.route-map__origin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px dashed rgba(14, 125, 86, 0.5);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.route-map__origin::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(217, 164, 65, 0.55);
  animation: spin 24s linear infinite;
}

/* ---------- Statement ---------- */
.statement {
  position: relative;
  text-align: center;
  max-width: 1040px;
  margin-inline: auto;
}
.statement__mark {
  position: absolute;
  top: -0.55em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 150px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.statement__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.statement__text .t-serif {
  font-weight: 500;
}

/* ---------- CTA (photo band) ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/truck-02.jpg");
  background-size: cover;
  background-position: center 42%;
  opacity: 0.34;
  mix-blend-mode: luminosity;
}
.cta__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 500px at 50% 12%,
      rgba(255, 255, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(1000px 700px at 50% 108%, rgba(217, 164, 65, 0.14), transparent 55%),
    linear-gradient(to bottom, rgba(19, 36, 29, 0.1), rgba(19, 36, 29, 0.75));
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta__title {
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1;
}
.cta__sub {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}
.cta__contact {
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}
.cta__contact a {
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 164, 65, 0.4);
  transition: color 0.25s;
}
.cta__contact a:hover {
  color: #fff;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
  filter: saturate(0.75);
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(246, 244, 238, 0.78) 30%,
      rgba(246, 244, 238, 0.55) 70%,
      var(--bg) 100%
    ),
    radial-gradient(800px 500px at 12% 20%, rgba(255, 255, 255, 0.7), transparent 60%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.crumbs a {
  color: var(--muted);
  transition: color 0.25s;
}
.crumbs a:hover {
  color: var(--accent);
}
.crumbs .sep {
  color: var(--gold);
}
.page-hero__label {
  margin-bottom: 18px;
}
.page-hero__title {
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 0.99;
  max-width: 16ch;
}
.page-hero__sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 18px;
  color: var(--ink-2);
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

/* ---------- Split / media ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split__title {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-top: 20px;
  max-width: 16ch;
}
.split__body {
  margin-top: 22px;
  color: var(--ink-2);
}
.split__body strong {
  color: var(--ink);
  font-weight: 600;
}
.split__cta {
  margin-top: 30px;
}

.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(19, 36, 29, 0.4), transparent 45%);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.media-frame:hover img {
  transform: scale(1.04);
}
.media-frame--wide {
  aspect-ratio: 5 / 4;
}
.media-frame__corner {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(19, 36, 29, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 13px;
}
.media-frame__tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Services page ---------- */
.service-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding-block: clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child {
  border-bottom: 0;
}
.service-detail__img {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-detail__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.service-detail__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.service-detail__body {
  margin-top: 18px;
  color: var(--ink-2);
  max-width: 60ch;
}
.service-detail__list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.service-detail__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--ink-2);
}
.service-detail__list li::before {
  content: "→";
  color: var(--accent);
  flex: none;
  font-family: var(--font-mono);
}

/* ---------- About: features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.feature {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px 34px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature:hover::after {
  transform: scaleX(1);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.feature__desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Tracking ---------- */
.track-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
}
.track-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.track-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.track-form input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hint {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.track-result {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
  display: none;
}
.track-result.is-visible {
  display: block;
  animation: risein 0.5s var(--ease);
}

/* ---------- Fields / forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa69f;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 125, 86, 0.14);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.checkbox a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox input {
  margin-top: 4px;
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.span-2 {
  grid-column: 1 / -1;
}
.form-error {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #c0452f;
  display: none;
}
.form-error.is-visible {
  display: block;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  display: none;
}
.form-note.is-visible {
  display: block;
  animation: risein 0.4s var(--ease);
}
@keyframes risein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Contact: info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}
.info-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-card__value {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}
.info-card__value a:hover {
  color: var(--accent);
}
.info-card__sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-item__q:hover {
  color: var(--accent);
}
.plus {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.faq-item.is-open .plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item__a p {
  padding: 0 4px 26px;
  max-width: 70ch;
  color: var(--muted);
}

/* ---------- Legal ---------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
}
.legal .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 28px 0 10px;
}
.legal p {
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal ul,
.legal ol {
  margin: 0 0 18px 20px;
  color: var(--ink-2);
}
.legal ul {
  list-style: disc;
}
.legal ol {
  list-style: decimal;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal .table-block {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.legal .table-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.legal .table-block th,
.legal .table-block td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal .table-block th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
}
.legal .table-block tr:last-child td {
  border-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(60px, 8vw, 96px);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.14), transparent 62%);
  pointer-events: none;
}
.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: clamp(40px, 6vw, 70px);
  user-select: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand__text {
  margin-top: 20px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 15px;
}
.footer-domain {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul {
  display: grid;
  gap: 11px;
}
.footer-col a {
  color: var(--ink-2);
  font-size: 15px;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact address {
  font-style: normal;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
}
.footer-contact address strong {
  color: var(--ink);
}
.footer-contact ul {
  margin-top: 16px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.legal-links a {
  color: var(--muted);
  transition: color 0.25s;
}
.legal-links a:hover {
  color: var(--accent);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-float);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.4s;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}
.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
}
.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] {
  transform: translateX(-36px);
}
[data-reveal="left"].is-in {
  transform: none;
}
[data-reveal="right"] {
  transform: translateX(36px);
}
[data-reveal="right"].is-in {
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__title {
    font-size: clamp(48px, 9vw, 78px);
  }
  .stage {
    min-height: 420px;
  }
  .svc-card--wide {
    grid-template-columns: 1fr;
  }
  .svc-card--wide .svc-card__media {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
  .process__track {
    display: none;
  }
  .step {
    padding-top: 0;
  }
  .step::before {
    top: -44px;
  }
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .media-frame--wide {
    aspect-ratio: 16 / 11;
  }
  .service-detail {
    grid-template-columns: minmax(0, 1fr);
  }
  .service-detail__img {
    aspect-ratio: 16 / 10;
    max-width: 620px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: calc(var(--header-h) + var(--topbar-h) + 20px) 28px 28px;
    background: var(--surface);
    box-shadow: -24px 0 60px -20px rgba(19, 36, 29, 0.35);
    transform: translateX(102%);
    transition: transform 0.5s var(--ease);
    z-index: 110;
    overflow-y: auto;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav .nav-link {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .site-nav .nav-link::after {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-actions .btn {
    display: none;
  }
  .topbar__group--desktop {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
  }
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-wordmark {
    font-size: clamp(34px, 12vw, 64px);
  }
  .route-map {
    min-height: 480px;
  }
  .route-map__chip--a { left: 2%; top: 4%; }
  .route-map__chip--b { left: 30%; top: 34%; }
  .route-map__chip--c { right: 26%; top: 50%; }
  .route-map__chip--d { right: 2%; top: 16%; }
  .route-map__chip--e { right: 12%; bottom: 4%; }
}

@media (max-width: 560px) {
  .hero__meta {
    gap: 8px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .track-form {
    grid-template-columns: 1fr;
  }
  .waypoint {
    font-size: 9.5px;
    padding: 8px 11px;
  }
  .stage {
    min-height: 360px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
