/* ============================================================
   VEYRON CO — veyron-website
   Original visual system. Dark, editorial, technical, restrained.
   Design discipline referenced from the provided research
   (pure black canvas, 0px radius, hairline structure, color rationing)
   — layouts, type and composition are VEYRON's own.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Canvas + ink */
  --bg:            #000000;
  --surface:       #0B0B0C;   /* used sparingly */
  --text:          #FFFFFF;
  --text-dim:      #A0A0A0;
  --line:          #484848;   /* structural lines */
  --line-soft:     rgba(255, 255, 255, 0.10);

  /* Accent — "Veyron Blue", sampled from the studio's own hero asset.
     Rationed to ~5% of the surface: the CARE mark, focus rings,
     link underlines, one hairline in the hero. Never a fill field. */
  --accent:        #2E4BF5;
  --accent-quiet:  #7C93FF;   /* accent used as text (AA on black) */

  /* Type */
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-text:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(2.35rem, 0.9rem + 6.4vw, 7rem);
  --fs-h2:      clamp(1.9rem, 1.1rem + 3.4vw, 3.85rem);
  --fs-h3:      clamp(1.35rem, 1.05rem + 1.4vw, 2.15rem);
  --fs-lead:    clamp(1.02rem, 0.95rem + 0.5vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-label:   0.72rem;

  --lh-tight:  1.04;
  --lh-head:   1.1;
  --lh-body:   1.62;

  --track-display: -0.022em;
  --track-head:    -0.015em;
  --track-label:   0.24em;

  /* Space — 8px base */
  --gutter:      clamp(20px, 5vw, 84px);
  --section-y:   clamp(84px, 11vw, 176px);
  --maxw:        1560px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.7s;

  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

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

/* ---------- Layout helpers ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.rule { height: 1px; background: var(--line); border: 0; width: 100%; }
.rule--soft { background: var(--line-soft); }

.label {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-dim);
}
.label .idx { color: var(--text); }

/* Section header: label sits in a left rail, offset composition */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(44px, 7vw, 104px);
}
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 200px minmax(0, 1fr); align-items: start; }
  .sec-head .label { padding-top: 0.6rem; }
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-head);
  letter-spacing: var(--track-head);
  max-width: 20ch;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: transform 0.45s var(--ease), background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav[data-scrolled="true"] {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
}
.nav[data-hidden="true"] { transform: translateY(-100%); }

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img.brand__mark { height: 22px; width: auto; }
.brand img.brand__word { height: 11px; width: auto; margin-top: 2px; }

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-block: 6px;
  position: relative;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: none;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 12px 20px;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.nav__cta:hover { border-color: var(--text); background: var(--text); color: #000; }

/* Hamburger */
.nav__toggle {
  --b: 22px;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-right: -10px;
}
.nav__toggle span {
  display: block;
  width: var(--b);
  height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
  .nav__toggle { display: none; }
}

/* Mobile menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: calc(var(--nav-h) + 6vh) var(--gutter) 8vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .menu { opacity: 1; visibility: visible; transform: none; }
.menu__links { display: flex; flex-direction: column; gap: clamp(4px, 2vw, 14px); }
.menu__links a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  letter-spacing: var(--track-head);
  line-height: 1.16;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.menu__links a .n {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 400;
}
.menu__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.menu__foot a { color: var(--text); }

/* ============================================================
   Buttons / links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 26px;
  border: 1px solid var(--text);
  color: var(--text);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  min-height: 44px;
}
.btn .arw { transition: transform 0.35s var(--ease); }
.btn:hover { background: var(--text); color: #000; }
.btn:hover .arw { transform: translateX(4px); }
.btn--solid { background: var(--text); color: #000; }
.btn--solid:hover { background: transparent; color: var(--text); }
.btn--ghost { border-color: var(--line); color: var(--text-dim); }
.btn--ghost:hover { border-color: var(--text); background: transparent; color: var(--text); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.35s var(--ease), color 0.3s ease;
}
.textlink .arw { transition: transform 0.35s var(--ease); }
.textlink:hover { border-bottom-color: var(--accent); }
.textlink:hover .arw { transform: translateX(4px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.74) contrast(1.08) saturate(0.9);
}
/* Scrim protects type across the whole composition without hiding the footage */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(140% 100% at 74% 30%, rgba(46,75,245,0.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.30) 22%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.90) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.28) 46%, rgba(0,0,0,0.06) 82%),
    rgba(0,0,0,0.14);
}

/* ---- Editorial composition grid ---- */
.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--nav-h) + clamp(24px, 5vh, 64px)) var(--gutter) clamp(96px, 16vh, 168px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: clamp(28px, 5vh, 64px);
}

