/* ============================================================
   BQ PRODUCTIONS — NEW HOME (cinematic upgrade)
   Design ref: aionthelot.com editorial aesthetic
   Accent: #E0A53F  |  BG: #000  |  Text: #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #E0A53F;
  --gold2:  #c8882a;
  --black:  #000;
  --white:  #fff;
  --muted:  rgba(255,255,255,.45);
  --line:   rgba(255,255,255,.1);
  --line2:  rgba(255,255,255,.06);
  --body:   'Space Grotesk', sans-serif;
  --display:'Archivo Black', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip; /* clip avoids creating a scroll container (keeps window scrollTo working) */
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── SCROLL PROGRESS ── */
#nh-scrollbar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 200; width: 0%;
  transition: width .08s linear;
}

/* ────────────────────────────────────────────
   NAV
──────────────────────────────────────────── */
#nh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
#nh-nav.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nh-nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nh-logo {
  font-family: var(--display);
  font-size: 15px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--white);
}
.nh-nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nh-nav-links a {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nh-nav-links a:hover { color: var(--white); }
.nh-nav-right {
  display: flex; align-items: center; gap: 12px;
}
.nh-portal-btn {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); padding: 8px 16px;
  border: 1px solid var(--line); transition: all .2s;
}
.nh-portal-btn:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.nh-cta-btn {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--black); background: var(--white);
  padding: 10px 22px; font-weight: 700;
  transition: background .2s, color .2s;
}
.nh-cta-btn:hover { background: var(--gold); color: var(--black); }

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
#nh-hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}

/* video background */
#nh-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1; z-index: 0;
}

/* dark overlay — ~45% */
#nh-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.48); z-index: 1;
}

/* corner labels */
.nh-corner {
  position: absolute; z-index: 3;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-family: var(--body);
}
.nh-corner-tl { top: 32px; left: 40px; }
.nh-corner-tr { top: 32px; right: 40px; }
.nh-corner-bl { bottom: 32px; left: 40px; }
.nh-corner-br { bottom: 32px; right: 40px; }

/* hero text container */
.nh-hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  will-change: transform, opacity;
}

.nh-hero-label {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  overflow: hidden;
}
.nh-hero-label span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.nh-hero-title {
  font-family: var(--display);
  /* "PRODUCTIONS" renders ~8.1x the font-size in Archivo Black.
     Must fit 100vw minus padding at every width (tested 320 / 390 / 768 / 1440). */
  font-size: clamp(28px, 10.5vw, 200px);
  line-height: .92; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white);
  overflow: hidden;
  max-width: 100%;
}
@media (min-width: 768px) {
  .nh-hero-title { font-size: clamp(80px, 11.5vw, 172px); }
}
.nh-hero-title .line-wrap {
  overflow: hidden; display: block;
}
.nh-hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}

.nh-hero-sub {
  margin-top: 24px;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--muted); letter-spacing: .04em;
  max-width: 480px; line-height: 1.6;
  overflow: hidden;
  padding: 0 8px;
}
.nh-hero-sub span {
  display: inline-block;
  transform: translateY(30px); opacity: 0;
}

/* booking status bar — under headline */
.nh-hero-status {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(224,165,63,.35);
  padding: 9px 18px;
  opacity: 0; transform: translateY(20px);
  max-width: calc(100vw - 48px);
  text-align: center; line-height: 1.7;
}
.nh-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: nhPulse 1.6s ease-in-out infinite;
}
@keyframes nhPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224,165,63,.5); }
  50%      { opacity: .55; box-shadow: 0 0 0 5px rgba(224,165,63,0); }
}

.nh-hero-ctas {
  display: flex; gap: 14px; margin-top: 40px;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
}
.nh-btn-primary {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; padding: 14px 32px;
  background: var(--gold); color: var(--black);
  border: none; transition: background .2s, transform .2s;
}
.nh-btn-primary:hover { background: #f0b84f; transform: translateY(-2px); }
.nh-btn-ghost {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; padding: 13px 30px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
}
.nh-btn-ghost:hover { border-color: var(--white); }

/* scroll hint */
.nh-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: 8px; opacity: 0;
}
.nh-scroll-hint span {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.nh-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.nh-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ────────────────────────────────────────────
   TRUSTED BY STRIP
──────────────────────────────────────────── */
#nh-trusted {
  border-top: 1px solid var(--line2);
  padding: 32px 0;
}
.nh-trusted-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.nh-trusted-label {
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold);
}
.nh-trusted-name {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .25s;
  cursor: default;
}
.nh-trusted-name:hover { color: var(--white); }

