/* =========================================================
   EVEREST ENTERPRISE SOLUTIONS — design system
   ========================================================= */
:root {
  --black: #050608;
  --ink: #0c0e12;
  --ink-2: #121519;
  --ink-3: #1b1f25;
  --white: #ffffff;
  --paper: #f3f4f6;
  --muted: #a3a9b1;
  --muted-2: #6b727b;
  --line: rgba(12, 14, 18, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --brand: #326b99;
  --accent: #3d8bff;
  --accent-2: #8fc3ff;
  --sky: #2a64d8;

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --f-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --pad: clamp(16px, 3.2vw, 48px);
  --maxw: 1600px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-h: 108px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 1000; background: #fff; color: #000; padding: 10px 14px; border-radius: 6px; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- type ---------- */
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 400;
}
.display {
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 125%;
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.012em;
}
.h2 { font-size: clamp(34px, 4.7vw, 74px); }
/* rete di sicurezza: interviene solo se una parola non entra davvero */
.display { overflow-wrap: break-word; }
/* la sillabazione spezzava parole inglesi come MANUFACTURE e FREQUENTLY.
   Serve solo a polacco e tedesco, dove una parola come VERLASSLICHKEIT (910px)
   non entra comunque nella sua colonna (598px). */
:lang(pl) .display, :lang(de) .display { hyphens: auto; }
.h3 { font-size: clamp(26px, 3.2vw, 48px); }
.tone-muted { color: #b9bec5; }
.tone-soft { color: rgba(255, 255, 255, .45); }
.tone-accent { color: var(--white); }
.display .tone-muted, .display .tone-soft { display: block; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: currentColor; opacity: .75; }
.eyebrow .idx { opacity: .55; }
.lead { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.5; color: rgba(255, 255, 255, .72); max-width: 34em; }
.lead--dark { color: var(--ink); }

/* split words (JS) */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .14em 0 .06em; margin: -.14em 0 -.06em; }
.w > span { display: inline-block; will-change: transform; }

/* ---------- buttons ---------- */
.btn {
  --bg: #fff; --fg: #0c0e12; --bd: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: #fff; border-color: var(--accent); }
.btn--light { --bg: #fff; --fg: #0c0e12; }
.btn--dark { --bg: var(--ink); --fg: #fff; }
.btn--ghost { --bg: transparent; --fg: currentColor; --bd: rgba(255, 255, 255, .35); color: inherit; }
[data-theme="light"] .btn--ghost, .rel .btn--ghost { --bd: var(--line); }

/* ---------- brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 30px; height: 38px; flex: none; }
.brand__word { font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125; font-size: 17px; letter-spacing: .08em; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 900;
  background: var(--black); color: #fff;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 26px var(--pad);
  clip-path: inset(0 0 0 0);
}
.loader__top { display: flex; justify-content: space-between; align-items: center; }
.loader__count { font-size: 12px; display: flex; gap: 2px; }
.loader__count b { font-weight: 500; min-width: 3ch; text-align: right; }
.loader__stage { display: grid; grid-template-columns: 1fr minmax(0, 3.2fr) 1fr; align-items: center; gap: 24px; }
.loader__map { width: 100%; aspect-ratio: 2 / 1; }
.loader__list { display: grid; gap: 6px; color: rgba(255, 255, 255, .55); }
.loader__list li span { display: block; color: rgba(255, 255, 255, .3); font-size: 10px; }
.loader__list li { margin-bottom: 6px; }
.loader__list--right { text-align: right; }
.loader__bottom { display: flex; justify-content: space-between; color: rgba(255, 255, 255, .4); }
html:not(.is-loading) .loader { pointer-events: none; }
.no-js .loader { display: none; }

/* =========================================================
   CURSOR
   ========================================================= */
/* =========================================================
   PROFONDIMETRO — quota fissa in alto, scende mentre si scorre
   ========================================================= */
.depth {
  position: fixed; top: 16px; left: 50%; translate: -50% 0; z-index: 510;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 7px 14px 6px; border-radius: 999px;
  background: rgba(5, 6, 8, .38); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px) saturate(1.2); -webkit-backdrop-filter: blur(10px) saturate(1.2);
  color: #fff; pointer-events: none;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .35s, background-color .35s, border-color .35s;
}
.depth.is-on { opacity: 1; transform: none; }
.depth[data-theme="light"] {
  background: rgba(255, 255, 255, .62); border-color: rgba(12, 14, 18, .12); color: var(--ink);
}
/* 'm' minuscola: in maiuscolo sarebbe il prefisso mega */
.depth__val { font-size: 12px; letter-spacing: .04em; text-transform: none; font-variant-numeric: tabular-nums; white-space: nowrap; opacity: .9; }
.depth__val b { font-weight: 500; opacity: 1; }
.depth__track { display: block; width: 74px; height: 1px; background: currentColor; opacity: .25; position: relative; }
.depth__track i { position: absolute; left: 0; top: -1.5px; height: 4px; width: 4px; border-radius: 50%; background: currentColor; }

.cursor { position: fixed; left: 0; top: 0; z-index: 950; pointer-events: none; display: none; mix-blend-mode: difference; }
.has-cursor .cursor { display: block; }
.cursor__ring, .cursor__dot { position: absolute; left: 0; top: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__ring { width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .9); transition: width .35s var(--ease), height .35s var(--ease), background-color .35s; }
.cursor__dot { width: 5px; height: 5px; background: #fff; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(255, 255, 255, .12); }
.cursor.is-down .cursor__ring { width: 24px; height: 24px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  color: #fff;
  transition: transform .6s var(--ease), color .35s, background-color .35s, backdrop-filter .35s;
}
.header[data-theme="light"] { color: var(--ink); }
.header.is-hidden { transform: translateY(-100%); }
.header.is-solid { background: rgba(5, 6, 8, .55); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); }
.header.is-solid[data-theme="light"] { background: rgba(255, 255, 255, .72); }
.header__bar {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 10px var(--pad);
  font-size: 10px;
  opacity: .6;
  border-bottom: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 14%, transparent);
}
.header__meta { display: flex; gap: 22px; }
.lang { display: flex; gap: 10px; }
.lang a { opacity: .5; }
.lang a[aria-current] { opacity: 1; }
.header__main {
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 48px;
  padding: 16px var(--pad) 18px;
}
.nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 2px 40px; font-size: 11px; padding-top: 2px; }
.nav a { position: relative; opacity: .8; transition: opacity .3s; width: max-content; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header[data-theme="dark"] .header__cta { --bg: #fff; --fg: #0c0e12; }
.header[data-theme="light"] .header__cta { --bg: var(--ink); --fg: #fff; }
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid color-mix(in srgb, currentColor 30%, transparent); position: relative; }
.burger span:not(.sr) { position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor; transition: transform .45s var(--ease); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 24px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 450;
  background: var(--black); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px var(--pad) 32px;
}
.menu[hidden] { display: none; }
.menu__nav { display: grid; gap: 4px; }
.menu__nav a {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125;
  text-transform: uppercase; font-size: clamp(30px, 9vw, 56px); line-height: 1.02;
  padding: 6px 0; border-bottom: 1px solid var(--line-dark);
}
.menu__nav i { font-style: normal; opacity: .4; }
.menu__foot { display: grid; gap: 6px; margin-top: 32px; opacity: .7; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; height: 230vh; background: var(--black); color: #fff; }
.hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.hero__globe { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5, 6, 8, .78) 0%, rgba(5, 6, 8, .25) 45%, rgba(5, 6, 8, 0) 70%); }
.hero__haze { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(to top, var(--sky) 0%, rgba(42, 100, 216, .85) 22%, rgba(42, 100, 216, .25) 55%, rgba(42, 100, 216, 0) 80%); }
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: clamp(40px, 9vh, 96px);
  pointer-events: none;
}
.hero__content a { pointer-events: auto; }
.hero__title { font-size: clamp(28px, 6.6vw, 112px); margin-bottom: clamp(24px, 4vh, 44px); color: rgba(255, 255, 255, .42); }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; }
.hero__title .tone-accent { color: #fff; }
.hero__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1040px; }
.hero__foot .lead { max-width: 30em; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__corner {
  position: absolute; right: var(--pad); top: calc(var(--header-h) + 28px);
  display: grid; gap: 4px; text-align: right; color: rgba(255, 255, 255, .6); font-size: 10px;
}
.hero__corner .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(61, 139, 255, .25); margin-right: 6px; vertical-align: 1px; animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(61, 139, 255, 0); } }
.hero__scroll { position: absolute; right: var(--pad); bottom: clamp(40px, 9vh, 96px); display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .6); font-size: 10px; }
.hero__scroll i { width: 1px; height: 44px; background: rgba(255, 255, 255, .2); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: #fff; animation: drip 1.8s var(--ease) infinite; }
@keyframes drip { to { top: 110%; } }

/* =========================================================
   ATMOSPHERE
   ========================================================= */
.atmo {
  position: relative; height: 120vh;
  background: linear-gradient(to bottom, var(--sky) 0%, #4a82e6 22%, #86adf0 45%, #c9dcfa 68%, #eef4fd 84%, #fff 100%);
  display: grid; place-items: center;
  overflow: hidden;
  margin-top: -1px;
}
.atmo__words {
  display: flex; flex-direction: column; align-items: center; gap: .05em;
  font-size: min(14vw, 220px); color: #fff; text-align: center;
  line-height: .86;
  transform: translateY(-12vh);
  text-shadow: 0 10px 60px rgba(20, 60, 160, .25);
}
.atmo__words span { display: block; }
.atmo__amp { font-weight: 400; font-stretch: 100%; font-variation-settings: "wdth" 100; font-size: .5em; opacity: .9; }

/* =========================================================
   CORE
   ========================================================= */
.core { padding: clamp(80px, 12vw, 180px) 0 clamp(60px, 8vw, 120px); }
.core__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 140px); }
.core__text .h2 { margin-bottom: 36px; }
.core__body { display: grid; gap: 18px; max-width: 560px; color: var(--muted-2); }
.core__body .btn { justify-self: start; margin-top: 12px; }
.stats { display: grid; align-content: start; }
.stat { display: grid; gap: 10px; padding: 22px 0 28px; border-top: 1px solid var(--line); }
.stat:last-child { border-bottom: 1px solid var(--line); }
.stat__num { font-size: clamp(64px, 8.6vw, 136px); line-height: .86; letter-spacing: -.03em; }
.stat__num b { font-weight: inherit; }
.stat__label { color: var(--muted-2); max-width: 28em; font-size: 15px; }