.hero__eyebrow {
  align-self: start;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
}
.hero__eyebrow .tick { width: 26px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* ---- Staggered headline ---- */
.hero__headline {
  align-self: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.7rem, 1rem + 7vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
.hl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.hl > span { display: block; }
.hl--2 { margin-left: clamp(40px, 17vw, 320px); }
.hl--3 { margin-left: clamp(12px, 5vw, 96px); }

/* Masked line reveal for the headline (overrides the generic .reveal fade) */
.hl.reveal { opacity: 1; transform: none; }
.hl.reveal > span {
  transform: translateY(108%);
  transition: transform 0.95s var(--ease);
  transition-delay: var(--d, 0s);
}
.hl.reveal.in > span { transform: translateY(0); }

/* ---- Foot: supporting copy + CTA as an editorial colophon ---- */
.hero__foot {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: end;
}
.hero__sub {
  max-width: 42ch;
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.hero__cta .btn { min-width: 220px; justify-content: center; }

@media (min-width: 860px) {
  .hero__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(32px, 6vw, 96px);
  }
  .hero__cta { padding-bottom: 4px; }
}

/* Tablet — pull the stagger in, keep the headline commanding */
@media (min-width: 620px) and (max-width: 1023px) {
  .hero__headline { font-size: clamp(3rem, 0.4rem + 7vw, 5.4rem); }
  .hl--2 { margin-left: clamp(48px, 14vw, 150px); }
  .hl--3 { margin-left: clamp(16px, 4vw, 56px); }
}

/* Mobile — recomposed: headline near the top, foot anchored low */
@media (max-width: 619px) {
  .hero__grid {
    padding: calc(var(--nav-h) + 16px) var(--gutter) clamp(74px, 12vh, 112px);
    row-gap: clamp(14px, 2.6vh, 28px);
  }
  .hero__headline {
    align-self: start;
    margin-top: clamp(12px, 4vh, 44px);
    font-size: clamp(2.45rem, 0.9rem + 8.2vw, 3.9rem);
    line-height: 1.05;
  }
  .hl--2 { margin-left: 8vw; }
  .hl--3 { margin-left: 0; }
  .hero__sub { font-size: 1rem; max-width: 40ch; }
  .hero__cta .btn { width: 100%; }
}

/* ---- Scroll control — centered, clickable ---- */
.hero__scroll {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: max-content;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(14px, 3.2vh, 32px));
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-chev {
  width: 9px; height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  animation: hero-bob 2.6s var(--ease) infinite;
}
@keyframes hero-bob {
  0%, 100% { transform: rotate(45deg) translateY(-1px); opacity: 0.55; }
  50%      { transform: rotate(45deg) translateY(3px);  opacity: 1; }
}

/* ============================================================
   What we do — typographic service list
   ============================================================ */
.manifesto {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  line-height: 1.34;
  letter-spacing: var(--track-head);
  max-width: 34ch;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.manifesto b { font-weight: 400; color: var(--text); }
.manifesto .dim { color: var(--text-dim); }

.services { border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  padding-block: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}
.service__n {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.service__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 1.1rem + 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: var(--track-head);
}
.service__desc {
  color: var(--text-dim);
  max-width: 40ch;
  font-size: 0.98rem;
  transition: color 0.4s var(--ease);
}
.service__name { transition: color 0.4s var(--ease); }
.service::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: width 0.4s var(--ease);
}
@media (min-width: 860px) {
  .service {
    grid-template-columns: 64px minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: baseline;
  }
  .service:hover { padding-left: 30px; }
  .service:hover::before { width: 18px; }
  .service:hover .service__desc { color: #cfcfcf; }
  .service:hover .service__n { color: var(--accent-quiet); }
}
.method {
  margin-top: clamp(40px, 6vw, 80px);
  color: var(--text-dim);
  max-width: 52ch;
  font-size: 0.98rem;
}

/* ============================================================
   Cinematic media band — full-bleed section media
   ============================================================ */
.mediaband {
  position: relative;
  width: 100%;
  margin: clamp(56px, 8vw, 128px) 0;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: #050506;
  border-block: 1px solid var(--line-soft);
  isolation: isolate;
}
.mediaband > video,
.mediaband > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.14) contrast(1.06) saturate(0.95);
}
.mediaband::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 130% at 12% 50%, rgba(46, 75, 245, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.08) 28%, rgba(0,0,0,0.08) 72%, rgba(0,0,0,0.5));
}
.mediaband__cap {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mediaband__cap .tick { width: 20px; height: 1px; background: var(--accent); }

.mediaband--offer { aspect-ratio: 16 / 7.4; }

@media (max-width: 720px) {
  .mediaband { aspect-ratio: 4 / 3; margin: clamp(40px, 11vw, 72px) 0; }
  .mediaband--offer { aspect-ratio: 4 / 3; }
}

/* Reveal: fade the band, slow-scale the media inside it */
.mediaband.reveal { transform: none; }
.mediaband.reveal > video,
.mediaband.reveal > img {
  transform: scale(1.07);
  transition: transform 1.7s var(--ease);
}
.mediaband.reveal.in > video,
.mediaband.reveal.in > img { transform: scale(1); }

/* Subtle tonal lift for one section, so black gains dimension */
.section--tone {
  background: linear-gradient(180deg, #0A0A0C 0%, #000 42%);
}

/* ============================================================
   Your website — the offer
   ============================================================ */
.offer__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  line-height: 1.34;
  letter-spacing: var(--track-head);
  max-width: 30ch;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.offer__lead .dim { color: var(--text-dim); }

.spec { border-top: 1px solid var(--line); }
.spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
  padding-block: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--line);
}
.spec__n {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.spec__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.spec__desc { color: var(--text-dim); font-size: 0.98rem; max-width: 44ch; }
@media (min-width: 720px) {
  .spec__row {
    grid-template-columns: 52px minmax(11.5rem, 13rem) minmax(0, 1fr);
    align-items: baseline;
    column-gap: 28px;
    row-gap: 0;
  }
}
.offer__actions { margin-top: clamp(36px, 5vw, 60px); }

/* ============================================================
   VEYRON CARE
   ============================================================ */
.care { position: relative; overflow: hidden; }
.care__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.care__bg img,
.care__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.05) saturate(0.9); }
.care__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 20% 45%, rgba(46,75,245,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.66) 72%, rgba(0,0,0,0.9) 100%);
}
.care__inner { position: relative; z-index: 1; }
.care__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 900px) {
  .care__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; }
}
.care__logo { height: clamp(64px, 12vw, 104px); width: auto; margin-bottom: clamp(28px, 4vw, 44px); }
.care h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: var(--track-head);
}
.care__price {
  margin-top: clamp(22px, 3vw, 32px);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.4rem);
  letter-spacing: 0.01em;
}
.care__price span { color: var(--text-dim); font-size: 0.5em; letter-spacing: 0.16em; text-transform: uppercase; }
.care__desc { margin-top: 20px; color: var(--text-dim); max-width: 42ch; }
.care__actions { margin-top: clamp(30px, 4vw, 44px); }