/* ────────────────────────────────────────────
   STATS STRIP
──────────────────────────────────────────── */
#nh-stats {
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 56px 0;
}
.nh-proof-line {
  text-align: center; margin-top: 36px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 0 24px;
}
.nh-proof-line::before {
  content: '— '; color: var(--gold);
}
.nh-stats-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.nh-stat {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--line2);
}
.nh-stat:last-child { border-right: none; }
.nh-stat-num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  color: var(--gold); line-height: 1;
  display: block;
}
.nh-stat-lbl {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px; display: block;
}

/* ────────────────────────────────────────────
   SECTION COMMON
──────────────────────────────────────────── */
.nh-section { padding: 120px 0; }
.nh-container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.nh-section-label {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.nh-section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1; text-transform: uppercase;
  color: var(--white);
}
.nh-section-sub {
  font-size: 16px; color: var(--muted); max-width: 540px;
  line-height: 1.65; margin-top: 16px;
}

/* ────────────────────────────────────────────
   SELECTED WORK
──────────────────────────────────────────── */
#nh-work .nh-section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.nh-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* cards */
.nh-card {
  position: relative; overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer; background: #0a0a0a;
}
/* poster image — always present (base layer) */
.nh-card-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; z-index: 0;
  transition: transform .6s ease, opacity .4s ease;
  opacity: .75;
}
/* video — injected by JS on desktop only, overlays poster */
.nh-card-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; z-index: 1;
  transition: transform .6s ease, opacity .4s ease;
  opacity: .75;
}
.nh-card:hover .nh-card-video,
.nh-card:hover .nh-card-poster { opacity: 1; transform: scale(1.03); }
/* live video — injected into the snapped carousel card (mobile), fades over poster */
.nh-card-live {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; z-index: 1;
  opacity: 0; transition: opacity .45s ease;
}
.nh-card-live.on { opacity: 1; }
/* amber index number — mobile only */
.nh-card-index {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--display); font-size: 12px; letter-spacing: .15em;
  color: var(--gold); display: none;
}
/* delivered chip — top-right */
.nh-card-chip {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-size: 8px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.6); border: 1px solid var(--line);
  padding: 4px 9px;
}

.nh-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
  transform: translateY(6px);
  transition: transform .3s ease;
}
.nh-card:hover .nh-card-overlay { transform: translateY(0); }

.nh-card-client {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.nh-card-title {
  font-size: 15px; font-weight: 700; color: var(--white);
  line-height: 1.3;
}
.nh-card-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px;
}
.nh-tag {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px solid var(--line); padding: 3px 8px;
}

/* ────────────────────────────────────────────
   BEFORE/AFTER MASK REVEAL
──────────────────────────────────────────── */
#nh-reveal {
  padding: 120px 0; overflow: hidden;
}
.nh-reveal-wrap {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.nh-reveal-header { margin-bottom: 56px; }
.nh-reveal-stage {
  position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden; background: #0a0a0a;
}

/* BEFORE layer (always visible, dark/raw) */
.nh-before-layer {
  position: absolute; inset: 0;
  background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.nh-before-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.75) brightness(.85); /* muted raw-footage feel vs cinematic AFTER */
}
.nh-before-sublabel {
  position: absolute; bottom: 24px; left: 32px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.55); padding: 6px 12px;
  z-index: 2;
}

/* AFTER layer — clips over BEFORE via scroll */
.nh-after-layer {
  position: absolute; inset: 0;
  clip-path: inset(0 100% 0 0);
  z-index: 2;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nh-after-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center;
  will-change: transform; /* slow 1.0→1.06 zoom driven by scroll scrub (JS) */
}
.nh-after-label {
  position: absolute; bottom: 24px; right: 32px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); z-index: 3;
  background: rgba(0,0,0,.55); padding: 6px 12px;
}

/* divider line that follows the scrub */
.nh-reveal-divider {
  position: absolute; top: 0; bottom: 0;
  width: 1px; background: var(--gold);
  z-index: 3; left: 0%;
  box-shadow: 0 0 12px rgba(224,165,63,.5);
}

