/* ============================================================
   PRIME EQUIPMENT SOLUTIONS — styles (2026 redesign)
   Type: Funnel Display (headings) · Funnel Sans (body)
   Icons: Solar Icons (bold) — CC BY 4.0, 480 Design
   ============================================================ */

/* TOKENS
   ------------------------------------------------------------
   Foundation system — implementers B/C: reuse these, add nothing new.

   COLOR      --ink #0A2540 (text / dark sections)
              --paper #F4F7F8 (page bg) · --paper-2 (subtle fills)
              --accent #0FB5A6 (hairlines, active states — cap ~8%/viewport)
              --accent-deep #0A8D81 (primary CTA bg, icons/eyebrows on light)
              --accent-press #087268 (pill hover — the ONLY pill hover effect)
              --accent-bright #2BD9C9 (accent word inside headings on INK bg)
              --muted #53687B (secondary text on paper)
              --line rgba(10,37,64,.12) hairlines on paper
              --line-inv rgba(255,255,255,.14) hairlines on ink

   RADIUS     (by role — do not mix)
              --r-pill 999px  buttons & chips ONLY
              --r-xl   28px   chapter-close blocks (footer top, CTA band)
              --r-lg   20px   media & bento cells
              --r-md   12px   inputs / small cards
              --r-sm   6px    tags
              (--radius/--radius-sm are legacy aliases = r-lg/r-md)

   SPACING    --section-y 112px desktop · --section-y-m 72px ≤760px
              .container = 1200px max, 24px gutters

   MOTION     --ease-out cubic-bezier(.22,.61,.36,1) reveals (480ms)
              --ease-menu cubic-bezier(.32,.72,0,1) mobile menu (320ms)
              hover rule: exactly ONE effect per element, 160–200ms
              links → .u-underline slide-in; cards → border-color
              (+2px lift on bento only); pills → bg darkens to --accent-press

   TYPE UTILS .eyebrow          11px/600, .08em tracking, uppercase,
                                accent-deep (engineering annotation)
              .eyebrow--accent  same, turquoise — for ink backgrounds
              .u-underline      2px turquoise slide-in underline on hover
                                (background-size transition, 160ms)
              .u-tabular        tabular numerals (specs, phones, stats)

   BUTTONS    .btn (pill base, 48px) + .btn--lg (56px)
              .btn--accent primary CTA (accent-deep → press)
              .btn--solid  ink pill
              .btn--line   hairline pill on paper
   ------------------------------------------------------------ */
:root {
  --paper: #f4f7f8;
  --paper-2: #eaf0f2;
  --ink: #0a2540;
  --ink-2: #10345a;
  --muted: #53687b;
  --accent: #0fb5a6;
  --accent-deep: #0a8d81;
  --accent-press: #087268;
  --accent-bright: #2bd9c9;
  --line: rgba(10, 37, 64, 0.12);
  --line-soft: rgba(10, 37, 64, 0.08);
  --line-inv: rgba(255, 255, 255, 0.14);
  --r-pill: 999px;
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 12px;
  --r-sm: 6px;
  --radius: var(--r-lg);
  --radius-sm: var(--r-md);
  --font-display: "Funnel Display", system-ui, sans-serif;
  --font-body: "Funnel Sans", system-ui, sans-serif;
  --header-h: 72px;
  --section-y: 112px;
  --section-y-m: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-menu: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--accent); }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }

