/* ============================================================
   CREATIVE FLOW STUDIOS — design system
   Ref: Ferrari design language — obsidian/white, single red
   accent, wide-tracked engineered type, 0-radius, no shadows.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #101417;
  --surface: #14191d;
  --surface-2: #191f23;
  --surface-3: #20272c;
  --line: #232c31;
  --line-strong: #34424a;
  --ink: #f2efea;
  --ink-dim: #a8a49e;
  --ink-faint: #6d6a66;
  --red: #3fd9c8;   /* v7 accent — kept as --red to limit blast radius */
  --rec: #ff2800;   /* REC tally lights only — kept red like a real camera */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --track: 0.08em;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

::selection { background: var(--red); color: #0c1114; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Utilities ---------- */
.mono {
  font-family: var(--font-mono);
  letter-spacing: var(--track);
  text-transform: uppercase;
}

.skip {
  position: fixed; top: -48px; left: 16px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 12px;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 0;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  min-height: 44px;
}
.btn-solid { background: var(--red); color: #0c1114; }
.btn-solid:hover { background: #fff; color: #000; }
.btn-line { border-color: var(--ink-dim); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--red); color: var(--red); }
.btn-block { width: 100%; }

/* ---------- Progress bar ---------- */
#scrollProgress {
  position: fixed; top: 0; left: 0; z-index: 120;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* ---------- Header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 10px 0;
  transition: padding .25s ease, background-color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.head-inner {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-head.is-stuck {
  background: #101417;
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-svg {
  display: block; flex: none;
  width: 40px; height: 40px;
}
.brand-word {
  font-size: 17px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
}
.brand-word b { font-weight: 700; color: var(--ink-dim); }

.site-head nav { display: flex; gap: 30px; }
.site-head nav a {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim); transition: color .15s ease;
}
.site-head nav a:hover { color: var(--red); }

.head-right { display: flex; align-items: center; gap: 16px; }
.head-right .btn { padding: 11px 20px; font-size: 11px; }
.rec-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); display: inline-block;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }

.head-spacer { height: 64px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--bg); }
.hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
  filter: saturate(.85) contrast(1.05);
  background: var(--bg) url('media/hero-reel.jpg') center / cover no-repeat;
}
.scanlines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.25) 38%, rgba(5,5,5,.28) 62%, rgba(5,5,5,.94) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(5,5,5,.55) 100%);
}

/* frame corners */
.hero-frame { position: absolute; inset: 26px; z-index: 0; pointer-events: none; }
.hf { position: absolute; width: 22px; height: 22px; border: 0 solid var(--line-strong); }
.hf-tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.hf-tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.hf-bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hf-br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

/* HUD */
.hero-hud {
  position: absolute; top: 30px; left: 50%;
  width: min(calc(var(--max) + 2 * var(--pad)), 100%);
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 0 var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.hud-left, .hud-right { display: flex; align-items: center; gap: 12px; }
.rec-big {
  width: 8px; height: 8px;
  background: var(--rec); /* the one true REC light — red, next to the counter */
  box-shadow: 0 0 8px rgba(255,40,0,.6);
}
.hud-tc { color: var(--ink); font-variant-numeric: tabular-nums; }
.hud-dim { color: var(--ink-faint); }

/* hero content */
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding: 0 var(--pad);
  box-sizing: border-box;
}
.hero-kicker {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 30px;
}
.hero-title {
  font-size: clamp(46px, 8.4vw, 118px);
  line-height: .96;
  font-weight: 700;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }

/* tally light in headline */
.tally {
  display: inline-block;
  width: .17em; height: .17em; border-radius: 50%;
  background: var(--red);
  margin-left: .14em;
  box-shadow: 0 0 .45em rgba(63,217,200,.8);
  animation: blink 1.6s ease-in-out infinite;
}
.tally-lg { width: 14px; height: 14px; margin-left: 18px; box-shadow: 0 0 18px rgba(63,217,200,.85); }