/* ────────────────────────────────────────────
   MID-PAGE CTA BAND
──────────────────────────────────────────── */
#nh-midcta {
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 64px 0;
}
.nh-midcta-inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; text-align: center;
}
.nh-midcta-title {
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 30px);
  text-transform: uppercase; line-height: 1.2;
}

/* ────────────────────────────────────────────
   PROCESS STRIP
──────────────────────────────────────────── */
#nh-process { padding: 96px 0; border-top: 1px solid var(--line2); }
.nh-process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid var(--line2); margin-top: 16px;
}
.nh-process-step {
  padding: 36px 28px; background: #000;
  border-right: 1px solid var(--line2);
}
.nh-process-step:last-child { border-right: none; }
.nh-process-num {
  font-family: var(--display); font-size: 30px;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 14px;
}
.nh-process-title {
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 6px;
}
.nh-process-time {
  font-size: 12px; color: var(--muted); letter-spacing: .14em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   STICKY MOBILE CTA BAR
──────────────────────────────────────────── */
#nh-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  display: none;
  background: #000; border-top: 1px solid #222;
  padding: 0 0 env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform .35s ease;
}
#nh-sticky-cta.show { transform: translateY(0); }
.nh-sticky-main {
  flex: 1; background: none; border: none;
  color: var(--white); font-family: var(--body);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; padding: 17px 16px;
  text-align: center;
}
.nh-sticky-main::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-right: 10px;
  vertical-align: 1px;
  animation: nhPulse 1.6s ease-in-out infinite;
}
#nh-sticky-close {
  background: none; border: none; border-left: 1px solid #222;
  color: var(--muted); font-size: 18px; line-height: 1;
  padding: 0 18px;
}
@media (max-width: 767px) {
  #nh-sticky-cta { display: flex; }
  body.nh-sticky-on .nh-wa-float { bottom: 78px; }
}

/* ────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────── */
#nh-services { padding: 120px 0; }
.nh-svc-list {
  margin-top: 56px; border-top: 1px solid var(--line2);
}
.nh-svc-row {
  display: flex; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line2);
  transition: padding-left .25s ease;
  cursor: default; gap: 32px;
}
.nh-svc-row:hover { padding-left: 12px; }
.nh-svc-index {
  font-size: 11px; letter-spacing: .2em; color: var(--gold);
  font-family: var(--display); min-width: 36px;
}
.nh-svc-name {
  font-size: clamp(18px, 2vw, 26px); font-weight: 700;
  color: var(--white); flex: 1;
  transition: color .2s;
}
.nh-svc-row:hover .nh-svc-name { color: var(--gold); }
.nh-svc-desc {
  font-size: 13px; color: var(--muted); max-width: 380px;
  line-height: 1.55;
}
.nh-svc-arrow {
  font-size: 18px; color: var(--line);
  transition: color .2s, transform .2s;
}
.nh-svc-row:hover .nh-svc-arrow { color: var(--gold); transform: translateX(4px); }