/* =========================================================
   ANATOMY (3D exploded whirlpool)
   ========================================================= */
.anatomy { position: relative; height: 360vh; background: #fff; }
.anatomy__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.anatomy__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s var(--ease); }
.anatomy.is-ready .anatomy__canvas { opacity: 1; }
.anatomy__head { position: absolute; left: 0; right: 0; top: calc(var(--header-h) + 8px); pointer-events: none; }
.anatomy__head .h2 { font-size: clamp(30px, 3.8vw, 60px); margin-bottom: 18px; }
.anatomy__lead { color: var(--muted-2); max-width: 24em; }
.anatomy__foot { position: absolute; left: 0; right: 0; bottom: 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted-2); font-size: 10px; }
.anatomy__hint { transition: opacity .5s; }
.anatomy.is-started .anatomy__hint { opacity: 0; }
.anatomy__progress { display: flex; align-items: center; gap: 12px; }
.anatomy__progress i { width: clamp(90px, 14vw, 200px); height: 1px; background: var(--line); position: relative; }
.anatomy__progress b { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(0); }
.anatomy__labels { position: absolute; inset: 0; pointer-events: none; }
.alabel { position: absolute; left: 0; top: 0; opacity: 0; transition: opacity .5s var(--ease); will-change: transform; }
.alabel.is-on { opacity: 1; }
.alabel__dot { position: absolute; left: -4px; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(61, 139, 255, .18); }
.alabel__line { position: absolute; left: 0; top: 0; height: 1px; width: var(--len, 0); background: rgba(12, 14, 18, .32); transform-origin: 0 50%; transform: rotate(var(--ang, 0rad)) scaleX(0); transition: transform .5s var(--ease) .05s; }
.alabel.is-on .alabel__line { transform: rotate(var(--ang, 0rad)) scaleX(1); }
.alabel__box {
  position: absolute; left: 0; top: 0;
  display: grid; gap: 2px; width: max-content; max-width: 230px;
  padding-left: 10px;
  transform: translate(var(--bx, 0), var(--by, 0)) translateY(-50%);
}
.alabel--l .alabel__box { text-align: right; padding: 0 10px 0 0; transform: translate(var(--bx, 0), var(--by, 0)) translateY(-50%) translateX(-100%); }
.alabel__box b { font-weight: 500; color: var(--ink); font-size: 11px; }
.alabel__box span { color: var(--muted-2); font-size: 13px; line-height: 1.35; }
.anatomy.is-fallback { height: auto; }
.anatomy.is-fallback .anatomy__sticky { position: relative; height: auto; padding: calc(var(--header-h) + 8px) 0 60px; }
.anatomy.is-fallback .anatomy__head, .anatomy.is-fallback .anatomy__foot { position: static; }
.anatomy.is-fallback .anatomy__canvas, .anatomy.is-fallback .anatomy__labels { display: none; }
.reduced .anatomy { height: 100vh; }