.hero-sub {
  max-width: 640px;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  margin-top: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px;
  left: 50%;
  transform: translateX(calc(-1 * min(calc(var(--max) + 2 * var(--pad)), 100vw) / 2 + var(--pad)));
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint);
}
.cue-bar { width: 1px; height: 44px; background: var(--line-strong); position: relative; overflow: hidden; }
.cue-bar::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--red);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 110%; } }

/* ---------- Tape marquee ---------- */
.tape {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 15px 0;
}
.tape-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.tape-track span {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-dim);
  white-space: nowrap;
}
.tape-track i { width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec {
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 140px) var(--pad) 0;
}
.sec-rates { max-width: none; }
.sec-rates > * { max-width: calc(var(--max) + 2 * var(--pad)); margin-left: auto; margin-right: auto; }

.sec-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 52px;
}
.sec-no {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; color: var(--red);
}
.sec-title {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700; text-transform: uppercase; letter-spacing: -.01em;
}
.sec-line { flex: 1; height: 1px; background: var(--line); align-self: center; }
.sec-link, .sec-note {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim);
  white-space: nowrap;
}
.sec-link:hover { color: var(--red); }

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--line);
  border: 1px solid var(--line);
}
.work-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
  display: block;
}
.work-card video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transform: scale(1.001);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.work-card:hover video { transform: scale(1.045); opacity: 1; }