/* ────────────────────────────────────────────
   WHY SECTION
──────────────────────────────────────────── */
#nh-why { padding: 120px 0; background: #000; }
.nh-why-headline {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase; line-height: 1.05;
  max-width: 900px; margin-bottom: 56px;
}
.nh-why-headline em {
  font-style: normal; color: var(--gold);
}
.nh-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid var(--line2);
}
.nh-why-card {
  padding: 40px 32px;
  border: none; background: #000;
  transition: background .25s;
}
.nh-why-card:hover { background: #0a0a0a; }
.nh-why-num {
  font-family: var(--display); font-size: 40px;
  color: var(--gold); line-height: 1; margin-bottom: 20px;
}
.nh-why-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.nh-why-body { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ────────────────────────────────────────────
   CTA / CONTACT SECTION
──────────────────────────────────────────── */
#nh-contact { padding: 140px 0; }
.nh-contact-inner {
  max-width: 760px; margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.nh-contact-eyebrow {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: block;
}
.nh-contact-headline {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  text-transform: uppercase; line-height: .95;
  margin-bottom: 32px;
}
.nh-contact-headline em {
  font-style: normal; color: var(--gold);
}
.nh-contact-sub {
  font-size: 16px; color: var(--muted); line-height: 1.6;
  max-width: 460px; margin: 0 auto 48px;
}
.nh-contact-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.nh-email-link {
  font-size: 13px; letter-spacing: .12em;
  color: var(--muted); transition: color .2s;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.nh-email-link:hover { color: var(--gold); border-color: var(--gold); }

/* ────────────────────────────────────────────
   MODAL (intake form)
──────────────────────────────────────────── */
#nh-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#nh-modal-overlay.open { display: flex; }
#nh-modal {
  background: #0a0a0a; border: 1px solid var(--line);
  max-width: 600px; width: 100%;
  padding: 48px 40px; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.nh-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--muted);
  font-size: 22px; line-height: 1; transition: color .2s;
}
.nh-modal-close:hover { color: var(--white); }
.nh-modal-label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.nh-modal-title {
  font-family: var(--display); font-size: 28px;
  text-transform: uppercase; margin-bottom: 8px;
}
.nh-modal-sub {
  font-size: 14px; color: var(--muted); margin-bottom: 36px; line-height: 1.55;
}
/* form elements */
.nh-form-q { font-size: 16px; font-weight: 600; margin-bottom: 14px; color: var(--white); }
.nh-form-opts { display: flex; flex-direction: column; gap: 8px; }
.nh-form-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; font-size: 14px; color: var(--white);
  transition: border-color .2s, background .2s;
}
.nh-form-opt:hover { border-color: rgba(224,165,63,.4); background: rgba(224,165,63,.05); }
.nh-form-opt input { accent-color: var(--gold); }
.nh-form-input {
  width: 100%; padding: 13px 16px; margin-bottom: 10px;
  background: transparent; border: 1px solid var(--line);
  color: var(--white); font-family: var(--body); font-size: 14px;
  outline: none; transition: border-color .2s;
}
.nh-form-input:focus { border-color: var(--gold); }
.nh-form-input::placeholder { color: var(--muted); }
.nh-form-step { display: none; animation: nhFadeUp .3s ease; }
.nh-form-step.active { display: block; }
@keyframes nhFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nh-form-nav { display: flex; gap: 10px; margin-top: 20px; }
.nh-form-nav .nh-btn-ghost { flex: 1; text-align: center; }
.nh-form-nav .nh-btn-primary { flex: 2; text-align: center; border: none; }
/* step progress */
.nh-step-dots {
  display: flex; gap: 6px; margin-bottom: 32px;
}
.nh-step-dot {
  width: 24px; height: 2px; background: var(--line);
  transition: background .3s;
}
.nh-step-dot.active { background: var(--gold); }
/* consent */
.nh-consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; padding: 12px 14px;
  border: 1px solid var(--line); margin-bottom: 10px;
  transition: border-color .2s;
}
.nh-consent-label:hover { border-color: rgba(224,165,63,.3); }
.nh-consent-label input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.nh-consent-label span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.nh-consent-label a { color: var(--gold); }
/* calendly embed in modal */
#nh-calendly-wrap { min-height: 560px; margin-top: 16px; overflow: hidden; }

/* ────────────────────────────────────────────
   PRIVACY MODAL
──────────────────────────────────────────── */
#nh-privacy-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#nh-privacy-overlay.open { display: flex; }
#nh-privacy-box {
  background: #0d0d0d; border: 1px solid var(--line);
  max-width: 640px; width: 100%;
  padding: 40px 36px; position: relative;
  max-height: 85vh; overflow-y: auto;
}
.nh-privacy-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--muted); font-size: 22px; cursor: pointer;
}
.nh-privacy-box h2 { font-size: 20px; margin-bottom: 20px; }
.nh-privacy-box h3 { font-size: 13px; color: var(--gold); margin: 20px 0 6px; letter-spacing: .05em; }
.nh-privacy-box p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
#nh-footer {
  border-top: 1px solid var(--line2);
  padding: 40px 0;
}
.nh-footer-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.nh-footer-logo {
  font-family: var(--display); font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.nh-footer-copy {
  font-size: 11px; color: rgba(255,255,255,.25);
}
.nh-footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.nh-footer-links a {
  font-size: 11px; color: rgba(255,255,255,.3);
  transition: color .2s; letter-spacing: .05em;
}
.nh-footer-links a:hover { color: var(--gold); }

/* ────────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────────── */
#nh-lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px; cursor: pointer;
}
#nh-lightbox.open { display: flex; }
#nh-lightbox-video {
  max-width: 100%; max-height: 90vh; cursor: default;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