::selection { background: #0fb5a6; color: #0a2540; }

/* icons */
.ic { width: 1em; height: 1em; flex: none; }

/* ---------- shared utilities (see TOKENS) ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-body); font-weight: 600; font-size: 11px; line-height: 1.4;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--chip {
  display: inline-block; width: fit-content;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(15, 181, 166, 0.11);
  color: var(--accent-deep);
}
.eyebrow--accent.eyebrow--chip {
  background: rgba(43, 217, 201, 0.13);
  color: var(--accent-bright);
}

.u-tabular { font-variant-numeric: tabular-nums; }

.u-underline {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 2px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.16s ease-out, color 0.16s ease-out;
}
.u-underline:hover, .u-underline:focus-visible { background-size: 100% 2px; }

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

/* ---------- progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 300; pointer-events: none; }
.progress span { display: block; height: 100%; width: 0; background: var(--accent); }

/* ---------- loader (first visit per session; curtain-lift exit) ---------- */
.loader {
  position: fixed; inset: 0; z-index: 900;
  display: grid; place-items: center;
  background: var(--ink);
  transition: transform 0.62s var(--ease-menu), visibility 0s 0.62s;
}
.loader.is-done { transform: translateY(-101%); visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader__mark { width: 66px; height: 88px; }
.loader__chev {
  stroke-dasharray: 22; stroke-dashoffset: 22;
  animation: loader-draw 0.85s var(--ease-out) 0.2s forwards;
}
@keyframes loader-draw { to { stroke-dashoffset: 0; } }
.loader__dot {
  transform: scale(0); transform-origin: 18px 9px;
  animation: loader-dot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s forwards;
}
@keyframes loader-dot { to { transform: scale(1); } }
.loader__word {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.24em; color: var(--paper); text-indent: 0.24em;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  opacity: 0; transform: translateY(10px);
  animation: loader-word 0.55s var(--ease-out) 0.55s forwards;
}
.loader__word small {
  font-family: var(--font-body); font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.42em; text-indent: 0.42em; color: var(--accent);
}
@keyframes loader-word { to { opacity: 1; transform: none; } }
.loader__bar {
  width: 140px; height: 2px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12); overflow: hidden;
}
.loader__bar i {
  display: block; height: 100%; border-radius: var(--r-pill);
  background: var(--accent);
  transform: translateX(-100%);
  animation: loader-fill 2s var(--ease-out) 0.3s forwards;
}
@keyframes loader-fill {
  55% { transform: translateX(-22%); }
  100% { transform: translateX(-6%); }
}
.loader.is-done .loader__bar i { transform: translateX(0); transition: transform 0.25s ease-out; animation: none; }

/* ---------- buttons (pill system — one hover effect: bg/border only) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 26px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.01em; white-space: nowrap;
  transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}
.btn .ic { font-size: 17px; }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn--accent { background: var(--accent-deep); color: #fff; }
.btn--accent:hover { background: var(--accent-press); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: #071b2e; }
.btn--line { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn--line:hover { border-color: var(--accent-deep); }

.link-btn { color: inherit; text-align: left; transition: color 0.16s ease-out; }
.link-btn:hover { color: var(--accent-deep); }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  background: rgba(244, 247, 248, 0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease), height 0.2s ease-out, background 0.2s ease-out, border-color 0.2s ease-out;
}
.header.is-scrolled {
  height: 60px;
  background: rgba(244, 247, 248, 0.96);
  border-bottom-color: rgba(10, 37, 64, 0.18);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 100%; gap: 24px;
}

/* ---------- logo lockup (header + footer at 1.25×) ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.logo__mark { width: 24px; height: 32px; flex: none; }
.logo__word {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  line-height: 1; letter-spacing: -0.01em; color: var(--ink);
}
.logo__word small {
  font-family: var(--font-body); font-weight: 600; font-size: 8.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-deep); margin-top: 2px;
}

/* ---------- nav ---------- */
.nav { display: flex; align-items: center; gap: 32px; justify-self: center; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--ink); opacity: 0.72;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 2px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 4px;
  transition: opacity 0.16s ease-out, background-size 0.16s ease-out;
}
.nav__link:hover, .nav__link.is-active { opacity: 1; background-size: 100% 2px; }
.nav__extra, .nav__foot { display: none; }

.header__side { display: flex; align-items: center; gap: 20px; justify-self: end; }
.header__phone { font-size: 13px; font-weight: 600; color: var(--ink); transition: color 0.16s ease-out; }
.header__phone:hover { color: var(--accent-deep); }
.header__cta { height: 44px; padding: 0 22px; font-size: 14px; }

