/* ════════════════════════════════════════════════════════════
   TRANSVENOM LLC — site styles
   Palette: black / white / charcoal / light gray, red accent (map pin only)
   ════════════════════════════════════════════════════════════ */

:root {
  --black: #0b0b0c;
  --ink: #141517;
  --charcoal: #1c1d1f;
  --graphite: #2b2c2e;
  --steel: #6d6e70;
  --silver: #a8a9ab;
  --mist: #e6e6e4;
  --paper: #f3f3f1;
  --white: #ffffff;
  --red: #d42b21;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;

  --nav-h: 76px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--black); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.on-dark :focus-visible, .site-footer :focus-visible, .hero :focus-visible {
  outline-color: var(--white);
}

/* ── Type roles ─────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.98;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--graphite);
  max-width: 62ch;
}
.on-dark .lede,
.section--dark .lede,
.page-hero .lede { color: #c9cacc; }

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}

.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: var(--graphite); border-color: var(--graphite); }

.btn--ghost { background: transparent; color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); }

.btn--inverse { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--inverse:hover { background: var(--mist); border-color: var(--mist); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn--md { padding: 13px 26px; font-size: 13px; }
.btn--lg { padding: 18px 42px; font-size: 15px; }
.btn--xl { padding: 22px 56px; font-size: 17px; }

.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ── Navigation ─────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--mist);
  box-shadow: 0 1px 24px rgba(11,11,12,.06);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand-logo {
  height: 58px;
  width: auto;
}
.brand-logo--light {
  filter: invert(1);
  mix-blend-mode: screen;
  height: 72px;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--graphite);
  border-radius: var(--radius);
  transition: color .15s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: transform .2s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, rgba(8,8,9,.93) 0%, rgba(8,8,9,.82) 38%, rgba(8,8,9,.45) 68%, rgba(8,8,9,.18) 100%),
    linear-gradient(0deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,0) 30%),
    url("../assets/hero.jpg");
  background-size: cover;
  background-position: center right;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) var(--pad) 120px;
}
.hero::after {
  /* chrome hairline along the bottom edge */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero .eyebrow { color: #b9babc; }

.hero h1 {
  font-size: clamp(40px, 5.6vw, 84px);
  max-width: 13ch;
  margin-bottom: 30px;
}
.hero h1 .accent-line { display: block; }

.hero .lede {
  margin-bottom: 44px;
  color: #c9cacc;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9ea0;
}

/* ── Chrome / metallic signature ────────────────────────── */

.chrome-text {
  background: linear-gradient(180deg,
    #ffffff 0%, #eef0f2 38%, #b9bcc0 50%, #f4f5f6 62%, #dfe1e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.chrome-line {
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}

.hero-scroll {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ── Sections ───────────────────────────────────────────── */

.section {
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.section--gray { background: var(--paper); }
.section--dark {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.section--dark::before {
  /* chrome top edge */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}
.section--dark .eyebrow { color: var(--silver); }
.section--dark .section-head h2,
.page-hero h1,
.mission h2 {
  background: linear-gradient(180deg,
    #ffffff 0%, #eef0f2 38%, #b9bcc0 50%, #f4f5f6 62%, #dfe1e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 64px);
  max-width: 20ch;
}
.section-head .lede { margin-top: 20px; }

/* ── Highlights (home values grid) ──────────────────────── */

.highlights {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.hl-card {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,11,12,.08);
}
.hl-card--wide { grid-column: span 8; }
.hl-card--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  position: relative;
}
.hl-card--dark::before {
  /* chrome top edge */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}
.hl-card--dark .hl-text { color: var(--silver); }
.hl-card--dark .hl-big {
  background: linear-gradient(180deg,
    #ffffff 0%, #eef0f2 38%, #b9bcc0 50%, #f4f5f6 62%, #dfe1e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hl-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .24em;
  color: var(--steel);
  display: block;
  margin-bottom: 20px;
}
.hl-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.hl-text { font-size: 15.5px; color: var(--graphite); }

.hl-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.01em;
}
.hl-big sup { font-size: .4em; vertical-align: super; }

/* ── Coverage map ───────────────────────────────────────── */

.coverage { position: relative; }
.coverage-map-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1060px;
}
#coverage-map { width: 100%; height: auto; display: block; }

.map-dot { fill: #4c4d51; }
.map-route {
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1.2;
}
.map-route-pulse {
  fill: none;
  stroke: rgba(255,255,255,.85);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: .08 .92;
  animation: route-run 5.5s linear infinite;
}
@keyframes route-run {
  from { stroke-dashoffset: 1; }
  to   { stroke-dashoffset: 0; }
}
.map-pin-core { fill: var(--red); }
.map-pin-ring {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.4;
  animation: pin-pulse 2.6s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes pin-pulse {
  0%   { transform: scale(.4); opacity: .9; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
.map-hub-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  fill: var(--white);
}
.map-hub-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  fill: var(--silver);
}

.coverage-facts {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}
.coverage-facts li {
  border-top: 1px solid var(--graphite);
  padding-top: 18px;
  font-size: 15px;
  color: var(--mist);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.coverage-facts .tick {
  font-family: var(--font-mono);
  color: var(--white);
  flex: none;
}

/* ── CTA band ───────────────────────────────────────────── */

.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(34px, 5vw, 72px);
  max-width: 18ch;
  margin: 0 auto 18px;
}
.cta-band .lede { margin: 0 auto 40px; }

/* ── About page ─────────────────────────────────────────── */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story-aside { position: sticky; top: calc(var(--nav-h) + 40px); }
.story-aside h1, .story-aside h2 { font-size: clamp(38px, 4.6vw, 68px); }

.story-lines { list-style: none; }
.story-lines li {
  border-top: 1px solid var(--mist);
  padding: 22px 0;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--graphite);
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: baseline;
}
.story-lines li:last-child { border-bottom: 1px solid var(--mist); }
.story-lines .mk {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--steel);
  text-transform: uppercase;
}
.story-lines strong { color: var(--black); font-weight: 700; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.offer-item {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 26px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-item .mk {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  color: var(--steel);
}

.mission {
  text-align: center;
}
.mission h2 {
  font-size: clamp(30px, 4vw, 58px);
  max-width: 22ch;
  margin: 0 auto 22px;
}
.mission p {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--silver);
  max-width: 50ch;
  margin: 0 auto;
}

.transparency-list {
  list-style: none;
  max-width: 820px;
}
.transparency-list li {
  border-top: 1px solid var(--mist);
  padding: 20px 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.transparency-list li:last-child { border-bottom: 1px solid var(--mist); }
.transparency-list .no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  flex: none;
  width: 84px;
}

/* ── Trailers ───────────────────────────────────────────── */

.trailer-card {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 0;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 28px;
}
.trailer-card:nth-child(even) .trailer-visual { order: 2; }

.trailer-visual {
  background: var(--charcoal);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.trailer-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.trailer-card:hover .trailer-visual img { transform: scale(1.04); }

.trailer-spec {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mist);
  background: linear-gradient(180deg, transparent, rgba(8,8,9,.85));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.trailer-spec::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}

.trailer-visual .badge {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
}
.trailer-visual .badge--soon { background: var(--red); }

.trailer-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trailer-body h2 {
  font-size: clamp(28px, 3vw, 44px);
}
.trailer-body .desc { color: var(--graphite); font-size: 16.5px; }

.freight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.freight-tags li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--mist);
  color: var(--graphite);
  padding: 7px 12px;
  border-radius: var(--radius);
  background: var(--paper);
}

.trailer-more { margin-top: auto; }

.trailer-extra {
  display: none;
  color: var(--graphite);
  font-size: 15.5px;
  border-left: 2px solid var(--black);
  padding-left: 18px;
}
.trailer-card.is-open .trailer-extra { display: block; }

/* ── Contact ────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(30px, 3.4vw, 48px);
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.contact-rows { list-style: none; margin-top: 30px; }
.contact-rows li {
  border-top: 1px solid var(--graphite);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  font-size: 15px;
  align-items: baseline;
}
.contact-rows .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact-rows a { border-bottom: 1px solid var(--graphite); transition: border-color .15s; }
.contact-rows a:hover { border-color: var(--white); }

/* ── Forms ──────────────────────────────────────────────── */

.form-panel {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 52px);
}

.form-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--mist);
  padding-bottom: 12px;
  margin: 36px 0 22px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-title .mk {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--steel);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 7px;
}
.field label .req { color: var(--red); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color .15s ease, background .15s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%232b2c2e'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.choice {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--mist);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s ease;
  text-align: center;
}
.choice:hover span { border-color: var(--silver); }
.choice input:checked + span {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.choice input:focus-visible + span {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.form-submit { margin-top: 36px; }

.form-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--steel);
  margin-top: 16px;
  letter-spacing: .04em;
}

