/* ============================================================
   HEIGHTS DIGITAL MARKETING — Dark Editorial / Brutalist Cinema
   Gold budget: EXACTLY three uses site-wide —
   (1) the hero word MARKETING, (2) the word UNFORGETTABLE.,
   (3) the lead-form submit button. Do not introduce gold
   anywhere else. (Error states use a functional brick tone,
   which is a state color, not part of the palette.)
   ============================================================ */

:root {
  --black: #060606;
  --ink: #0a0a0a;
  --bone: #f2eee5;
  --bone-70: rgba(242, 238, 229, 0.7);
  --bone-45: rgba(242, 238, 229, 0.45);
  --bone-14: rgba(242, 238, 229, 0.14);
  --gold: #d4a937;
  /* deeper gold for display type on the bone hero — #d4a937 washes out
     on light ground; this keeps >=3:1 contrast at display sizes */
  --gold-deep: #a87614;
  --error: #c25a44;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;

  --pad-x: clamp(20px, 5vw, 80px);
  --ease-hard: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button { cursor: none; }

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

:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: var(--pad-x);
  top: -60px;
  z-index: 200;
  background: var(--bone);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 0; }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- cursor (bone — gold is reserved) ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--bone);
  mix-blend-mode: difference;
  transform: translate(-100px, -100px);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid var(--bone);
  mix-blend-mode: difference;
  transform: translate(-100px, -100px);
  transition: width 0.25s var(--ease-hard), height 0.25s var(--ease-hard);
}
body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor.cursor-hot .cursor-ring { width: 64px; height: 64px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.5vw, 32px) var(--pad-x);
  mix-blend-mode: difference;
  color: var(--bone);
}
.nav a { color: inherit; text-decoration: none; }
.nav__mark {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.nav__tld { opacity: 0.55; }
.nav__links {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-hard);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================================
   HERO — scroll-scrubbed ink bloom
   ============================================================ */
.hero {
  position: relative;
  height: 320vh;
  background: var(--bone);
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__video.is-ready { opacity: 1; }

/* CSS ink placeholder shown until (or instead of) the video */
.hero__blob {
  position: absolute;
  inset: 0;
  background: var(--bone);
  overflow: hidden;
}
.hero__blob::before,
.hero__blob::after {
  content: "";
  position: absolute;
  background: var(--black);
  filter: blur(34px);
  opacity: 0.9;
}
.hero__blob::before {
  width: 44vmax;
  height: 40vmax;
  left: 8%;
  top: 12%;
  border-radius: 52% 48% 61% 39% / 44% 59% 41% 56%;
  animation: blob-a 16s ease-in-out infinite alternate;
}
.hero__blob::after {
  width: 30vmax;
  height: 34vmax;
  right: 4%;
  bottom: 4%;
  opacity: 0.75;
  border-radius: 39% 61% 47% 53% / 61% 38% 62% 39%;
  animation: blob-b 13s ease-in-out infinite alternate;
}
@keyframes blob-a {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); border-radius: 52% 48% 61% 39% / 44% 59% 41% 56%; }
  50%  { border-radius: 38% 62% 43% 57% / 58% 42% 58% 42%; }
  100% { transform: translate(6vw, -4vh) rotate(24deg) scale(1.18); border-radius: 60% 40% 51% 49% / 39% 64% 36% 61%; }
}
@keyframes blob-b {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(-7vw, -6vh) rotate(-30deg) scale(1.25); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  color: var(--black);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 15.2vw, 300px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-weight: 400;
}
/* tiny clip headroom: Anton's caps fill the 0.88 line box exactly */
.hero__mask { display: block; overflow: hidden; padding-block: 0.03em; margin-block: -0.03em; }
.hero__line {
  display: block;
  transform: translateY(108%);
  animation: line-rise 0.7s var(--ease-hard) forwards;
}
.hero__mask:nth-child(1) .hero__line { animation-delay: 0.15s; }
.hero__mask:nth-child(2) .hero__line { animation-delay: 0.3s; }
.hero__mask:nth-child(3) .hero__line { animation-delay: 0.45s; }
@keyframes line-rise { to { transform: translateY(0); } }
/* gold use 1 of 3 */
.hero__line--gold { color: var(--gold-deep); }
.hero__tag {
  margin-top: clamp(20px, 3vh, 44px);
  font-style: italic;
  font-size: clamp(17px, 2vw, 27px);
  min-height: 1.6em;
}
.caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: currentColor;
  animation: caret-blink 1s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.hero__meta {
  position: absolute;
  z-index: 2;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: clamp(22px, 4vh, 44px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--black);
}
.hero__scrollcue { display: inline-flex; align-items: center; gap: 12px; }
.hero__scrollcue i {
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: cue 2.2s var(--ease-hard) infinite;
}
@keyframes cue {
  0% { transform: scaleX(0); }
  55% { transform: scaleX(1); transform-origin: left; }
  56% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ============================================================
   KINETIC MANIFESTO — one word per scroll step
   ============================================================ */
.kinetic {
  position: relative;
  height: 400vh;
  background: var(--black);
}
.kinetic__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kinetic__sticky.is-shaking { animation: shake 0.26s linear; }
@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-7px, 5px); }
  40% { transform: translate(6px, -4px); }
  60% { transform: translate(-4px, -5px); }
  80% { transform: translate(3px, 4px); }
  100% { transform: translate(0, 0); }
}
.kinetic__lead {
  position: absolute;
  top: clamp(90px, 14vh, 140px);
  left: 0;
  right: 0;
  text-align: center;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--bone-70);
}
.kinetic__stage {
  position: relative;
  width: 100%;
  text-align: center;
}
.kword {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--font-display);
  color: var(--bone);
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, filter;
}
.kword--1 { font-size: clamp(96px, 26vw, 470px); }
.kword--2 { font-size: clamp(64px, 16.5vw, 300px); }
.kword--3 { font-size: clamp(38px, 9.7vw, 178px); }
/* gold use 2 of 3 */
.kword--gold { color: var(--gold); }
.kword.is-active {
  visibility: visible;
  animation: slam 0.5s var(--ease-hard) forwards;
}
@keyframes slam {
  0%   { opacity: 0; transform: scale(2.3); filter: blur(16px); }
  55%  { opacity: 1; transform: scale(0.965); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}
.kinetic__ticks {
  position: absolute;
  bottom: clamp(28px, 6vh, 64px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}
.kinetic__ticks i {
  width: 34px;
  height: 2px;
  background: var(--bone-14);
  transition: background 0.3s ease;
}
.kinetic__ticks i.is-on { background: var(--bone); }

.kinetic__static { display: none; }

/* ============================================================
   SELECTED WORK
   ============================================================ */
.work {
  position: relative;
  background: var(--black);
  padding: clamp(90px, 16vh, 190px) var(--pad-x);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 20px;
  margin-bottom: clamp(44px, 8vh, 96px);
}
.section-head__label,
.section-head__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--bone-45);
}
.section-head__count { text-align: right; }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 150px);
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 28px);
}
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--bone-14);
  display: flex;
  align-items: flex-end;
}
/* at rest: a dimmed grayscale film frame (each tile seeded to a
   different moment of the reel by JS); hover wakes it to color */