/* ---------- burger (44×44, two 18px bars → X) ---------- */
.burger { display: none; position: relative; width: 44px; height: 44px; z-index: 210; justify-self: end; }
.burger span {
  position: absolute; left: 13px; width: 18px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.24s var(--ease-menu), background 0.24s ease-out;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span { background: #fff; }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- home hero (100svh, left-weighted scrim) ---------- */
.hero {
  position: relative; min-height: max(100svh, 640px);
  display: flex; align-items: center; color: #fff;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 37, 64, 0.82) 0%, rgba(10, 37, 64, 0.35) 60%, rgba(10, 37, 64, 0.15) 100%);
}
.hero__inner { position: relative; padding: calc(var(--header-h) + 48px) 0 96px; }
.hero__title {
  font-size: clamp(2.75rem, 6vw + 1rem, 6.5rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 0.98;
  color: #fff; margin: 20px 0 24px; max-width: 720px;
}
.hero__title em { color: var(--accent-bright); }
.hero__lede { max-width: 52ch; font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; }
.hero__actions { display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap; }
.hero__how {
  color: #fff; font-weight: 600; font-size: 15px;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1.5px; text-decoration-color: rgba(255, 255, 255, 0.45);
  transition: text-decoration-color 0.16s ease-out;
}
.hero__how:hover { text-decoration-color: var(--accent); }
.hero__scroll {
  position: absolute; bottom: 0; left: max(24px, calc((100% - 1200px) / 2));
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero__scroll::after {
  content: ""; width: 1px; height: 32px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
}

/* ---------- sub-page hero (60vh video header — services) ---------- */
.subhero {
  position: relative; min-height: max(60svh, 480px);
  display: flex; align-items: flex-end; color: #fff;
  background: var(--ink); overflow: hidden;
}
.subhero__media { position: absolute; inset: 0; }
.subhero__media video { width: 100%; height: 100%; object-fit: cover; }
.subhero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.45) 60%, rgba(10, 37, 64, 0.2) 100%);
}
.subhero__inner { position: relative; padding: calc(var(--header-h) + 64px) 0 64px; }
.subhero__title {
  font-size: clamp(40px, 5vw, 68px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.02;
  color: #fff; margin: 18px 0 20px; max-width: 720px;
}
.subhero__title em { color: var(--accent-bright); }
.subhero__sub { max-width: 52ch; font-size: 17px; color: rgba(255, 255, 255, 0.78); }

/* ---------- ticker (56px claims band, pure-CSS marquee) ---------- */
.ticker {
  display: flex; align-items: center; height: 56px;
  background: var(--ink); overflow: hidden;
}
.ticker__track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__set { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.ticker__set span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  font-variant-numeric: tabular-nums;
}
/* separator: slanted hairline tick, no dots */
.ticker__set i {
  width: 1px; height: 16px; flex: none;
  background: linear-gradient(180deg, transparent, rgba(43, 217, 201, 0.55), transparent);
  transform: rotate(18deg);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections (112px desktop / 72px ≤760px) ---------- */
.section { padding: var(--section-y) 0; scroll-margin-top: calc(var(--header-h) - 12px); }
.section--tight { padding-top: 0; }

.sec-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  margin-bottom: 56px;
}
.sec-head__title { font-size: clamp(30px, 3.6vw, 48px); }

/* ---------- service rows (alternating media/body — services page) ---------- */
.srow {
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px 72px; align-items: center;
  padding: 64px 0;
}
.srow + .srow { border-top: 1px solid var(--line); }
.srow__media {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2);
  box-shadow: 0 34px 80px -34px rgba(10, 37, 64, 0.35);
}
.srow__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.srow--flip .srow__media { order: 2; }
.srow__body { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.srow__body h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; }
.srow__text { color: var(--muted); font-size: 16px; max-width: 56ch; }
.srow__list { width: 100%; border-top: 1px solid var(--line); }
.srow__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: 15.5px;
}
.srow__list li .ic { flex: none; font-size: 19px; color: var(--accent-deep); }
.srow .btn { margin-top: 6px; }

