/* ═════════════════════════════════════════════════════════════
   Reinavoz Media Group — styles (glam dark edition)
   Navy #152A5C · Sky #2BA9E1 · Space Grotesk / Inter
   ═════════════════════════════════════════════════════════════ */

:root {
  /* pulled straight from the logo: royal navy + soundwave sky */
  --navy: #152A5C;
  --navy-deep: #0E1E44;
  --navy-abyss: #081431;
  --sky: #2BA9E1;
  --sky-bright: #56C1F0;
  --sky-deep: #1783B8;
  --sky-soft: rgba(43, 169, 225, 0.12);
  --white: #FFFFFF;
  --gray: #F5F7FA;

  /* dark-scheme text */
  --text-light: #EAF1FA;
  --text-light-muted: rgba(234, 241, 250, 0.72);
  --line-light: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* light-scheme text (insights section) */
  --text: #1c2b4d;
  --text-muted: rgba(28, 43, 77, 0.68);
  --line: rgba(21, 42, 92, 0.10);

  --font-display: "Space Grotesk", "Archivo", sans-serif;
  --font-body: "Inter", "Neue Haas Grotesk", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-glow: 0 10px 30px rgba(43, 169, 225, 0.18), 0 30px 80px rgba(4, 10, 26, 0.6);
  --shadow-card: 0 8px 24px rgba(4, 10, 26, 0.35), 0 24px 64px rgba(4, 10, 26, 0.45);
  --radius: 16px;
  --section-pad: clamp(96px, 12vw, 150px);
  --container: 1240px;
}

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* keep anchor targets clear of the fixed nav */
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-light);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--sky); color: var(--navy-abyss); }

/* cinematic film grain over the dark surfaces */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--sky); color: var(--navy-abyss);
  padding: 12px 20px; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Typography helpers ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--sky);
  flex: none;
}