.care__incl { border-top: 1px solid var(--line); }
.care__incl li {
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
  letter-spacing: var(--track-head);
  display: flex;
  align-items: center;
  gap: 16px;
}
.care__incl li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   Contact
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: brightness(1.14) contrast(1.05) saturate(0.92); }
.contact { padding-block: clamp(84px, 11vw, 176px) clamp(72px, 9vw, 128px); }
.contact__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 90% at 82% 62%, rgba(46,75,245,0.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0.70) 100%);
}
.contact__inner { position: relative; z-index: 1; }
.contact h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.2rem + 3.8vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: var(--track-head);
  max-width: 17ch;
}
.contact h2 .dim { color: #d4d4d4; }
.contact__row {
  margin-top: clamp(36px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}
.contact__email {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 0.9rem + 1.4vw, 1.9rem);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: border-color 0.35s var(--ease);
}
.contact__email:hover { border-bottom-color: var(--accent); }
.contact__hint { margin-top: 28px; color: var(--text-dim); max-width: 44ch; font-size: 0.96rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 84px); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
}
@media (min-width: 780px) {
  .footer__top { grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
}
.footer__brand img { height: 13px; width: auto; }
.footer__brand p { margin-top: 16px; color: var(--text-dim); font-size: 0.9rem; max-width: 32ch; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer__col h3 {
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 14px;
}
.footer__col a { display: block; font-size: 0.92rem; padding-block: 5px; color: var(--text); transition: color 0.3s ease; }
.footer__col a:hover { color: var(--accent-quiet); }
.footer__bottom {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.footer__bottom a { color: var(--text-dim); }
.footer__bottom a:hover { color: var(--text); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hl.reveal > span { transform: none !important; }
  .hero__scroll-chev { animation: none; }
  .mediaband > video, .mediaband > img { transform: none !important; }
}

/* Skip link */
.skip {
  position: absolute;
  left: 12px; top: -60px;
  background: #fff; color: #000;
  padding: 10px 16px;
  z-index: 200;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip:focus { top: 12px; }

/* No-JS: never hide content */
.no-js .reveal { opacity: 1; transform: none; }