/* ---------- services bento (asymmetric 12-col, home) ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento__cell {
  grid-column: span 5;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.18s ease-out, transform 0.18s ease-out;
}
.bento__cell:hover { border-color: var(--accent-deep); transform: translateY(-2px); }
.bento__cell--c7 { grid-column: span 7; }
.bento__media { position: relative; aspect-ratio: 16 / 7; background: var(--paper-2); }
.bento__media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.85) contrast(1.05);
}
.bento__body {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 32px; flex: 1;
}
.bento__top { display: flex; width: 100%; align-items: center; justify-content: space-between; }
.bento__num {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.bento__ic {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(15, 181, 166, 0.1); color: var(--accent-deep);
}
.bento__ic .ic { font-size: 28px; }
.bento__cell h3 { font-size: clamp(21px, 2vw, 26px); }
.bento__text { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 58ch; }
.bento__specs { width: 100%; margin-top: 4px; border-top: 1px solid var(--line); }
.bento__specs > div {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.bento__specs dt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.bento__specs dd { font-size: 13.5px; color: var(--ink); }
.bento__link { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--ink); }

/* ---------- showreel (ink chapter break — deliberately sparse) ---------- */
.showreel { background: var(--ink); color: var(--paper); padding: var(--section-y) 0; }
.showreel__head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  margin-bottom: 48px;
}
.showreel__credo {
  font-family: var(--font-display); font-weight: 600;
  font-size: 28px; line-height: 1.25; letter-spacing: -0.01em;
  color: #fff; max-width: 30ch;
}
.showreel__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--r-lg); background: var(--ink-2);
}
.showreel__frame video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; will-change: transform;
}
.showreel__frame figcaption {
  position: absolute; left: 24px; bottom: 20px; z-index: 2;
  padding: 8px 14px; border-radius: var(--r-sm);
  background: rgba(10, 37, 64, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- stats (light, hairline separators, no boxes) ---------- */
.stats__eyebrow { margin-bottom: 44px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 6px 32px 2px; border-left: 1px solid var(--line); }
.stats__item:first-child { border-left: 0; padding-left: 0; }
.stats__item strong {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.stats__item strong em { font-style: normal; color: var(--accent-deep); }
.stats__item p { margin-top: 10px; font-size: 13px; line-height: 1.5; color: rgba(10, 37, 64, 0.6); max-width: 22ch; }
.stats__foot { margin-top: 40px; font-size: 12px; color: var(--muted); }

/* ---------- industries grid ---------- */
.ind { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind__cell {
  padding: 30px 28px 34px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color 0.18s ease-out;
}
.ind__cell:hover { border-color: var(--accent-deep); }
.ind__num { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--accent-deep); }
.ind__cell h3 { font-size: 21px; margin-bottom: 8px; margin-top: 10px; }
.ind__cell p { color: var(--muted); font-size: 15px; }

/* ---------- about — editorial hero (oversized H1, 8/4 intro + fact card) ---------- */
.about-hero { padding: calc(var(--header-h) + 88px) 0 96px; }
.about-hero__title {
  font-size: clamp(42px, 5.8vw, 88px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.98;
  max-width: 15ch; margin: 20px 0 56px;
}
.about-hero__grid {
  display: grid; grid-template-columns: 8fr 4fr; gap: 48px 96px; align-items: start;
}
.about__lede {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px); line-height: 1.35;
  max-width: 32ch;
}
.about-hero__text { margin-top: 22px; color: var(--muted); font-size: 16.5px; max-width: 58ch; }

/* fact card — registered company details, tabular */
.fact {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 8px 26px;
}
.fact > div {
  display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.fact > div:last-child { border-bottom: 0; }
.fact dt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.fact dd { font-size: 14px; line-height: 1.55; color: var(--ink); }

/* ---------- values (hairline columns, numbered — about) ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.values__item { border-top: 1px solid var(--line); padding-top: 26px; }
.values__item .eyebrow { margin-bottom: 16px; }
.values__item h3 { font-size: 20px; margin-bottom: 10px; }
.values__item p { color: var(--muted); font-size: 14.5px; }

/* ---------- process (numbered hairline rows, no icons — about) ---------- */
.process { border-top: 1px solid var(--line); }
.process__row {
  display: grid; grid-template-columns: 72px minmax(200px, 0.8fr) 1.6fr;
  gap: 12px 56px; align-items: baseline;
  padding: 30px 0 34px; border-bottom: 1px solid var(--line);
}
.process__num {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.process__row h3 { font-size: clamp(20px, 2.1vw, 26px); letter-spacing: -0.01em; }
.process__row p { color: var(--muted); font-size: 15.5px; max-width: 56ch; }

/* ---------- FAQ (native <details>, no JS — shared pattern, all pages) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--font-body); font-weight: 600; font-size: 17px; line-height: 1.4;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ic {
  font-size: 20px; color: var(--muted);
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}
.faq__item summary:hover .ic { color: var(--ink); }
.faq__item[open] summary .ic { transform: rotate(180deg); color: var(--accent-deep); }
.faq__body { padding-bottom: 20px; }
.faq__body p { font-size: 15px; line-height: 1.6; color: rgba(10, 37, 64, 0.75); max-width: 68ch; }
.faq__body p + p { margin-top: 10px; }
/* smooth open where supported (interpolate-size); instant elsewhere */
@supports (interpolate-size: allow-keywords) {
  .faq__item { interpolate-size: allow-keywords; }
  .faq__item::details-content {
    block-size: 0; overflow-y: clip;
    transition: block-size 0.3s var(--ease-out), content-visibility 0.3s allow-discrete;
  }
  .faq__item[open]::details-content { block-size: auto; }
}

/* FAQ section shell — sticky left header + list (4/8 split) */
.faq-sec__grid { display: grid; grid-template-columns: 4fr 8fr; gap: 48px 64px; align-items: start; }
.faq-sec__head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  position: sticky; top: calc(var(--header-h) + 32px);
}
.faq-sec__all { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 6px; }
.faq-sec__note { font-size: 15px; color: var(--muted); max-width: 34ch; }
.faq-sec__note .link-btn {
  color: var(--ink); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1.5px; text-decoration-color: rgba(10, 37, 64, 0.3);
  transition: text-decoration-color 0.16s ease-out;
}
.faq-sec__note .link-btn:hover { text-decoration-color: var(--accent); }

/* ---------- CTA band (ink, r-xl, inside container — home) ---------- */
.section.cta-sec { padding-bottom: 0; }
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); background: var(--ink); color: var(--paper);
  padding: 72px 64px;
}
.cta-band__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12;
}
.cta-band__inner {
  position: relative;
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px 64px; align-items: center;
}
.cta-band h2 {
  font-size: clamp(30px, 3.6vw, 48px); font-weight: 700;
  letter-spacing: -0.02em; max-width: 16ch;
}
.cta-band h2 em { color: var(--accent-bright); }
.cta-band__lead p { margin-top: 16px; font-size: 15.5px; color: rgba(255, 255, 255, 0.7); }
.cta-band__lead .link-btn {
  color: #fff; font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1.5px; text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 0.16s ease-out;
}
.cta-band__lead .link-btn:hover { color: #fff; text-decoration-color: var(--accent); }
.cta-band__side { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; justify-self: end; }
.cta-band__alt {
  font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.75);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1.5px; text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: color 0.16s ease-out, text-decoration-color 0.16s ease-out;
}
.cta-band__alt:hover { color: #fff; text-decoration-color: var(--accent); }

/* ---------- contact (split, sticky lead — contacts page) ---------- */
.contact-open { padding-top: calc(var(--header-h) + 72px); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__lead { position: sticky; top: calc(var(--header-h) + 32px); }
.contact__title {
  font-size: clamp(42px, 5.4vw, 76px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.98; margin: 18px 0 20px;
}
.contact__sub { color: var(--muted); font-size: 17px; max-width: 44ch; }
.contact__rows { margin-top: 46px; border-top: 1px solid var(--line); }
.contact__row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 22px; align-items: center;
  width: 100%; text-align: left;
  padding: 24px 4px; border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s;
}
button.contact__row:hover { padding-left: 14px; }
button.contact__row:hover .contact__arrow { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact__ic {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  display: grid; place-items: center; font-size: 24px;
  background: rgba(15, 181, 166, 0.1); color: var(--accent-deep);
}
.contact__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact__label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.contact__value { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.35; }
.contact__value--sm { font-size: 15.5px; word-break: break-word; }
.contact__arrow {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; place-items: center; font-size: 17px; color: var(--ink);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

/* ---------- map (full-width, grayscale until hover — contacts) ---------- */
.map {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-2);
  height: clamp(340px, 44vw, 480px);
}
.map__canvas { width: 100%; height: 100%; z-index: 1; background: var(--paper-2); }
/* brand-mute the tiles: paper-grey cartography, colour lives in the pin and card */
.map .leaflet-tile { filter: grayscale(1) contrast(0.94) brightness(1.04); }
.map-pin { background: none; border: none; }
.map-pin svg { filter: drop-shadow(0 12px 20px rgba(10, 37, 64, 0.38)); }
.map__card {
  position: absolute; top: 18px; left: 18px; z-index: 500;
  max-width: 300px; padding: 18px 22px;
  background: #fff; border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 48px -20px rgba(10, 37, 64, 0.38);
}
.map__card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-deep); margin-bottom: 7px;
}
.map__card-addr { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; line-height: 1.45; margin-bottom: 12px; }
.map__card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14px; color: var(--accent-deep);
}
.map__card-link .ic { font-size: 14px; }
/* leaflet chrome in site style */
.map .leaflet-bar { border: none; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 12px 30px -14px rgba(10, 37, 64, 0.45); }
.map .leaflet-bar a {
  width: 40px; height: 40px; line-height: 40px;
  color: var(--ink); background: #fff; border-bottom: 1px solid var(--line-soft);
  font: 400 18px/40px var(--font-body);
}
.map .leaflet-bar a:last-child { border-bottom: 0; }
.map .leaflet-bar a:hover { background: var(--paper); color: var(--accent-deep); }
.map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.8); font-size: 10px; color: var(--muted);
  padding: 3px 8px; border-radius: var(--r-sm) 0 0 0;
}
.map .leaflet-control-attribution a { color: var(--muted); }