/* centered soundwave divider — the logo's wave, marking each movement */
.wave-divider {
  height: 30px;
  justify-content: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.wave-divider i { width: 3px; background: rgba(43, 169, 225, 0.55); }

/* giant outlined wordmark behind statements */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 340px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(86, 193, 240, 0.10);
  pointer-events: none;
  user-select: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.02;
  font-size: clamp(40px, 6vw, 76px);
  color: var(--white);
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 17px 36px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
/* glossy light sweep across solid buttons */
.btn-solid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
}
.btn-solid:hover::after { left: 125%; }
.btn-solid {
  background: linear-gradient(135deg, var(--sky-bright), var(--sky) 55%, var(--sky-deep));
  color: var(--navy-abyss);
  box-shadow: 0 8px 28px rgba(43, 169, 225, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-solid:hover { box-shadow: 0 14px 44px rgba(43, 169, 225, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky-bright); background: rgba(43, 169, 225, 0.08); }
.btn-lg { padding: 21px 48px; font-size: 18px; }
.btn-sm { padding: 12px 22px; font-size: 14px; box-shadow: none; }

/* ── Soundwave (.eq) — bars injected by JS ────────────────── */
.eq { display: flex; align-items: center; gap: 3px; }
.eq i {
  flex: none;
  width: 3px;
  height: calc(var(--h) * 1%);
  min-height: 4px;
  border-radius: 2px;
  background: var(--sky);
}
.eq.is-live i {
  animation: eq-pulse 1.6s ease-in-out infinite alternate;
  animation-delay: var(--d);
}
@keyframes eq-pulse {
  from { transform: scaleY(0.35); }
  to   { transform: scaleY(1); }
}

/* ── Navbar ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(9, 18, 40, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  background: rgba(9, 18, 40, 0.82);
  border-bottom-color: var(--line-light);
  box-shadow: 0 10px 40px rgba(4, 10, 26, 0.5);
}
.nav-inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 0 12px rgba(43, 169, 225, 0.35)); }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sky);
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--sky);
  color: var(--navy-abyss) !important;
  font-weight: 600;
  padding: 11px 26px !important;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(43, 169, 225, 0.4);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { background: var(--sky-bright); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(43, 169, 225, 0.55); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* glow painted as gradients — no filter layers, far cheaper to composite */
  background:
    radial-gradient(560px 560px at 88% 2%, rgba(43, 169, 225, 0.26), transparent 70%),
    radial-gradient(900px 600px at 82% 8%, rgba(43, 169, 225, 0.15), transparent 60%),
    radial-gradient(520px 520px at -4% 105%, rgba(23, 131, 184, 0.2), transparent 70%),
    radial-gradient(700px 700px at 8% 95%, rgba(21, 42, 92, 0.95), transparent 70%),
    linear-gradient(165deg, var(--navy-abyss) 0%, var(--navy-deep) 55%, #16305F 100%);
}

.hero-grid {
  position: relative;
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: 76px;
}

.hero-content { color: #fff; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.15s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(52px, 7.4vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.hero-title .hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: word-in 0.85s var(--ease) forwards;
  animation-delay: calc(0.35s + var(--i) * 0.22s);
}
.hero-title .accent {
  background: linear-gradient(100deg, var(--sky-bright) 10%, var(--sky) 40%, #8ed6f7 60%, var(--sky) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: word-in 0.85s var(--ease) forwards, shimmer 5s linear 1.6s infinite;
  animation-delay: calc(0.35s + var(--i) * 0.22s), 1.6s;
}
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  to { background-position: -220% 0; }
}
.hero-sub {
  max-width: 46ch;
  margin-top: 30px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-light-muted);
  opacity: 0;
  animation: rise 0.8s var(--ease) 1.15s forwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 1.35s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* the orb — video in a circle, upper-right quadrant */
.hero-orb {
  position: relative;
  justify-self: end;
  align-self: start;
  margin-top: clamp(12px, 4vh, 48px);
  width: clamp(300px, 34vw, 500px);
  aspect-ratio: 1;
  opacity: 0;
  animation: orb-in 1.1s var(--ease) 0.5s forwards;
}
@keyframes orb-in {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: scale(1); }
}
.orb-media {
  position: absolute;
  inset: 4.5%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 10px rgba(43, 169, 225, 0.06),
    0 0 80px rgba(43, 169, 225, 0.28),
    0 40px 90px rgba(4, 10, 26, 0.7);
  animation: orb-float 7s ease-in-out infinite alternate;
}
@keyframes orb-float {
  from { transform: translateY(-8px); }
  to   { transform: translateY(10px); }
}
.orb-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translateZ(0); /* own compositor layer: circle clip stays cheap while playing */
}
/* rotating conic shimmer ring */
.orb-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--sky) 18%, transparent 36%, transparent 55%, rgba(92, 196, 240, 0.7) 72%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: orb-rotate 9s linear infinite;
  will-change: transform;
}
@keyframes orb-rotate {
  to { transform: rotate(360deg); }
}
/* slow expanding pulse, like a broadcast signal */
.orb-pulse {
  position: absolute;
  inset: 4.5%;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 169, 225, 0.65);
  animation: orb-pulse 3.2s var(--ease) infinite;
}
@keyframes orb-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  75%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
.orb-eq {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  height: 26px;
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  padding: 0 4vw;
  justify-content: space-between;
  opacity: 0.5;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.hero-wave i { width: 2px; }

.scroll-hint {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.scroll-hint-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-hint-line {
  width: 2px; height: 52px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.scroll-hint-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sky);
  animation: hint-drop 1.8s var(--ease) infinite;
}
@keyframes hint-drop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── Stats + marquee ──────────────────────────────────────── */
.stats {
  padding: var(--section-pad) 0 0;
  background: linear-gradient(180deg, var(--navy-abyss), var(--navy-deep));
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: clamp(64px, 8vw, 100px);
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-eq { height: 26px; margin-bottom: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff 30%, var(--sky-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 15px;
  color: var(--text-light-muted);
  font-weight: 500;
}

.marquee {
  border-block: 1px solid var(--line-light);
  padding: 30px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-light-muted);
  margin-bottom: 26px;
}
.marquee-row { display: flex; align-items: center; }
.marquee-row li {
  display: flex;
  align-items: center;
  padding: 0 40px;
}
/* real outlet marks, unified to a single quiet white */
.marquee-row img {
  max-height: 34px;
  max-width: 150px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.marquee-row li:hover img { opacity: 1; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Manifesto ────────────────────────────────────────────── */
.manifesto {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(43, 169, 225, 0.14), transparent 60%),
    var(--navy);
}
.manifesto-wave {
  position: absolute;
  inset: 0;
  padding: 0 2vw;
  justify-content: space-between;
  opacity: 0.07;
  pointer-events: none;
}
.manifesto-wave i { width: 4px; background: var(--sky); }
.manifesto .container { position: relative; }
.manifesto-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 22ch;
  color: #fff;
}
.manifesto-statement em {
  font-style: normal;
  color: var(--sky-bright);
  text-shadow: 0 0 30px rgba(43, 169, 225, 0.5);
}
.manifesto-body {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 60ch;
  display: grid;
  gap: 18px;
  color: var(--text-light-muted);
  font-size: 18px;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(700px 500px at 10% 0%, rgba(21, 42, 92, 0.8), transparent 65%),
    var(--navy-deep);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s, background 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
  border-color: rgba(43, 169, 225, 0.5);
}
/* sky hairline that lights up along the card's top edge */
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-bright), var(--sky) 40%, transparent 85%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
/* cursor-following glow */
[data-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(43, 169, 225, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
[data-glow]:hover::before { opacity: 1; }

.card-eq {
  position: absolute;
  top: 40px; right: 30px;
  height: 22px;
}
.card-eq i { background: rgba(43, 169, 225, 0.4); transition: background 0.3s; }
.service-card:hover .card-eq i {
  background: var(--sky-bright);
  animation: eq-pulse 0.9s ease-in-out infinite alternate;
  animation-delay: var(--d);
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--sky-bright);
  margin-bottom: 26px;
  filter: drop-shadow(0 0 14px rgba(43, 169, 225, 0.4));
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15.5px;
  color: var(--text-light-muted);
  margin-bottom: 24px;
  min-height: 3.2em;
}
.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--sky-bright);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card-link span { transition: transform 0.3s var(--ease); }
.service-card:hover .card-link span,
.insight-card:hover .card-link span { transform: translateX(5px); }

/* ── Packages ─────────────────────────────────────────────── */
.packages {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(43, 169, 225, 0.1), transparent 60%),
    var(--navy-deep);
}
.pkg-lede {
  max-width: 62ch;
  color: var(--text-light-muted);
  font-size: 18px;
  margin-top: -28px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 38px 30px 30px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s, background 0.3s;
}
.pkg-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
  border-color: rgba(43, 169, 225, 0.5);
}
.pkg-featured {
  border-color: rgba(43, 169, 225, 0.65);
  background: rgba(43, 169, 225, 0.07);
  box-shadow: 0 0 50px rgba(43, 169, 225, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pkg-badge {
  position: absolute;
  top: 0; right: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-abyss);
  background: linear-gradient(135deg, var(--sky-bright), var(--sky));
  padding: 8px 18px;
  border-radius: 0 var(--radius) 0 12px;
}
.pkg-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
  padding-right: 8px;
}
.pkg-sub {
  font-size: 14px;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}