.form-success {
  display: none;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.form-success h2 { font-size: clamp(28px, 3.6vw, 52px); margin-bottom: 18px; }
.form-success p { max-width: 56ch; margin: 0 auto 12px; color: var(--graphite); }
.form-wrap.is-done form { display: none; }
.form-wrap.is-done .form-success { display: block; }

/* ── Recruit band ───────────────────────────────────────── */

.recruit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.recruit h2 { font-size: clamp(30px, 4vw, 58px); margin-bottom: 14px; }
.recruit p { color: var(--silver); max-width: 52ch; }

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(64px, 8vw, 110px) var(--pad) 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c7d80 25%, #f2f2f2 50%, #7c7d80 75%, transparent);
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.footer-brand img {
  width: 210px;
  filter: invert(1);
  mix-blend-mode: screen;
  margin-bottom: 18px;
}
.footer-brand p { color: var(--silver); font-size: 15px; max-width: 30ch; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 15px; }
.footer-col a { color: var(--mist); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-col .muted { color: var(--silver); }

.footer-bottom {
  border-top: 1px solid var(--charcoal);
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--steel);
}
.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: var(--white); }

/* ── Reveal on scroll ───────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ── Page hero (inner pages) ────────────────────────────── */

.page-hero {
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 110px)) var(--pad) clamp(56px, 7vw, 100px);
  background: var(--black);
  color: var(--white);
}
.page-hero .section-inner { max-width: 1440px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 92px); max-width: 14ch; }
.page-hero .lede { margin-top: 24px; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hl-card, .hl-card--wide { grid-column: span 6; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { background-position: center; }
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px var(--pad) 26px;
    border-bottom: 1px solid var(--mist);
    display: none;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav .btn--nav { display: none; }
  .nav.is-open ~ * { pointer-events: none; }

  .story-grid, .contact-grid, .trailer-card { grid-template-columns: 1fr; }
  .trailer-card:nth-child(even) .trailer-visual { order: 0; }
  .story-aside, .contact-card { position: static; }
  .recruit { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hl-card, .hl-card--wide { grid-column: span 12; }
}

@media (max-width: 560px) {
  .offer-grid, .coverage-facts, .footer-grid { grid-template-columns: 1fr; }
  .btn--xl { padding: 18px 36px; font-size: 15px; width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* ── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .map-route-pulse, .map-pin-ring { animation: none; }
  .map-route-pulse { display: none; }
}