/* standby state — visible until the reel file exists and plays */
.work-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(5,5,5,.05) 30%, rgba(5,5,5,.82) 82%);
}
.work-tag {
  position: absolute; top: 18px; left: 20px;
  font-size: 10px; color: var(--ink-dim);
  padding: 7px 10px;
  background: rgba(5,5,5,.55);
  border-left: 2px solid var(--red);
}
.work-title {
  position: absolute; left: 20px; bottom: 44px;
  font-size: clamp(19px, 2vw, 26px); font-weight: 600;
  text-transform: uppercase; letter-spacing: .02em;
}
.work-meta {
  position: absolute; left: 20px; bottom: 20px;
  font-size: 12px; color: var(--ink-dim);
}
.work-hover {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #0c1114;
  padding: 7px 10px;
  background: rgba(63,217,200,.92);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

/* ---------- Services ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid;
  grid-template-columns: 90px 1fr 130px;
  gap: 28px;
  align-items: start;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.svc:hover { background: var(--surface); }
.svc-no { font-size: 11px; color: var(--ink-faint); padding-top: 8px; }
.svc:hover .svc-no { color: var(--red); }
.svc-body h3 {
  font-size: clamp(19px, 2.2vw, 27px);
  font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: 12px;
}
.svc-body p { color: var(--ink-dim); font-size: 14.5px; max-width: 640px; }
.svc-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.svc-specs li {
  font-size: 10px; color: var(--ink-dim);
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
}
.svc-link {
  justify-self: end;
  font-size: 11px; color: var(--ink-dim);
  padding-top: 8px;
  transition: color .15s ease;
  white-space: nowrap;
}
.svc-link:hover { color: var(--red); }

/* ---------- Rates ---------- */
.sec-rates {
  margin-top: clamp(76px, 10vw, 140px);
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding-top: clamp(76px, 10vw, 130px);
}
.sec-rates .sec-head,
.sec-rates .rates-grid,
.sec-rates .rates-note { padding-left: var(--pad); padding-right: var(--pad); }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rate-card {
  background: var(--bg);
  padding: 30px 26px 26px;
  display: flex; flex-direction: column;
  transition: background .2s ease;
}
.rate-card:hover { background: var(--surface-2); }
.rate-top { font-size: 14px; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 22px; }
.rate-card .rate-top { color: var(--red); }  /* shoot-rate teal, applied to every card per Sean */
.rate-price {
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1;
}
.rate-unit { font-size: 10px; color: var(--ink-dim); margin: 12px 0 24px; }
.rate-list { flex: 1; margin-bottom: 26px; }
.rate-list li {
  font-size: 13px; color: var(--ink-dim);
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.rate-list li::before { content: "—"; color: var(--red); margin-right: 10px; }
.rates-note {
  font-size: 10.5px; color: var(--ink-faint);
  padding-top: 26px; padding-bottom: 34px;
}

/* ---------- Gear ---------- */
.gear-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gear-col { background: var(--bg); padding: 34px 28px; }
.gear-col h3 {
  font-size: 11px; color: var(--red);
  margin-bottom: 22px; font-weight: 500;
}
.gear-col li {
  font-size: 14px; color: var(--ink-dim);
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.gear-col li:first-child { border-top: 0; padding-top: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-photo { position: relative; margin: 0; }
.about-grid { align-items: stretch !important; }
.about-photo {
  display: flex; flex-direction: column;
  height: 100%;
}
.about-photo img {
  width: 100%; flex: 1 1 auto; height: auto; min-height: 0;
  object-fit: cover; object-position: center 30%;
  filter: saturate(.9) contrast(1.03);
  border: 1px solid var(--line-strong);
}
.about-photo figcaption {
  margin-top: 12px; font-size: 10px; color: var(--ink-faint);
}
.img-note { display: none; font-size: 9px; color: var(--ink-faint); margin-top: 6px; }
.about-photo.is-missing .img-note { display: inline-block; }

.about-lede {
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 600; line-height: 1.3; letter-spacing: -.01em;
  margin-bottom: 26px;
}
.about-copy > p:not(.about-lede) {
  color: var(--ink-dim); font-size: 15px;
  margin-bottom: 16px; max-width: 640px;
}
.about-facts {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.about-facts div {
  display: flex; gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.about-facts span { color: var(--ink-faint); width: 92px; flex: none; }
.about-facts div { color: var(--ink); }
.about-insta {
  display: inline-block; margin-top: 28px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim); border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: color .15s ease, border-color .15s ease;
}
.about-insta:hover { color: var(--red); border-color: var(--red); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 500;
  cursor: pointer;
  transition: color .15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--red); }
.faq-x { position: relative; width: 14px; height: 14px; flex: none; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--ink-dim);
  transition: transform .2s ease, background .2s ease;
}
.faq-x::before { left: 0; top: 6px; width: 14px; height: 1.5px; }
.faq-x::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
details[open] .faq-x::after { transform: rotate(90deg); }
details[open] .faq-x::before, details[open] .faq-x::after { background: var(--red); }
.faq-a { padding: 0 4px 26px; }
.faq-a p { color: var(--ink-dim); font-size: 15px; max-width: 820px; }

/* ---------- CTA / contact ---------- */
.sec-cta {
  margin-top: clamp(76px, 10vw, 140px);
  max-width: none;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(63,217,200,.06), transparent 60%),
    var(--surface);
  padding-top: clamp(76px, 9vw, 120px);
  padding-bottom: clamp(60px, 7vw, 100px);
}
.cta-head, .cta-grid {
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.cta-title {
  font-size: clamp(38px, 6vw, 84px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.015em; line-height: 1;
}
.cta-sub { color: var(--ink-dim); max-width: 560px; margin-top: 22px; font-size: 15.5px; }

.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr;
  gap: clamp(36px, 5vw, 80px);
  margin-top: 56px;
  align-items: start;
}

.fld { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fld label { font-size: 10px; color: var(--ink-faint); }
.fld label .opt { color: var(--ink-faint); opacity: .6; text-transform: none; letter-spacing: .06em; }
.fld input, .fld select, .fld textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: inherit; font-size: 14px;
  padding: 13px 14px;
  border-radius: 0;
  transition: border-color .15s ease;
  width: 100%;
}
.fld select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.fld textarea { resize: vertical; min-height: 120px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--red);
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--ink-faint); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .5; }

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 8px;
}
.form-note { font-size: 10px; color: var(--ink-faint); }
.form-ok, .form-err { margin-top: 16px; font-size: 11px; }
.form-ok { color: #3fd9c8; }
.form-err { color: var(--red); }

.cta-side { display: flex; flex-direction: column; gap: 30px; }
.side-block h3 { font-size: 10px; color: var(--red); font-weight: 500; margin-bottom: 12px; }
.side-block p { color: var(--ink-dim); font-size: 13.5px; }
.side-big {
  display: block; font-size: clamp(17px, 1.8vw, 21px); font-weight: 600;
  margin-bottom: 8px; overflow-wrap: anywhere;
  transition: color .15s ease;
}
.side-big:hover { color: var(--red); }
.side-line {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .1em; color: var(--ink-dim); margin-bottom: 6px;
  transition: color .15s ease;
}
.side-line:hover { color: var(--red); }
.side-note { font-size: 10px; color: var(--ink-faint); margin-top: 8px; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--bg); }
.foot-grid {
  max-width: calc(var(--max) + 2 * var(--pad)); margin: 0 auto;
  padding: 56px var(--pad) 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr .9fr;
  gap: 40px;
}
.foot-brand { display: flex; flex-direction: column; }
.foot-brand-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.foot-mark {
  width: 34px; height: 34px;
  background: url('assets/cfs-v7-monogram-on-dark.svg') center / contain no-repeat;
  flex: none;
}
.foot-word { font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; line-height: 1; }
.foot-tag { margin-top: 0; font-size: 10px; color: var(--ink-faint); }
.foot-ig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-content: start;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-2);
  overflow: hidden;
  display: block;
}
.ig-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .88;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.ig-tile:hover img { transform: scale(1.06); opacity: 1; }
/* standby state — visible until the post image exists */
.ig-standby {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: opacity .4s ease;
}
.ig-standby::before, .ig-standby::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 0 solid var(--line-strong);
}
.ig-standby::before { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.ig-standby::after { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }
.ig-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px rgba(63,217,200,.7);
  animation: blink 1.6s ease-in-out infinite;
}
.ig-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint); text-align: center; line-height: 1.9;
}
.ig-tile.has-img .ig-standby { opacity: 0; pointer-events: none; }
.ig-chip {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; color: #0c1114;
  padding: 5px 8px;
  background: rgba(63,217,200,.92);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.ig-tile:hover .ig-chip, .ig-tile:focus-visible .ig-chip { opacity: 1; transform: translateY(0); }
.ig-cap {
  position: absolute; left: 10px; bottom: 10px;
  font-size: 9px; color: var(--ink-dim);
  padding: 4px 7px;
  background: rgba(16,20,23,.72);
}
.foot-meta { text-align: right; }
.foot-insta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-dim);
}
.foot-insta:hover { color: var(--red); }
.foot-meta p { margin-top: 12px; font-size: 10px; color: var(--ink-faint); line-height: 1.8; }
.foot-bottom a { color: inherit; }
.foot-bottom a:hover { color: var(--red); }
.foot-bottom {
  max-width: calc(var(--max) + 2 * var(--pad)); margin: 0 auto;
  padding: 18px var(--pad) 30px;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: 9px; color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

/* ---------- Reveal on scroll ---------- */
html.js .work-card, html.js .svc, html.js .rate-card, html.js .gear-col, html.js .about-photo, html.js .about-copy > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
html.js .work-card.in, html.js .svc.in, html.js .rate-card.in, html.js .gear-col.in, html.js .about-photo.in, html.js .about-copy > *.in {
  opacity: 1; transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tape-track { animation: none; }
  .rec-dot, .tally, .cue-bar::after { animation: none; }
  .hero-media video { display: none; } /* static poster remains */
  .hero-title .line > span { animation: none; transform: none; }
  html.js .work-card, html.js .svc, html.js .rate-card, html.js .gear-col, html.js .about-photo, html.js .about-copy > * {
    opacity: 1; transform: none; transition: none;
  }
  .work-card video { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1248px) {
  .site-head nav { gap: 18px; }
  .site-head nav a { font-size: 11px; }
  .brand-svg { width: 34px; height: 34px; }
  .brand-word { font-size: 14px; }
}

@media (max-width: 1080px) {
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-head nav { display: none; }
  .head-spacer { height: 76px; }
  .svc { grid-template-columns: 56px 1fr; }
  .svc-link { grid-column: 2; justify-self: start; padding-top: 0; }
  .gear-cols { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; }
  .cta-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-ig { gap: 4px; }
  .foot-meta { text-align: left; }
  .hero-hud .hud-right { display: none; }
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; }
  .fld-row { grid-template-columns: 1fr; gap: 0; }
  .fld { margin-bottom: 14px; }
  .form-foot { flex-direction: column; align-items: flex-start; }
  .sec-head { flex-wrap: wrap; }
  .sec-line { display: none; }
  .brand-word { font-size: 15px; letter-spacing: .14em; }
  .head-right .btn { padding: 9px 14px; font-size: 10px; }
  .brand-svg { width: 30px; height: 30px; }
  .brand-word { font-size: 13px; }
  .hero-frame { inset: 14px; }
  .hero-hud { top: 20px; }
}


/* ============================================================
   SEO CONVERSION ADDITIONS (stats / segments / addons)
   ============================================================ */

/* stats band */
.stats-band { padding-top: clamp(48px, 6vw, 80px); padding-bottom: 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 34px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-n {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-n::after { content: "+"; color: var(--red); font-weight: 600; }
.stat-l { font-size: 10px; color: var(--ink-dim); }

/* services intro + buyer segmentation */
.svc-intro { color: var(--ink-dim); font-size: 15px; max-width: 640px; margin: -28px 0 40px; }
.svc-for {
  font-size: 10px; color: var(--red);
  margin-bottom: 10px;
}

/* 2-col rates grid */
.rates-grid-2 { grid-template-columns: repeat(2, 1fr); }

.rate-per {
  font-size: .45em; font-weight: 500;
  color: var(--ink-dim); margin-left: 2px;
}

/* addons row */
.addons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 26px;
}
.addon {
  background: var(--surface);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.addon span:first-child { font-size: 9.5px; color: var(--ink-dim); }
.addon-p { font-size: 17px; font-weight: 600; color: var(--ink); }

@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .addons { grid-template-columns: repeat(2, 1fr); }
}


/* ex GST emphasis */
.gst-strong {
  font-weight: 700;
  color: var(--red);
}


/* ============================================================
   LITE-YOUTUBE WORK CARDS
   ============================================================ */
.work-card-yt { cursor: pointer; }
.yt-lite {
  position: absolute; inset: 0;
  background: var(--surface-2);
}
.yt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .85;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.work-card-yt:hover .yt-thumb { transform: scale(1.045); opacity: 1; }
.work-card-yt::after {
  content: "PLAY ▶";
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .18em; color: #0c1114;
  background: rgba(63,217,200,.92);
  padding: 5px 9px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1;
}
.work-card-yt:hover::after { opacity: 1; transform: none; }
.work-card-yt.playing::after { display: none; }
.yt-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 2;
}
.work-card-yt.playing .yt-lite,
.work-card-yt.playing .work-scrim,
.work-card-yt.playing .work-tag,
.work-card-yt.playing .work-title,
.work-card-yt.playing .work-meta { display: none; }


/* service-page heroes: square-source video + poster fallbacks */
.svc-hero .hero-media video { background: var(--bg) center / cover no-repeat; }
.svc-hero[data-hero="motorsport"] .hero-media video { background-image: url('media/promo-motorsport.jpg'); }
.svc-hero[data-hero="corporate"] .hero-media video { background-image: url('media/promo-corporate.jpg'); }
.svc-hero[data-hero="realestate"] .hero-media video { background-image: url('media/promo-realestate.jpg'); }
.svc-hero[data-hero="commercial"] .hero-media video { background-image: url('media/promo-commercial.jpg'); }


/* ---------- Current-page nav highlight + cross-page consistency ---------- */
.site-head nav a.nav-current {
  color: var(--accent, #3FD9C8);
  font-weight: 600;
}

/* service pages must match index nav metrics exactly */
.svc-page .site-head nav a {
  font-size: 13px;
}
@media (max-width: 1248px) {
  .svc-page .site-head nav a { font-size: 11px; }
}