/* =========================================================
   GALLERY (pinned horizontal)
   ========================================================= */
.gallery { position: relative; background: #fff; }
.gallery__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.gallery__giant {
  position: absolute; left: 0; top: 50%; translate: 0 -50%;
  white-space: nowrap; overflow-wrap: normal; hyphens: none; font-size: clamp(120px, 24vw, 420px); color: #eef0f2; line-height: .8;
  will-change: transform; pointer-events: none;
}
.gallery__row { position: relative; display: flex; align-items: center; gap: clamp(20px, 3vw, 56px); padding-inline: var(--pad) 12vw; will-change: transform; }
.shot { flex: none; position: relative; }
.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; background: var(--paper); }
.shot figcaption { margin-top: 12px; color: var(--muted-2); font-size: 10px; display: flex; gap: 8px; }
.shot figcaption span { color: var(--ink); }
.shot--tall { width: clamp(220px, 22vw, 360px); aspect-ratio: 2 / 3; }
.shot--tall img { aspect-ratio: 2 / 3; }
.shot--wide { width: clamp(300px, 36vw, 620px); }
.shot--wide img { aspect-ratio: 3 / 2; }
.shot--low { transform: translateY(8vh); }
.shot--high { transform: translateY(-8vh); }
.gallery__row .shot:first-child { margin-left: 30vw; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--ink-2); color: #fff; position: relative; }
.services__pin { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) - 10px) 0 26px; overflow: hidden; }
.services__head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: start; margin-bottom: clamp(24px, 3.5vh, 48px); }
.services__intro { display: grid; gap: 22px; justify-items: start; color: rgba(255, 255, 255, .62); max-width: 460px; justify-self: end; }
.services__viewport { overflow: hidden; }
.services__track { display: flex; width: max-content; padding-inline: var(--pad); will-change: transform; background: var(--ink-2); }
.card {
  --w: clamp(270px, 24vw, 380px);
  position: relative; flex: none; width: var(--w);
  display: flex; flex-direction: column;
  padding: 28px 28px 26px;
  border-left: 1px solid var(--line-dark);
  min-height: clamp(340px, 46vh, 480px);
  transition: background-color .5s var(--ease);
}
.card:last-child { border-right: 1px solid var(--line-dark); }
.card:hover { background: var(--ink-3); }
.card__hit { position: absolute; inset: 0; z-index: 2; border-radius: 0; }
.card__photo { height: clamp(112px, 14.6vh, 180px); border-radius: 10px; overflow: hidden; margin-bottom: auto; background: var(--ink-3); }
.card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__photo img { transform: scale(1.06); }
.card__idx { color: rgba(255, 255, 255, .4); margin: 28px 0 10px; }
.card__title { font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125; text-transform: uppercase; font-size: clamp(22px, 1.9vw, 30px); line-height: 1; margin-bottom: 14px; }
.card__text { color: rgba(255, 255, 255, .6); font-size: 15px; max-width: 26em; min-height: 4.65em; }
.card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: rgba(255, 255, 255, .8); }
.card__more svg { width: 14px; height: 14px; transition: transform .45s var(--ease); }
.card:hover .card__more svg { transform: translateX(5px); }
.card--feature { --w: clamp(300px, 30vw, 480px); }
.card--feature .card__photo { height: clamp(150px, 21.5vh, 264px); border-radius: 12px; }
/* product shot on a studio background: show the whole device instead of cropping it */
.card__photo--product { background: #fff; }
.card__photo--product img { object-fit: contain; padding: 10px 12px; }
.services__progress { display: flex; align-items: center; gap: 16px; margin-top: 28px; color: rgba(255, 255, 255, .45); }
.services__progress i { flex: 1; height: 1px; background: var(--line-dark); position: relative; }
.services__progress b { position: absolute; left: 0; top: 0; bottom: 0; width: 100%; background: #fff; transform-origin: left; transform: scaleX(0); }
/* short laptop screens: the pinned row must still fit in one viewport */
@media (min-width: 1101px) and (max-height: 860px) {
  .services__pin { padding-bottom: 16px; }
  .services__head { margin-bottom: 14px; }
  .services__head .h2 { font-size: clamp(30px, 3.6vw, 44px); }
  .card { padding: 20px 24px 20px; min-height: 0; }
  .card__photo { height: clamp(96px, 13.5vh, 150px); }
  .card--feature .card__photo { height: clamp(124px, 18vh, 200px); }
  .card__idx { margin: 16px 0 6px; }
  .card__title { margin-bottom: 10px; }
  .card__text { font-size: 14px; min-height: 4.4em; }
  .card__more { margin-top: 14px; }
  .services__progress { margin-top: 16px; }
}

/* =========================================================
   DIFFERENTIATORS
   ========================================================= */
.rel { background: #fff; padding: clamp(60px, 8vw, 120px) 0 0; }
.rel__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) clamp(170px, 16vw, 260px) minmax(0, .95fr); gap: clamp(28px, 4vw, 72px); }
.rel__sticky { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; padding: calc(var(--header-h) + 20px) 0 56px; }
.rel__sticky .h2 { margin-bottom: auto; font-size: clamp(32px, 4vw, 64px); }
.rel__lead { color: var(--muted-2); max-width: 30em; margin-top: 40px; }
.rel__lane {
  --L: min(52vh, 34vw); /* ship length */
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  background: #14171f; /* sampled from the photo's open sea */
}
.rel__sea {
  position: absolute; inset: -160px 0;
  background: url("https://static.wixstatic.com/media/7f750b_2a0c5fa27b674af1908880246e4d6186f000.jpg/v1/fill/w_1920,h_1080,al_c,q_80,enc_auto/everest-sea.jpg") right center / auto 100% no-repeat;
  opacity: .7;
  will-change: transform;
}
.rel__lane::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(20, 23, 31, .6), transparent 18%, transparent 82%, rgba(20, 23, 31, .6)); }
.rel__ship { position: absolute; left: 50%; top: 0; width: 0; height: 0; will-change: transform; }
.rel__photo {
  position: absolute; overflow: visible; max-width: none;
  width: calc(var(--L) * 1.8898); height: calc(var(--L) * 1.063);
  left: calc(var(--L) * -0.9149); top: calc(var(--L) * -0.4941);
  transform-origin: 48.41% 46.48%;
  transform: rotate(148.44deg); /* bow pointing down the lane */
}
.rel__items { display: grid; }
.feat { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; padding: 40px 0; border-bottom: 1px solid var(--line); opacity: .28; transition: opacity .6s var(--ease); }
.feat.is-active { opacity: 1; }
.feat__icon { width: 52px; height: 52px; color: var(--brand); margin-bottom: 28px; }
.feat__idx { color: var(--muted-2); margin-bottom: 12px; }
.feat__title { font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125; text-transform: uppercase; font-size: clamp(24px, 2.3vw, 36px); line-height: 1; margin-bottom: 16px; }
.feat p { color: var(--muted-2); max-width: 30em; }

