/* =========================================================
   Haseeb's Media — cinematic dark portfolio
   Design tokens first, then components top-to-bottom.
   ========================================================= */

:root {
  /* Surfaces (warm near-black) */
  --bg: #0a0908;
  --bg-elev: #100e0c;
  --surface: #16130f;
  --surface-2: #201b16;

  /* Text */
  --text: #f5f1ea;
  --text-muted: #a9a097;
  --text-faint: #6f675e;

  /* Gold accent */
  --gold: #d8b46a;
  --gold-bright: #ecca85;
  --gold-deep: #a8813a;

  /* Lines */
  --border: rgba(245, 241, 234, 0.10);
  --border-strong: rgba(245, 241, 234, 0.20);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(64px, 9vw, 130px);
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: #0a0908; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
}
.text-gold { color: var(--gold); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-elev); }
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__lead { color: var(--text-muted); margin-top: 16px; font-size: clamp(16px, 1.6vw, 18px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); color: #0a0908; }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; padding-block: 17px; margin-top: 6px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav[data-state="scrolled"] {
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 16px clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; }
.brand__mark { color: var(--gold); flex: none; }
.brand__text { font-weight: 400; }
.brand__text strong { font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) { font-size: 15px; color: var(--text-muted); transition: color .2s var(--ease); position: relative; }
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__links > a:not(.btn):hover::after { width: 100%; }

.nav__toggle { display: none; color: var(--text); padding: 6px; }
.nav__toggle .icon-close { display: none; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100svh; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; justify-content: center;
  padding-bottom: 128px; /* clears the film strip pinned at the bottom */
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
/* "Spotlight" — designed dark stage with a warm gold glow + cinematic vignette */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(66% 55% at 75% 6%, rgba(216,180,106,.22), transparent 58%),
    radial-gradient(50% 45% at 5% 96%, rgba(216,180,106,.07), transparent 70%),
    radial-gradient(125% 125% at 50% 38%, transparent 50%, rgba(0,0,0,.5) 100%),
    linear-gradient(180deg, #120f0b 0%, #0b0a08 62%, var(--bg) 100%);
}

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  text-shadow: 0 1px 18px rgba(10, 9, 8, 0.4); /* keeps text legible over any photo/video */
}

/* Availability pill */
.hero__status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text);
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-strong);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: dotpulse 2.2s ease-out infinite; }
@keyframes dotpulse {
  0% { box-shadow: 0 0 0 0 rgba(216,180,106,.55); }
  70% { box-shadow: 0 0 0 9px rgba(216,180,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,180,106,0); }
}

/* Headline + rotating word */
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 7.6vw, 92px);
  line-height: 1.08; letter-spacing: -0.03em;
}
.hero__line { display: block; }
.hero__rotate { display: block; }
.hero__rotate-mask { display: block; height: 1.12em; overflow: hidden; }
.hero__words { display: flex; flex-direction: column; color: var(--gold); animation: rotatewords 12s cubic-bezier(.76,0,.24,1) infinite; }
.hero__words > span { display: block; height: 1.12em; line-height: 1.12em; }
@keyframes rotatewords {
  0%, 15%   { transform: translateY(0); }
  20%, 35%  { transform: translateY(-20%); }
  40%, 55%  { transform: translateY(-40%); }
  60%, 75%  { transform: translateY(-60%); }
  80%, 100% { transform: translateY(-80%); }
}

.hero__sub { margin-top: 24px; max-width: 48ch; font-size: clamp(16px, 1.7vw, 19px); color: rgba(245, 241, 234, 0.86); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { margin-top: 26px; font-size: 13px; letter-spacing: .04em; color: var(--text-muted); }
.hero__trust strong { color: var(--text); font-weight: 600; }

/* Film strip */
.hero__strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.hero__strip-track { display: flex; gap: 12px; width: max-content; animation: marquee 45s linear infinite; }
.hero__strip:hover .hero__strip-track { animation-play-state: paused; }
.hero__strip img {
  width: 152px; height: 92px; flex: none; object-fit: cover; border-radius: 9px;
  border: 1px solid var(--border); filter: saturate(.8) brightness(.78);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== HERO MOTION ===================== */
/* Cursor-following spotlight: JS translates the wrapper, CSS breathes the glow */
.hero__glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; transform: translate3d(72%, 10%, 0); }
.hero__glow span {
  position: absolute; top: 0; left: 0; width: 900px; height: 900px; margin: -450px 0 0 -450px;
  border-radius: 50%; will-change: transform, opacity;
  background: radial-gradient(closest-side, rgba(216,180,106,.20), rgba(216,180,106,.05) 50%, transparent 72%);
  animation: glowbreathe 10s ease-in-out infinite alternate;
}
@keyframes glowbreathe { from { transform: scale(.9); opacity: .72; } to { transform: scale(1.14); opacity: 1; } }

/* Cinematic staggered entrance (cumulative delay via --i) */
.hero-anim { animation: heroIn .95s var(--ease-expo) both; animation-delay: calc(var(--i, 0) * 95ms); }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* Light-sweep sheen across the rotating gold word */
.hero__rotate-mask { position: relative; }
.hero__rotate-mask::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,248,235,.45) 50%, transparent 62%);
  transform: translateX(-130%); animation: sheen 7s ease-in-out 2.6s infinite;
}
@keyframes sheen { 0% { transform: translateX(-130%); } 16%, 100% { transform: translateX(130%); } }