.pkg-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--sky-bright);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}
.pkg-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.pkg-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-light-muted);
  line-height: 1.5;
}
.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--sky);
}
.pkg-btn { width: 100%; padding: 14px 20px; font-size: 15px; }

/* invitation-only premium band */
.pkg-premium {
  position: relative;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background:
    radial-gradient(600px 300px at 0% 100%, rgba(43, 169, 225, 0.12), transparent 65%),
    var(--glass);
  border: 1px solid rgba(43, 169, 225, 0.35);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.pkg-badge-premium { border-radius: 0 var(--radius) 0 12px; }
.pkg-premium h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
  padding-right: 120px;
}
.pkg-premium p {
  max-width: 64ch;
  font-size: 15.5px;
  color: var(--text-light-muted);
  margin-bottom: 22px;
}
.pkg-outlets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pkg-outlets li {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sky-bright);
  background: rgba(43, 169, 225, 0.1);
  border: 1px solid rgba(43, 169, 225, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
}
.pkg-premium-btn { width: auto; flex: none; }

/* ── Showreel ─────────────────────────────────────────────── */
.showreel {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(900px 600px at 85% 100%, rgba(43, 169, 225, 0.1), transparent 60%),
    var(--navy);
}
.reel-featured, .reel-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(4, 10, 26, 0.6), 0 0 40px rgba(43, 169, 225, 0.08);
  background: var(--navy-abyss);
  border: 1px solid var(--glass-border);
}
.reel-featured { aspect-ratio: 16 / 8.4; }
.reel-featured video,
.reel-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.reel-featured:hover video, .reel-thumb:hover video { transform: scale(1.035); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(9, 18, 40, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.35s var(--ease);
}
.play-btn:hover { background: var(--sky); color: var(--navy-abyss); transform: scale(1.06); }
.play-btn svg { width: 34px; height: 34px; margin-left: 4px; }
.play-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--sky);
  animation: ring-pulse 2.2s var(--ease) infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.9; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.play-btn-sm { width: 64px; height: 64px; }