.tile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(1) brightness(0.85);
  transition: opacity 0.55s ease, filter 0.55s ease;
}
/* four distinct crops of the same showreel clip */
.tile__video--a { object-position: 12% 28%; transform: scale(1.65); transform-origin: 12% 28%; }
.tile__video--b { object-position: 86% 22%; transform: scale(1.85); transform-origin: 86% 22%; }
.tile__video--c { object-position: 28% 76%; transform: scale(1.72); transform-origin: 28% 76%; }
.tile__video--d { object-position: 64% 58%; transform: scale(1.5); transform-origin: 64% 58%; }

.tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.05) 0%, rgba(6, 6, 6, 0.45) 55%, rgba(6, 6, 6, 0.94) 100%);
}
.tile:hover .tile__video.can-play,
.tile:focus-visible .tile__video.can-play,
.tile.is-revealed .tile__video.can-play {
  opacity: 1;
  filter: none;
}

.tile__body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 44px);
  transition: transform 0.45s var(--ease-hard);
}
.tile:hover .tile__body,
.tile:focus-visible .tile__body { transform: translateX(10px); }
.tile__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--bone-45);
}
.tile__name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 84px);
  font-weight: 400;
  line-height: 1;
  margin-top: 8px;
}
.tile__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-45);
  margin-top: 10px;
}
.tile__result {
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--bone-70);
  margin-top: 10px;
  max-width: 44ch;
}

/* ============================================================
   SERVICES — editorial two-column
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: minmax(300px, 4fr) 7fr;
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(90px, 16vh, 190px) var(--pad-x);
  background: var(--black);
  border-top: 1px solid var(--bone-14);
}
.services__intro { align-self: start; position: sticky; top: 18vh; }
.services__statement {
  font-size: clamp(42px, 4.6vw, 84px);
  line-height: 1.02;
  margin-top: 26px;
  font-weight: 500;
}
.services__statement em { font-style: italic; }
.services__note {
  margin-top: 26px;
  max-width: 34ch;
  color: var(--bone-70);
  font-size: clamp(16px, 1.5vw, 20px);
}
.services__list { list-style: none; }
.service {
  display: grid;
  grid-template-columns: clamp(44px, 5vw, 84px) 1fr;
  align-items: baseline;
  padding: clamp(22px, 3.4vh, 40px) 0;
  border-top: 1px solid var(--bone-14);
  transition: background 0.3s ease;
}
.service:last-child { border-bottom: 1px solid var(--bone-14); }
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone-45);
}
.service__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 64px);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.4s var(--ease-hard);
}
.service:hover .service__name { transform: translateX(12px); }
.service__desc {
  grid-column: 2;
  font-style: italic;
  color: var(--bone-70);
  margin-top: 10px;
  font-size: clamp(15px, 1.5vw, 20px);
}

/* ============================================================
   THE PEOPLE — over the night-studio clip
   ============================================================ */