/* Film grain overlay */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== WORK GRID (masonry) ===================== */
.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter__btn {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.filter__btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter__btn.is-active { color: #0a0908; background: var(--gold); border-color: var(--gold); }

.grid { columns: 3; column-gap: 18px; }
.tile {
  position: relative; break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  cursor: pointer; opacity: 1; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile.is-hidden { display: none; }
.tile img { width: 100%; transition: transform .6s var(--ease), filter .4s var(--ease); filter: saturate(.85) brightness(.92); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,9,8,.85) 100%);
  opacity: .55; transition: opacity .4s var(--ease);
}
.tile:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.tile:hover::after { opacity: 1; }
.tile__meta { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.tile:hover .tile__meta, .tile:focus-within .tile__meta { transform: none; opacity: 1; }
.tile__cat { display: block; font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin-bottom: 3px; }
.tile__title { font-weight: 600; font-size: 17px; }

/* ===================== SERVICES ===================== */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.service:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.service__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(216,180,106,.12); color: var(--gold); margin-bottom: 22px; }
.service__title { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; }
.service__desc { color: var(--text-muted); font-size: 14.5px; margin-top: 10px; }
.service__list { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 9px; }
.service__list li { font-size: 14px; color: var(--text-muted); padding-left: 24px; position: relative; }
.service__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.service__cta { margin-top: auto; font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--gold); display: inline-flex; gap: 6px; transition: gap .2s var(--ease); }
.service__cta:hover { gap: 12px; }

/* ===================== SHOWREEL ===================== */
.reel { position: relative; min-height: 70vh; display: grid; place-items: center; text-align: center; isolation: isolate; }
.reel__media { position: absolute; inset: 0; z-index: -1; }
.reel__media img { width: 100%; height: 100%; object-fit: cover; }
.reel__scrim { position: absolute; inset: 0; background: rgba(10,9,8,.62); }
.reel__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 5vw, 48px); letter-spacing: -0.02em; }
.reel__play {
  margin-top: 30px; width: 86px; height: 86px; border-radius: 50%;
  background: var(--gold); color: #0a0908; display: grid; place-items: center;
  transition: transform .25s var(--ease), background .25s var(--ease); box-shadow: 0 0 0 0 rgba(216,180,106,.5);
  animation: pulse 2.6s ease-out infinite;
}
.reel__play:hover { transform: scale(1.08); background: var(--gold-bright); }
.reel__play svg { margin-left: 4px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(216,180,106,.45); } 70% { box-shadow: 0 0 0 22px rgba(216,180,106,0); } 100% { box-shadow: 0 0 0 0 rgba(216,180,106,0); } }

/* ===================== ABOUT ===================== */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__photo img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 9/11; object-fit: cover; }
.about__body p { color: var(--text-muted); margin-top: 16px; max-width: 54ch; }
.about__body p strong { color: var(--text); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(20px, 4vw, 44px); margin-top: 40px; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--gold); line-height: 1; display: block; }
.stat__label { font-size: 13px; color: var(--text-muted); margin-top: 8px; display: block; }

/* ===================== TESTIMONIALS ===================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.quote__stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote blockquote { font-size: 17px; line-height: 1.6; margin: 16px 0 22px; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-family: var(--font-display); font-weight: 600; }
.quote figcaption span { font-size: 13px; color: var(--text-muted); }

/* ===================== CONTACT / FORM ===================== */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact__points { list-style: none; padding: 0; margin-top: 32px; display: grid; gap: 18px; }
.contact__points li { display: flex; align-items: center; gap: 14px; color: var(--text-muted); }
.contact__points svg { color: var(--gold); flex: none; }
.contact__points a:hover { color: var(--gold); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px;
  font-family: inherit; font-size: 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,180,106,.16); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23a9a097' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: #e0746a; }
.field__error { color: #e8908a; font-size: 13px; margin-top: 6px; min-height: 0; }

.btn__spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(10,9,8,.3); border-top-color: #0a0908; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.is-loading .btn__label { opacity: .6; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__status { margin-top: 16px; font-size: 14.5px; min-height: 0; }
.form__status.is-success { color: var(--gold); }
.form__status.is-error { color: #e8908a; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--border); padding-top: 56px; background: var(--bg-elev); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 36px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }
.footer__nav { display: flex; gap: 26px; align-items: center; }
.footer__nav a { color: var(--text-muted); font-size: 15px; transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-muted); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0 30px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.footer__base a { color: var(--text-muted); }
.footer__base a:hover { color: var(--gold); }

/* ===================== LIGHTBOX & MODAL ===================== */
.lightbox, .modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(6,5,4,.92); backdrop-filter: blur(6px);
}
.lightbox.is-open, .modal.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 90vh; border-radius: 10px; }
.lightbox__close, .modal__close { position: absolute; top: 22px; right: 22px; color: var(--text); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .2s var(--ease); }
.lightbox__close:hover, .modal__close:hover { background: rgba(255,255,255,.16); }
.modal__frame { width: min(960px, 92vw); aspect-ratio: 16/9; }
.modal__frame video { width: 100%; height: 100%; border-radius: 12px; background: #000; object-fit: cover; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid { columns: 2; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 760px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,9,8,.97); backdrop-filter: blur(14px); padding: 12px 24px 28px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 17px; }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 18px; justify-content: center; }
  .nav[data-state="top"] { background: rgba(10,9,8,.5); backdrop-filter: blur(8px); }

  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { flex-direction: column; }

  .hero { padding-bottom: 110px; }
  .hero__sub { max-width: 100%; }
  .hero__strip img { width: 124px; height: 76px; }
  .hero__strip-track { animation-duration: 34s; }
}

@media (max-width: 460px) {
  .grid { columns: 1; }
  .services { grid-template-columns: 1fr; }
  .hero__status { font-size: 11px; letter-spacing: .08em; padding: 8px 13px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim { animation: none; }
  .hero__words, .hero__dot, .hero__strip-track, .hero__glow span { animation: none; }
  .hero__rotate-mask::after { display: none; }
  .reel__play { animation: none; }
  .tile img, .btn, .service { transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