.play-btn-sm svg { width: 24px; height: 24px; margin-left: 3px; }

.reel-caption {
  position: absolute;
  left: 28px; bottom: 24px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.reel-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky-bright);
}

.reel-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 24px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 12px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 169, 225, 0.5) transparent;
}
.reel-strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reel-thumb { aspect-ratio: 16 / 9.5; }
.reel-thumb .reel-caption { left: 20px; bottom: 18px; font-size: 14.5px; }

/* ── Work / case studies ──────────────────────────────────── */
.work {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 26px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-abyss);
  border: 1px solid var(--glass-border);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(43, 169, 225, 0.45);
}
.work-card-lg { grid-row: span 2; min-height: 640px; }

.work-media { position: absolute; inset: 0; }
.work-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.8s var(--ease), opacity 0.4s;
}
.work-card:hover .work-media video { transform: scale(1.05); }
.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 18, 40, 0.94) 0%, rgba(9, 18, 40, 0.3) 45%, rgba(9, 18, 40, 0.05) 100%);
}
.work-body {
  position: relative;
  padding: 34px 32px;
  color: #fff;
  transform: translateY(14px);
  transition: transform 0.5s var(--ease);
  max-width: 34rem;
}
.work-card:hover .work-body { transform: translateY(0); }
.work-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-bright);
  margin-bottom: 12px;
}
.work-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.work-card-lg .work-body h3 { font-size: clamp(24px, 2.6vw, 34px); }
.work-metric {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-abyss);
  background: linear-gradient(135deg, var(--sky-bright), var(--sky));
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(43, 169, 225, 0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease) 0.06s, transform 0.4s var(--ease) 0.06s;
}
.work-card:hover .work-metric,
.work-card:focus-visible .work-metric { opacity: 1; transform: translateY(0); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(43, 169, 225, 0.12), transparent 65%),
    var(--navy);
  text-align: center;
}
.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(110px, 14vw, 180px);
  line-height: 0.6;
  color: var(--sky);
  text-shadow: 0 0 50px rgba(43, 169, 225, 0.45);
  margin-bottom: 18px;
  user-select: none;
}
.slider {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  display: grid;
}
.slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.slide p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
}
.slide footer { margin-top: 30px; }
.slide cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--sky-bright);
  font-size: 16px;
}
.slide footer span { font-size: 14.5px; color: var(--text-light-muted); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s, width 0.35s var(--ease);
  padding: 0;
}
.dot.is-active { background: var(--sky); width: 30px; box-shadow: 0 0 14px rgba(43, 169, 225, 0.6); }

/* ── Insights — the one light contrast moment ─────────────── */
.insights { padding: var(--section-pad) 0; background: var(--white); }
.insights .eyebrow { color: var(--sky-deep); }
.insights .section-title { color: var(--navy); }
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 6px rgba(13, 27, 62, 0.05), 0 18px 44px rgba(13, 27, 62, 0.12);
  border-color: rgba(43, 169, 225, 0.4);
}
.insight-meta {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
}
.insight-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21.5px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.insight-card .u {
  background-image: linear-gradient(var(--sky), var(--sky));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.45s var(--ease);
}
.insight-card:hover .u { background-size: 100% 2px; }
.insight-card p { font-size: 15px; color: var(--text-muted); flex: 1; }
.insight-card .card-link { color: var(--sky-deep); }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% 120%, rgba(43, 169, 225, 0.28), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.cta-wave {
  position: absolute;
  inset: 0;
  padding: 0 1vw;
  justify-content: space-between;
  opacity: 0.16;
  pointer-events: none;
}
.cta-wave i { width: 3px; }
.cta-band .container { position: relative; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 48px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(700px 500px at 0% 0%, rgba(21, 42, 92, 0.9), transparent 65%),
    var(--navy-deep);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.contact .section-title { margin-bottom: 20px; }
.contact-lede { color: var(--text-light-muted); max-width: 40ch; }

.contact-details { font-style: normal; margin-top: 44px; display: grid; gap: 26px; }
.contact-line { color: var(--text-light-muted); line-height: 1.55; }
.contact-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 6px;
}
.contact-line a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(43, 169, 225, 0.5); transition: border-color 0.25s, color 0.25s; }
.contact-line a:hover { color: var(--sky-bright); border-color: var(--sky-bright); }

.socials { display: flex; gap: 14px; margin-top: 44px; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: #fff;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.socials a:hover {
  background: var(--sky);
  color: var(--navy-abyss);
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 169, 225, 0.45);
}
.socials svg { width: 18px; height: 18px; }