.people {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.people__media { position: absolute; inset: 0; }
.people__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.people__video.is-ready { opacity: 1; }
.people__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, rgba(6, 6, 6, 0) 22%, rgba(6, 6, 6, 0) 62%, var(--black) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.15) 60%);
}
.people__content {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 18vh, 220px) var(--pad-x);
  max-width: 1100px;
}
.people__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 180px);
  font-weight: 400;
  line-height: 0.9;
  margin-top: 22px;
}
.people__body {
  margin-top: 30px;
  max-width: 46ch;
  font-size: clamp(17px, 1.8vw, 24px);
  color: var(--bone-70);
}
.people__roster {
  list-style: none;
  margin-top: clamp(40px, 7vh, 80px);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 420px));
  gap: 0 clamp(30px, 4vw, 70px);
}
.people__roster li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--bone-14);
}
.people__name { font-weight: 500; font-size: clamp(17px, 1.7vw, 23px); }
.people__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-45);
  text-align: right;
}

/* ============================================================
   MARQUEE — gliding services ticker
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--bone-14);
  padding: clamp(18px, 3vh, 30px) 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-glide 42s linear infinite;
}
.marquee__group {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--bone);
}
@keyframes marquee-glide {
  to { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(110px, 20vh, 240px) var(--pad-x) clamp(36px, 6vh, 64px);
  background: var(--black);
  border-top: 1px solid var(--bone-14);
}
.footer__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 210px);
  font-weight: 400;
  line-height: 0.92;
}
.footer__sub {
  margin-top: 24px;
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 24px);
  color: var(--bone-70);
  max-width: 50ch;
}

/* ---------- lead form ---------- */
.lead-form {
  margin-top: clamp(44px, 8vh, 92px);
  max-width: 940px;
  position: relative;
}
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vh, 46px) clamp(28px, 4vw, 64px);
}
.field { display: flex; flex-direction: column; gap: 12px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--bone-45);
}
.field input,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--bone-14);
  border-radius: 0;
  color: var(--bone);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 24px);
  padding: 4px 0 12px;
  transition: border-color 0.3s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--bone);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: inherit;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23f2eee5' stroke-opacity='.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.field select option { color: var(--black); background: var(--bone); }
.lead-form.was-submitted input:invalid,
.lead-form.was-submitted select:invalid { border-bottom-color: var(--error); }
.lead-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
/* gold use 3 of 3 — the one action on the page */
.lead-form__submit {
  margin-top: clamp(34px, 6vh, 60px);
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 27px);
  letter-spacing: 0.06em;
  padding: 20px 46px;
  transition: background 0.3s ease;
}
.lead-form__submit:hover,
.lead-form__submit:focus-visible { background: var(--bone); }
.lead-form__submit:disabled { opacity: 0.55; }
.lead-form__note {
  margin-top: 18px;
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--bone-45);
}
.lead-form__error {
  margin-top: 18px;
  font-style: italic;
  color: var(--error);
}
.lead-form__success {
  margin-top: 28px;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--bone);
}

.footer__mail {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone-45);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__mail:hover,
.footer__mail:focus-visible { color: var(--bone); }
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: clamp(70px, 13vh, 160px);
  padding-top: 26px;
  border-top: 1px solid var(--bone-14);
}
.footer__socials {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}
.footer__socials a,
.footer__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone-45);
  text-decoration: none;
}
.footer__socials a { transition: color 0.3s ease; }
.footer__socials a:hover,
.footer__socials a:focus-visible { color: var(--bone); }

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-hard);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .work__grid { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 3.4; }
  .services { grid-template-columns: 1fr; }
  .services__intro { position: static; }
  .people__roster { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; text-align: left; }
  .section-head__title { text-align: left; }
  .section-head__count { text-align: left; }
  .hero__disciplines { display: none; }
  .lead-form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav__mark { font-size: 12px; }
  .nav__links { gap: 14px; font-size: 10px; letter-spacing: 0.14em; }
}

/* ============================================================
   REDUCED MOTION — static, honest, complete
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { height: 100vh; }
  .hero__blob::before,
  .hero__blob::after,
  .hero__scrollcue i,
  .caret { animation: none; }
  .caret { display: none; }
  .hero__video, .people__video { display: none; }
  .kinetic { height: auto; }
  .kinetic__sticky { display: none; }
  .kinetic__static {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
    padding: 16vh var(--pad-x);
  }
  .kinetic__static span {
    font-family: var(--font-display);
    font-size: clamp(44px, 11vw, 190px);
    line-height: 1;
  }
  .cursor-dot, .cursor-ring { display: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tile__video { transition: none; }
  .tile__body, .service__name { transition: none; }
  .hero__line { animation: none; transform: none; }
  .marquee__track { animation: none; }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  /* touch heroes autoplay-loop instead of scroll-scrubbing, so the tall
     scrub runway isn't needed — keep the pinned moment brief */
  .hero { height: 150vh; }
}