/* =========================================================
   VALUES (video)
   ========================================================= */
.values { position: relative; background: var(--black); color: #fff; }
.values__bg { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.values__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.values__tint { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5, 6, 8, .25), rgba(5, 6, 8, .55) 60%, rgba(5, 6, 8, .85)); }
.values__clouds { position: absolute; inset: -10%; pointer-events: none; }
.values__clouds i { position: absolute; border-radius: 50%; background: radial-gradient(closest-side, #fff 0%, rgba(255, 255, 255, .92) 40%, rgba(255, 255, 255, 0) 100%); filter: blur(10px); }
.values__clouds i:nth-child(1) { width: 90vw; height: 70vh; left: -25%; top: -10%; }
.values__clouds i:nth-child(2) { width: 80vw; height: 80vh; right: -25%; top: -15%; }
.values__clouds i:nth-child(3) { width: 70vw; height: 60vh; left: 15%; top: 10%; }
.values__clouds i:nth-child(4) { width: 70vw; height: 70vh; left: -20%; bottom: -10%; }
.values__clouds i:nth-child(5) { width: 80vw; height: 70vh; right: -20%; bottom: -15%; }
.values__clouds i:nth-child(6) { width: 60vw; height: 50vh; left: 20%; top: 40%; }
.values__content { position: relative; margin-top: -100vh; margin-top: -100svh; padding-bottom: 18vh; }
.values__intro { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 30vh; }
.values__intro .h2 { max-width: 14em; }
.values__sub { margin-top: 28px; max-width: 34em; color: rgba(255, 255, 255, .72); font-size: clamp(16px, 1.25vw, 19px); }
.values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: start; }
.vcard {
  padding: 28px 28px 32px;
  min-height: 250px;
  display: flex; flex-direction: column;
  background: rgba(8, 12, 20, .5);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
.vcard .mono { color: rgba(255, 255, 255, .45); }
.vcard h3 { font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125; text-transform: uppercase; font-size: clamp(20px, 1.7vw, 26px); margin: auto 0 12px; padding-top: 40px; }
.vcard p { color: rgba(255, 255, 255, .7); font-size: 15px; }
.vcard:nth-child(3n+2) { margin-top: 48px; }
.vcard:nth-child(3n+3) { margin-top: 96px; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: clamp(100px, 12vw, 200px) 0 clamp(60px, 8vw, 120px); background: #fff; }
.about__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 140px); align-items: start; }
.about__photo { position: sticky; top: calc(var(--header-h) + 20px); }
.about__photo picture { display: block; }
.about__photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; background: var(--paper); }
.about__photo figcaption { margin-top: 12px; color: var(--muted-2); font-size: 10px; }
.about__text { display: grid; gap: 28px; padding-top: 4vh; }
.about__text .h2 { margin-bottom: 8px; }
.about__text > div { display: grid; gap: 16px; color: var(--muted-2); max-width: 36em; }
.quote { margin-top: 20px; padding: 36px 0 0; border-top: 1px solid var(--line); }
.quote p { font-size: clamp(20px, 1.9vw, 30px); line-height: 1.32; letter-spacing: -.01em; color: var(--ink); max-width: 26em; }
.quote footer { display: grid; gap: 4px; margin-top: 26px; }
.quote footer strong { font-weight: 600; }
.quote footer .mono { color: var(--muted-2); }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners { padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); background: #fff; }
.partners__head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.partners__head .eyebrow { margin: 0; }
.marquee { overflow: hidden; border-block: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li { flex: none; width: clamp(180px, 18vw, 280px); height: clamp(110px, 10vw, 150px); display: grid; place-items: center; border-right: 1px solid var(--line); padding: 24px 32px; }
.marquee__track img { height: 60px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) contrast(1.1); mix-blend-mode: multiply; opacity: .7; transform: scale(var(--s, 1)); transition: opacity .4s, filter .4s; }
.marquee__track img.inv { filter: invert(1) grayscale(1) contrast(1.2); }
.marquee__track li:hover img { opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); padding: clamp(80px, 10vw, 160px) 0; }
.faq__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 140px); align-items: start; }
.faq__left { position: sticky; top: calc(var(--header-h) + 20px); display: grid; justify-items: start; gap: 24px; }
.faq__left .eyebrow { margin-bottom: -2px; }
.faq__note { color: var(--muted-2); max-width: 26em; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa h3 { font: inherit; }
.qa button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; text-align: left;
  font-size: clamp(17px, 1.35vw, 21px); font-weight: 500; letter-spacing: -.01em;
}
.qa button svg { width: 16px; height: 16px; flex: none; transition: transform .5s var(--ease); }
.qa button[aria-expanded="true"] svg { transform: rotate(45deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.qa__a > div { overflow: hidden; color: var(--muted-2); max-width: 44em; }
.qa__a p, .qa__a ul { margin-bottom: 14px; }
.qa__a ul { list-style: disc; padding-left: 1.2em; }
.qa__a > div > :last-child { margin-bottom: 26px; }
.qa.is-open .qa__a { grid-template-rows: 1fr; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { position: relative; background: var(--black); color: #fff; padding: clamp(100px, 12vw, 180px) 0 clamp(80px, 10vw, 140px); overflow: hidden; }
.contact__glow { position: absolute; left: 50%; bottom: -60vw; width: 140vw; height: 90vw; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(61, 139, 255, .35), rgba(42, 100, 216, .12) 55%, transparent 75%); pointer-events: none; }
.contact .wrap { position: relative; }
.contact__title { font-size: clamp(38px, 8.2vw, 150px); margin-bottom: clamp(48px, 6vw, 96px); }
.contact__title .tone-muted { color: rgba(255, 255, 255, .35); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 140px); }
.contact__info { display: grid; gap: 40px; align-content: start; }
.contact__dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.contact__dl dt { color: rgba(255, 255, 255, .4); margin-bottom: 6px; }
.contact__dl dd { font-size: 16px; }
.contact__dl a { border-bottom: 1px solid rgba(255, 255, 255, .2); transition: border-color .3s; }
.contact__dl a:hover { border-color: #fff; }
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field .mono { color: rgba(255, 255, 255, .45); }
.field input, .field textarea {
  width: 100%; font: inherit; color: #fff;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color .3s, background-color .3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(61, 139, 255, .06); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #ff6b6b; }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.form__status { color: rgba(255, 255, 255, .6); max-width: 36ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--black); color: #fff; padding-top: clamp(60px, 7vw, 100px); overflow: hidden; border-top: 1px solid var(--line-dark); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer__brand img { width: 150px; height: auto; margin-bottom: 20px; }
.footer__brand p { color: rgba(255, 255, 255, .55); max-width: 22em; }
.footer__col { display: grid; align-content: start; gap: 8px; color: rgba(255, 255, 255, .75); font-size: 15px; }
.footer__col h3 { color: rgba(255, 255, 255, .4); margin-bottom: 10px; }
.footer__col a { width: max-content; max-width: 100%; transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__col p { color: rgba(255, 255, 255, .6); }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: background-color .3s, border-color .3s; }
.socials a:hover { background: #fff; color: var(--ink); }
.socials svg { width: 18px; height: 18px; }
.footer__giant {
  font-size: clamp(60px, 17vw, 420px); line-height: .78; text-align: center;
  /* una parola sola, mai spezzata: la regola generale su .display non vale qui */
  white-space: nowrap; overflow-wrap: normal; hyphens: none;
  margin: clamp(40px, 6vw, 90px) 0 -0.12em;
  background: linear-gradient(to bottom, rgba(61, 139, 255, .55), rgba(50, 107, 153, .08) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.03em;
  user-select: none;
}
.footer__ident { position: relative; padding-top: 20px; color: rgba(255, 255, 255, .38); font-size: 10px; line-height: 1.9; background: var(--black); max-width: none; }
.footer__legal { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 26px; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, .5); font-size: 10px; background: var(--black); }
.footer__legal nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* esca antispam: invisibile a chi naviga, i robot la riempiono */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   DRAWER
   ========================================================= */
.drawer {
  margin: 0 0 0 auto; padding: 0; border: 0;
  width: min(640px, 100vw); max-width: 100vw; height: 100vh; height: 100dvh; max-height: none;
  background: #fff; color: var(--ink);
  overflow: hidden; display: flex; flex-direction: column;
}
/* a <dialog> is display:none until opened — restore that, the flex rule above would show it in the flow */
.drawer:not([open]) { display: none; }
.drawer__bar {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 62px; padding: 0 12px 0 clamp(22px, 4vw, 52px);
  padding-top: env(safe-area-inset-top); border-bottom: 1px solid var(--line); background: #fff;
}
.drawer__barname { color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.drawer::backdrop { background: rgba(5, 6, 8, .55); backdrop-filter: blur(4px); }
.drawer[open] { animation: drawerIn .7s var(--ease); }
.drawer[open]::backdrop { animation: fadeIn .5s var(--ease); }
@keyframes drawerIn { from { transform: translateX(100%); } }
@keyframes fadeIn { from { opacity: 0; } }
.drawer__inner {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; position: relative;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.drawer__close {
  display: inline-flex; align-items: center; gap: 10px; height: 40px; padding: 0 16px; border-radius: 999px;
  background: var(--paper); color: var(--ink); transition: background-color .3s var(--ease);
}
.drawer__close:hover { background: #e8ebef; }
.drawer__close svg { width: 12px; height: 12px; transform: rotate(45deg); }
.drawer__media { aspect-ratio: 3 / 2; background: var(--paper); overflow: hidden; }
.drawer__media img { width: 100%; height: 100%; object-fit: cover; }
.drawer__body { padding: 32px clamp(22px, 4vw, 52px) calc(56px + env(safe-area-inset-bottom)); display: grid; gap: 12px; }
.drawer__idx { color: var(--muted-2); }
.drawer__title { font-size: clamp(32px, 4.4vw, 56px); line-height: .98; }
.drawer__tag { font-size: 19px; color: var(--muted-2); max-width: 30em; }

.drawer__blocks { display: grid; gap: 0; margin-top: 26px; counter-reset: dblock; }
.drawer__block { padding: 26px 0; border-top: 1px solid var(--line); }
.drawer__block:first-child { border-top: 1px solid var(--ink); padding-top: 22px; }
.drawer__block h3 {
  counter-increment: dblock; display: flex; gap: 12px; align-items: baseline;
  margin-bottom: 12px; color: var(--brand); font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
}
.drawer__block h3::before { content: counter(dblock, decimal-leading-zero); color: var(--muted-2); font-size: 12px; }
.drawer__block p { color: #3a4048; max-width: 38em; }
.drawer__block ul { display: grid; gap: 10px; margin-top: 14px; }
.drawer__block li { position: relative; padding-left: 24px; color: #3a4048; max-width: 38em; }
.drawer__block li::before { content: ""; position: absolute; left: 0; top: .72em; width: 12px; height: 1px; background: var(--brand); }

/* spec sheet */
.drawer__specs { margin-top: 16px; border-top: 1px solid var(--line); }
.drawer__specs div { display: grid; grid-template-columns: minmax(0, 11em) minmax(0, 1fr); gap: 10px 20px; padding: 11px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.drawer__specs dt { color: var(--muted-2); font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.drawer__specs dd { color: #22262c; font-weight: 500; }

.drawer__foot { margin-top: 30px; padding: 26px; border-radius: 14px; background: var(--paper); display: grid; gap: 16px; justify-items: start; }
.drawer__footnote { color: var(--muted-2); max-width: 26em; }
.drawer__cta { justify-self: start; }

/* =========================================================
   REVEAL (JS-enhanced)
   ========================================================= */
.js [data-fade] { opacity: 0; transform: translateY(28px); }
.js .vcard[data-fade] { transform: translateY(60px); }
/* a comparsa avvenuta l'elemento torna al suo posto: senza questa regola
   clearProps toglie la trasformazione inline di GSAP e riemerge quella qui
   sopra, lasciando ogni blocco 28px piu' in basso di come e' disegnato */
.js [data-fade].is-in, .js .vcard[data-fade].is-in { transform: none; }
.reduced [data-fade], .reduced .vcard[data-fade] { opacity: 1 !important; transform: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  :root { --header-h: 76px; }
  .header__bar { display: none; }
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .header__main { grid-template-columns: 1fr auto; align-items: center; padding-block: 16px; }
  .core__grid, .services__head, .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__intro { justify-self: start; }
  .rel__grid { grid-template-columns: 1fr; }
  .rel__lane { display: none; }
  .rel__sticky { position: static; min-height: 0; padding: 0 0 24px; }
  .rel__lead { margin-top: 24px; }
  .feat { min-height: 0; opacity: 1; padding: 36px 0; }
  .values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vcard:nth-child(n) { margin-top: 0; }
  .vcard:nth-child(2n) { margin-top: 36px; }
  .about__photo { position: static; max-width: 520px; }
  .faq__left { position: static; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  /* No horizontal carousel on touch: the cards become a plain grid you scroll past */
  .services__pin { min-height: 0; padding: 0 0 4px; overflow: visible; display: block; }
  .services__viewport { overflow: visible; }
  .services__track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: auto; will-change: auto; transform: none !important; }
  .card { width: auto; min-height: 0; padding: 22px 22px 24px; border: 1px solid var(--line-dark); border-radius: 14px; background: var(--ink-3); }
  .card:last-child { border-right: 1px solid var(--line-dark); }
  .card__text { min-height: 0; }
  .card__photo { height: auto; aspect-ratio: 16 / 10; }
  .card--feature .card__photo { height: auto; aspect-ratio: 16 / 10; }
  .services__progress { display: none; }
}
@media (max-width: 700px) {
  .depth { top: 12px; padding: 5px 12px; }
  .depth__val { font-size: 11px; }
  .depth__track { width: 54px; }
  .h2 { font-size: clamp(30px, 7.4vw, 80px); }
  .anatomy { height: 300vh; }
  .about__photo img { aspect-ratio: 4 / 3; }
  .footer__giant { font-size: 14.5vw; }
  .shot figcaption { display: none; }
  .values__tint { background: linear-gradient(to bottom, rgba(5, 6, 8, .5), rgba(5, 6, 8, .72) 55%, rgba(5, 6, 8, .9)); }
  .tone-soft { color: rgba(255, 255, 255, .62); }
  .marquee__track li { width: 152px; height: 96px; padding: 18px 20px; }
  .marquee__track img { height: 42px; opacity: .85; }
  .alabel__box { max-width: 42vw; }
  .alabel__box span { display: none; }
  .alabel__box b { background: rgba(255, 255, 255, .88); padding: 2px 6px; border-radius: 4px; }
  .alabel__box { top: -8px; }
  .alabel__line { width: 22px; }
  .alabel--r .alabel__box { left: 32px; }
  .alabel--l .alabel__box { right: 32px; }
  .anatomy__lead { font-size: 14px; }
  .loader__stage { grid-template-columns: 1fr; align-content: center; }
  .loader__list { display: none; }
  .hero { height: 200vh; }
  .hero__shade { background: linear-gradient(to top, rgba(5, 6, 8, .92) 0%, rgba(5, 6, 8, .6) 40%, rgba(5, 6, 8, 0) 70%); }
  .hero__corner { display: none; }
  .hero__scroll { display: none; }
  .hero__title { font-size: 8.8vw; margin-bottom: 18px; }
  .hero__foot { gap: 22px; }
  .hero__foot .lead { font-size: 15px; }
  .hero__ctas { width: 100%; flex-wrap: nowrap; }
  .hero__ctas .btn { flex: 1 1 0; padding: 0 10px; height: 44px; }
  .contact__title { font-size: 8.4vw; }
  .gallery__row .shot:first-child { margin-left: 12vw; }
  .shot--tall { width: 62vw; }
  .shot--wide { width: 84vw; }
  .values__grid { grid-template-columns: 1fr; }
  .vcard:nth-child(n) { margin-top: 0; min-height: 0; }
  .vcard h3 { padding-top: 24px; }
  .form__row, .contact__dl { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .services__track { grid-template-columns: 1fr; gap: 12px; }
  .card__photo, .card--feature .card__photo { aspect-ratio: 16 / 9; }
  .drawer { width: 100vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .marquee__track li[aria-hidden="true"] { display: none; }
}