/* ---------- form ---------- */
.form { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; background: #fff; box-shadow: 0 24px 60px -30px rgba(10, 37, 64, 0.25); }
.form--modal { border: 0; padding: 0; background: none; box-shadow: none; }
.form__title { font-size: 25px; margin-bottom: 30px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.form__field label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.form__field input, .form__field textarea, .form__field select {
  font: inherit; color: var(--ink);
  padding: 13px 18px; border: 1.5px solid transparent; border-radius: var(--radius-sm);
  background: rgba(10, 37, 64, 0.05);
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: #93a5b3; }
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.form__field input.is-invalid, .form__field textarea.is-invalid { border-color: #d94f3d; }
.form__field select {
  appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 9 7 6 7-6' fill='none' stroke='%2353687b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 18px;
}
.form__submit { width: 100%; margin-top: 8px; }
.form__note { margin-top: 18px; font-size: 13px; color: var(--muted); text-align: center; }
.form__note .link-btn { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }

/* ---------- footer (ink chapter-close) ---------- */
.footer {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 96px;
}
.footer__inner { position: relative; z-index: 2; padding-top: 72px; }

/* row 1 — Ask AI panel */
.footer__ai {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px 48px; align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--r-lg);
  padding: 32px;
}
.footer__ai-title {
  font-size: 24px; font-weight: 600; letter-spacing: -0.01em;
  color: #fff; margin-top: 10px; max-width: 24ch;
}
.footer__ai-side { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__ai-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.ai-chip {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px; font-weight: 500; color: #fff;
  transition: border-color 0.16s ease-out;
}
.ai-chip:hover { border-color: var(--accent); }
.footer__ai-note { font-size: 12px; color: rgba(255, 255, 255, 0.55); }

/* row 2 — link columns */
.footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
  padding: 64px 0 96px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__col h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin-bottom: 8px;
}
.footer__col a, .footer__col .link-btn {
  font-size: 14px; color: rgba(255, 255, 255, 0.75);
  transition: color 0.16s ease-out, background-size 0.16s ease-out;
}
.footer__col a:hover, .footer__col .link-btn:hover { color: #fff; }
.footer__tag { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); max-width: 34ch; margin-top: 6px; }
.footer__addr { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.75); }
.footer__break { word-break: break-all; }

/* footer logo variant — 1.25×, white word, muted plate */
.footer .logo__mark { width: 30px; height: 40px; }
.footer .logo__word { font-size: 25px; color: #fff; }
.footer .logo__word small { font-size: 10.5px; margin-top: 3px; }
.footer .logo__plate { fill: rgba(244, 247, 248, 0.08); }

/* row 3 — watermark, bleeds off bottom behind bottom bar */

/* row 4 — bottom bar */
.footer__bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0; font-size: 12px; color: rgba(255, 255, 255, 0.45);
}
.footer__legal { display: flex; align-items: center; gap: 24px; }
.footer__bottom .link-btn { font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.footer__bottom .link-btn:hover { color: #fff; }

/* back to top — lives in the footer bottom bar */
.to-top {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  transition: color 0.16s ease-out;
}
.to-top:hover { color: #fff; }
.to-top .ic { font-size: 13px; }

/* ---------- modals ---------- */
.modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(7, 22, 38, 0.64); backdrop-filter: blur(7px);
  opacity: 0; transition: opacity 0.3s;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: min(560px, 100%);
  max-height: min(90svh, 940px); overflow-y: auto;
  border-radius: calc(var(--radius) + 6px); background: var(--paper);
  box-shadow: 0 40px 90px -24px rgba(7, 22, 38, 0.55);
  padding: 44px;
  opacity: 0; transform: translateY(30px) scale(0.97);
  transition: opacity 0.25s, transform 0.3s var(--ease);
}
.modal.is-open .modal__panel {
  opacity: 1; transform: none;
  transition: opacity 0.4s var(--ease), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
/* family signature: one accent hairline per modal (top of plain panels,
   under the video on media panels, under the navy head on contact panel) */
.modal__panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(15, 181, 166, 0) 70%);
}
.modal__panel--media::before, .modal__panel--ca::before { content: none; }
.modal__panel--wide { width: min(680px, 100%); }
.modal__panel--compact { width: min(440px, 100%); }
.modal__panel--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.modal__media { position: relative; aspect-ratio: 16 / 7.5; flex: none; overflow: hidden; background: var(--ink); }
.modal__media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 1.4s var(--ease);
}
.modal.is-open .modal__media video { transform: scale(1); }
.modal__media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(15, 181, 166, 0) 70%);
}
.modal__body { padding: 34px 44px 44px; overflow-y: auto; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  border: 0;
  background: var(--paper-2);
  color: var(--ink);
  transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.18s ease-out;
}
.modal__close svg {
  width: 16px; height: 16px; display: block;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round;
}
.modal__close:hover { background: var(--ink); color: #fff; }
.modal__close:active { transform: scale(0.94); }
.modal__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* over the video header / navy contact head: glassy dark variant */
.modal__panel--media .modal__close,
.modal__panel--ca .modal__close {
  background: rgba(7, 22, 38, 0.55);
  color: #fff;
}
.modal__panel--media .modal__close:hover,
.modal__panel--ca .modal__close:hover {
  background: var(--accent); color: #fff;
}
.modal__kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-deep);
}
.modal__title { font-size: 28px; margin: 12px 0 14px; }
.modal__sub { color: var(--muted); margin-bottom: 26px; }
.modal__body p, .modal__panel > p:not(.modal__kicker):not(.ca__value) { color: var(--muted); font-size: 15.5px; }
.modal__list { margin: 24px 0 30px; border-top: 1px solid var(--line); }
.modal__list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 2px; border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.modal__list li::before {
  content: "—"; color: var(--accent); font-weight: 600; flex: none;
}
.modal__scroll { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.modal__scroll p { color: var(--muted); font-size: 15px; }
.modal__scroll strong { color: var(--ink); }
.modal__scroll a { color: var(--accent-deep); word-break: break-all; text-decoration: underline; text-underline-offset: 3px; }

/* contact-action modal */
.modal__panel--ca { width: min(464px, 100%); padding: 0; overflow: hidden; background: #fff; }
.ca__head {
  position: relative; overflow: hidden;
  padding: 36px 32px 30px;
  background: linear-gradient(130deg, var(--ink) 20%, var(--ink-2) 100%);
  color: var(--paper);
}
.ca__head::before {
  content: ""; position: absolute; top: -90px; right: -70px;
  width: 250px; height: 250px; border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 181, 166, 0.38), transparent 68%);
  z-index: 1;
}
/* brand-tinted video backdrop: navy gradient base + translucent clip on top */
.ca__head-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.34; filter: saturate(0.8);
}
.ca__head .ca__ic, .ca__head .modal__kicker, .ca__head .ca__value {
  position: relative; z-index: 2;
}
.ca__head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(15, 181, 166, 0) 70%);
}
.ca__head > :not(.ca__head-video) { position: relative; }
.ca__head .modal__kicker { color: var(--accent); }
.ca__ic {
  width: 58px; height: 58px; margin-bottom: 20px;
  border-radius: calc(var(--radius-sm) + 3px);
  display: grid; place-items: center;
  background: rgba(15, 181, 166, 0.16);
  border: 1px solid rgba(15, 181, 166, 0.38);
  color: var(--accent);
}
.ca__ic .ic { width: 27px; height: 27px; }
.ca__value {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.3;
  margin: 8px 0 0; word-break: break-word; color: #fff;
}
.ca__value--long {
  font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.55;
  color: rgba(244, 247, 248, 0.92); max-width: 36ch;
}
.ca__body { padding: 24px 32px 32px; }
.ca__actions { display: flex; flex-direction: column; gap: 10px; }
.ca__actions .btn {
  width: 100%; justify-content: space-between;
  padding: 12px 12px 12px 26px;
}
.ca__actions .btn .ic {
  box-sizing: content-box; font-size: 17px; padding: 10px;
  border-radius: 999px; background: rgba(244, 247, 248, 0.14);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.ca__actions .btn--line .ic { background: rgba(15, 181, 166, 0.12); color: var(--accent-deep); }
.ca__actions .btn:hover .ic { transform: scale(1.07); }
.ca__actions .btn--line { border-color: var(--line); }
.ca__actions .btn--line:hover { background: rgba(15, 181, 166, 0.07); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 500;
  transform: translate(-50%, 80px);
  display: flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-weight: 500; font-size: 15px;
  box-shadow: 0 24px 60px -18px rgba(7, 22, 38, 0.6);
  opacity: 0; visibility: hidden;
  transition: transform 0.45s var(--ease), opacity 0.4s, visibility 0.4s;
  max-width: min(540px, calc(100vw - 40px));
}
.toast .ic { font-size: 20px; color: var(--accent); }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* ---------- reveal (480ms ease-out, 80ms stagger via --d from script.js) ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.48s var(--ease-out), transform 0.48s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

body.is-locked { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .srow { grid-template-columns: 1fr 1fr; gap: 40px; padding: 52px 0; }
  .bento__cell, .bento__cell--c7 { grid-column: span 6; }
  .stats__item { padding: 6px 20px 2px; }
  .faq-sec__grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-sec__head { position: static; }
  .cta-band { padding: 56px 44px; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__side { justify-self: start; }
  .ind { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .fact { max-width: 560px; }
  .process__row { grid-template-columns: 64px 1fr; gap: 8px 32px; }
  .process__row p { grid-column: 2; }
  .contact { grid-template-columns: 1fr; gap: 50px; }
  .contact__lead { position: static; }
  .footer__ai { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 44px; }
  .header__phone { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .container { width: min(1240px, 100% - 36px); }
  .section { padding: var(--section-y-m) 0; }
  .sec-head { margin-bottom: 44px; gap: 16px; }

  /* full-screen ink menu overlay */
  .header__inner { display: flex; justify-content: space-between; }
  .header__side { display: none; }
  .burger { display: block; flex: none; }
  .nav {
    /* .header has backdrop-filter/transform, so it is this fixed drawer's
       containing block — size must be explicit, inset:0 would collapse to header height */
    position: fixed; top: 0; left: 0; width: 100vw; height: 100svh; z-index: 205;
    display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
    gap: 0; padding: 96px 28px 32px;
    background: var(--ink);
    transform: translateY(-102%); visibility: hidden;
    transition: transform 0.32s var(--ease-menu), visibility 0s 0.32s;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0); visibility: visible;
    transition: transform 0.32s var(--ease-menu);
  }
  .nav__link {
    font-family: var(--font-display); font-size: 32px; font-weight: 600;
    color: #fff; padding: 10px 0 12px; background-image: none;
    opacity: 0; transform: translateY(18px);
  }
  .nav__link:first-child { margin-top: auto; }
  .nav.is-open .nav__link {
    opacity: 1; transform: none;
    transition: opacity 0.32s ease-out, transform 0.32s var(--ease-out);
  }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.1s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.15s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.2s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.25s; }
  .nav__extra {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    width: 100%; margin-top: 36px;
    opacity: 0; transform: translateY(18px);
  }
  .nav.is-open .nav__extra {
    opacity: 1; transform: none;
    transition: opacity 0.32s ease-out 0.3s, transform 0.32s var(--ease-out) 0.3s;
  }
  .nav__phone {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    color: #fff; font-variant-numeric: tabular-nums;
  }
  .nav__cta { width: 100%; height: 52px; font-size: 15px; }
  .nav__foot {
    display: block; margin-top: auto; padding-top: 32px;
    font-size: 12px; color: rgba(255, 255, 255, 0.5);
    opacity: 0;
  }
  .nav.is-open .nav__foot { opacity: 1; transition: opacity 0.32s ease-out 0.36s; }

  .hero__inner { padding-bottom: 72px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .subhero { min-height: max(48svh, 400px); }
  .subhero__inner { padding: calc(var(--header-h) + 48px) 0 44px; }
  .subhero__sub { font-size: 16px; }

  .srow { grid-template-columns: 1fr; gap: 26px; padding: 44px 0; }
  .srow__media { aspect-ratio: 16 / 10; }
  .srow--flip .srow__media { order: 0; }
  .srow .btn { width: 100%; }


  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bento__cell, .bento__cell--c7 { grid-column: auto; }
  .bento__body { padding: 24px; }
  .bento__media { aspect-ratio: 16 / 8; }

  .showreel { padding: var(--section-y-m) 0; }
  .showreel__head { margin-bottom: 32px; }
  .showreel__credo { font-size: 23px; }
  .showreel__frame { aspect-ratio: 16 / 10; }
  .showreel__frame figcaption { left: 14px; bottom: 12px; }

  .stats__eyebrow { margin-bottom: 32px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .stats__item { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0 22px; }
  .stats__item:first-child { padding-left: 0; }
  .stats__foot { margin-top: 8px; }

  .faq__item summary { font-size: 15.5px; gap: 18px; }

  .cta-band { padding: 44px 24px; border-radius: var(--r-lg); }
  .cta-band__side { width: 100%; }
  .cta-band__side .btn { width: 100%; }

  .ind { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 30px; }

  .about-hero { padding: calc(var(--header-h) + 56px) 0 64px; }
  .about-hero__title { margin: 16px 0 36px; }
  .fact { padding: 4px 20px; }
  .process__row { grid-template-columns: 1fr; gap: 6px; padding: 24px 0 26px; }
  .process__row p { grid-column: auto; }

  .contact-open { padding-top: calc(var(--header-h) + 48px); }
  .contact__rows { margin-top: 36px; }
  .map { height: 320px; }
  .map__card { top: 12px; left: 12px; right: 12px; max-width: none; padding: 14px 16px; }

  .form { padding: 30px 24px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer { margin-top: 72px; }
  .footer__inner { padding-top: 56px; }
  .footer__ai { padding: 24px; }
  .footer__ai-title { font-size: 21px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 48px 0 80px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .modal { padding: 14px; }
  .modal__panel { padding: 32px 24px; }
  .modal__panel--media, .modal__panel--ca { padding: 0; }
  .modal__body { padding: 26px 24px 34px; }
  .modal__media { aspect-ratio: 16 / 9; }
  .modal__close { top: 12px; right: 12px; }
  .ca__head { padding: 30px 24px 26px; }
  .ca__body { padding: 20px 20px 24px; }
  .ca__value { font-size: 21px; }
  .ca__value--long { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
  .ticker__set + .ticker__set { display: none; }
  [data-parallax] { transform: none !important; }
  .faq__item::details-content { transition: none; }
  .nav__link, .nav__extra, .nav__foot { opacity: 1 !important; transform: none !important; }
}