/* form — dark glass */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.field { position: relative; }
.field-full { grid-column: 1 / -1; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 24px 16px 10px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field select option { color: var(--text); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(43, 169, 225, 0.18);
}
.field label {
  position: absolute;
  left: 17px; top: 17px;
  font-size: 15.5px;
  color: var(--text-light-muted);
  pointer-events: none;
  transition: transform 0.22s var(--ease), font-size 0.22s, color 0.22s;
  transform-origin: left top;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select.has-value ~ label {
  transform: translateY(-10px);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--sky-bright);
  font-weight: 600;
  text-transform: uppercase;
}
.field-select::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { appearance: none; cursor: pointer; }

.form-status { grid-column: 1 / -1; font-weight: 500; color: var(--sky-bright); min-height: 1.4em; margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy-abyss); color: var(--text-light-muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(40px, 5vw, 72px);
  padding: clamp(64px, 8vw, 96px) 0;
}
.footer-blurb { margin-top: 22px; font-size: 15px; max-width: 34ch; }
.socials-footer { margin-top: 28px; }
.socials-footer a { border-color: var(--line-light); color: #fff; }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text-light-muted);
  transition: color 0.2s, transform 0.3s var(--ease);
}
.footer-col a:hover { color: var(--sky-bright); transform: translateX(4px); }

.footer-news-copy { font-size: 14.5px; margin-bottom: 18px; }
.footer-news { display: flex; gap: 10px; }
.footer-news input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid var(--line-light);
  border-radius: 999px;
  padding: 11px 18px;
  transition: border-color 0.25s, background 0.25s;
}
.footer-news input::placeholder { color: rgba(255, 255, 255, 0.45); }
.footer-news input:focus { outline: none; border-color: var(--sky); background: rgba(255, 255, 255, 0.12); }
.footer .form-status { color: var(--sky-bright); margin-top: 12px; }

.footer-bar { border-top: 1px solid var(--line-light); }
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13.5px;
}
.footer-bar a { margin-left: 24px; transition: color 0.2s; }
.footer-bar a:first-child { margin-left: 0; }
.footer-bar a:hover { color: var(--sky-bright); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 26, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fade 0.3s;
}
.lightbox-body {
  position: relative;
  width: min(1080px, 100%);
  animation: rise 0.45s var(--ease);
}
.lightbox-body video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(43, 169, 225, 0.2), 0 40px 120px rgba(0, 0, 0, 0.7);
  background: #000;
  max-height: 78vh;
}
.lightbox-title {
  margin-top: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 17px;
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}
.lightbox-close:hover { background: var(--sky); color: var(--navy-abyss); border-color: var(--sky); }
@keyframes fade { from { opacity: 0; } }

/* ── Render below-fold sections only as they approach ─────── */
.services, .packages, .showreel, .work, .testimonials,
.insights, .cta-band, .contact, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-premium { grid-template-columns: 1fr; }
  .pkg-premium h3 { padding-right: 0; margin-top: 26px; }
  .insight-grid { grid-template-columns: 1fr; max-width: 640px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-abyss);
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 24px 48px rgba(4, 10, 26, 0.5);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { font-size: 18px; padding: 10px 0; width: 100%; }
  .nav-cta { text-align: center; margin-top: 10px; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 90px;
    gap: 56px;
  }
  .hero-orb {
    justify-self: center;
    align-self: center;
    margin-top: 0;
    width: min(72vw, 360px);
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { min-height: 100svh; }
  .hero-ctas .btn { width: 100%; }
  .scroll-hint { display: none; }

  .service-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-lg { grid-row: auto; min-height: 460px; }
  .work-card { min-height: 340px; }
  .work-metric { opacity: 1; transform: none; }

  .reel-strip { grid-auto-columns: 82%; }
  .reel-featured { aspect-ratio: 16 / 11; }
  .play-btn { width: 72px; height: 72px; }

  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-news { flex-direction: column; }
  .footer-bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 500px) {
  /* "AMPLIFIED." must never clip on small phones */
  .hero-title { font-size: clamp(34px, 13vw, 52px); }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow, .hero-sub, .hero-ctas, .hero-title .hw, .hero-orb { opacity: 1; transform: none; }
  .hero-title .accent { color: var(--sky); background: none; -webkit-background-clip: initial; background-clip: initial; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .work-metric { opacity: 1; transform: none; }
}