#nh-lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: var(--white);
  font-size: 36px; line-height: 1; cursor: pointer;
}

/* ────────────────────────────────────────────
   WHATSAPP FLOAT
──────────────────────────────────────────── */
.nh-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 52px; height: 52px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: transform .2s; text-decoration: none;
}
.nh-wa-float:hover { transform: scale(1.1); }

/* ────────────────────────────────────────────
   SCROLL REVEAL HELPERS
──────────────────────────────────────────── */
.nh-reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity .7s ease, transform .7s ease;
}
.nh-reveal.visible { opacity: 1; transform: translateY(0); }
.nh-reveal-delay-1 { transition-delay: .1s; }
.nh-reveal-delay-2 { transition-delay: .2s; }
.nh-reveal-delay-3 { transition-delay: .3s; }
.nh-reveal-delay-4 { transition-delay: .4s; }
.nh-reveal-delay-5 { transition-delay: .5s; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nh-work-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-why-grid  { grid-template-columns: repeat(2, 1fr); }
  .nh-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .nh-stat { border-right: none; border-bottom: 1px solid var(--line2); padding: 24px; }
  .nh-stat:nth-child(odd) { border-right: 1px solid var(--line2); }
  .nh-stat:last-child, .nh-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .nh-svc-desc { display: none; }
}
/* ── MOBILE CAROUSEL (<768px): horizontal scroll-snap, posters only ── */
@media (max-width: 767px) {
  .nh-work-grid {
    display: flex; gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;  /* momentum scroll */
    padding: 0 20px 12px;
    margin: 0 -20px;                    /* bleed past container padding */
    scrollbar-width: none;
  }
  .nh-work-grid::-webkit-scrollbar { display: none; }
  .nh-card {
    flex: 0 0 78vw;                     /* card width + next-card peek */
    scroll-snap-align: center;
    aspect-ratio: 3/4;                  /* visually smaller than 9/16 */
  }
  .nh-card-index { display: block; }
  .nh-card-tags { display: none; }      /* lighter cards: poster + title + index */
  .nh-card-poster { opacity: 1; }       /* full brightness on mobile */
  .nh-card-overlay { transform: none; }
}

@media (max-width: 640px) {
  .nh-nav-inner { padding: 16px 20px; }
  .nh-nav-links { display: none; }
  .nh-corner-bl, .nh-corner-br { display: none; }
  .nh-corner-tl { display: none; }
  .nh-container { padding: 0 20px; }
  .nh-section { padding: 80px 0; }
  .nh-why-grid  { grid-template-columns: 1fr; }
  .nh-reveal-wrap { padding: 0 20px; }
  .nh-contact-inner { padding: 0 20px; }
  .nh-footer-inner { flex-direction: column; text-align: center; }
  #nh-modal { padding: 32px 24px; }

  /* ── overflow hardening (390px & 320px tested) ── */
  .nh-hero-content { padding: 0 20px; max-width: 100vw; }
  .nh-hero-label {
    font-size: 9px; letter-spacing: .22em;
    white-space: normal; line-height: 1.8;
    padding: 0 12px; max-width: 100%;
  }
  .nh-hero-sub { padding: 0 12px; font-size: 13px; }
  .nh-hero-status {
    font-size: 9px; letter-spacing: .16em;
    padding: 8px 14px; gap: 8px;
  }
  .nh-section-title { font-size: clamp(24px, 7.2vw, 32px); }
  .nh-contact-headline { font-size: clamp(34px, 10vw, 44px); }
  .nh-why-headline { font-size: clamp(22px, 6.4vw, 30px); }
  .nh-process-grid { grid-template-columns: 1fr; }
  .nh-process-step { border-right: none; border-bottom: 1px solid var(--line2); }
  .nh-process-step:last-child { border-bottom: none; }
  .nh-midcta-inner { flex-direction: column; gap: 20px; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .nh-hero-label span, .nh-hero-title .line-inner, .nh-hero-sub span, .nh-hero-ctas, .nh-hero-status {
    transform: none !important; opacity: 1 !important;
  }
}
