/* ============================================================
   Picture Perfect Video — v2 LUXURY EDITORIAL
   Serif display + dark dominance + cinematic motion
   ============================================================ */

:root {
  /* Brand palette derived from official PPV logo */
  --noir: #0A0F1C;
  --charcoal: #0F1827;          /* deep navy (primary dark surface) */
  --charcoal-deep: #08101C;     /* deepest navy */
  --charcoal-soft: #1F2A4A;     /* mid navy */
  --copper: #A78A56;            /* brass mid (was copper) */
  --copper-bright: #C9A86A;     /* brass highlight */
  --copper-soft: rgba(167, 138, 86, 0.14);
  --punch: #E5552B;             /* orange-red play accent for primary CTAs / hot moments */
  --punch-soft: rgba(229, 85, 43, 0.18);
  --bone: #F2EEE8;
  --bone-deep: #E5DFD4;
  --gray-light: #B8B5B0;
  --gray-mid: #6B6863;
  --gray-dark: #1A2540;
  --line: rgba(201, 168, 106, 0.32);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-soft-dark: rgba(0, 0, 0, 0.08);
}* { box-sizing: border-box; margin: 0; padding: 0; }html { scroll-behavior: smooth; }body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  color: var(--bone);
  background: var(--noir);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}a { color: inherit; text-decoration: none; }img { max-width: 100%; display: block; }/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }.reveal.revealed { opacity: 1; transform: translateY(0); }.reveal.delay-1 { transition-delay: 0.1s; }.reveal.delay-2 { transition-delay: 0.2s; }.reveal.delay-3 { transition-delay: 0.3s; }.lightbox-meta .title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {.lightbox-meta .title { font-size: 16px; }
}/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}.preloader.done { opacity: 0; visibility: hidden; }.preloader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: preloadFade 1.2s 0.1s ease forwards;
}.preloader-mark > img {
  width: clamp(220px, 32vw, 340px);
  height: auto;
  display: block;
  object-fit: contain;
}/* Film reel ticker under the logo */
.preloader-reel {
  width: clamp(280px, 60vw, 720px);
  height: 56px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}.preloader-reel::before,
.preloader-reel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background-image:
    repeating-linear-gradient(90deg,
      var(--bone) 0 6px,
      transparent 6px 14px);
  z-index: 2;
}.preloader-reel::before { top: 4px; }.preloader-reel::after { bottom: 4px; }.preloader-reel-track {
  display: flex;
  gap: 6px;
  padding: 14px 0;
  height: 100%;
  width: max-content;
  animation: reelScroll 6s linear infinite;
}.preloader-frame {
  flex: 0 0 auto;
  width: 36px;
  height: 26px;
  background: var(--charcoal-soft);
  border: 1px solid var(--copper);
  position: relative;
  overflow: hidden;
}.preloader-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 138, 90, 0.7) 0%, transparent 40%),
    linear-gradient(135deg, rgba(15, 24, 39, 0.8) 0%, rgba(229, 85, 43, 0.4) 100%);
}.preloader-frame:nth-child(odd)::after {
  background:
    radial-gradient(circle at 60% 60%, rgba(229, 85, 43, 0.6) 0%, transparent 50%),
    linear-gradient(45deg, rgba(15, 24, 39, 0.9) 0%, rgba(167, 138, 86, 0.5) 100%);
}.preloader-frame:nth-child(3n)::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.7) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 24, 39, 0.8) 0%, rgba(15, 24, 39, 1) 100%);
}
@keyframes reelScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}/* Loading caption + progress line */
.preloader-caption {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper-bright);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}.preloader-caption::before,
.preloader-caption::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--copper);
}
@keyframes preloadFade { to { opacity: 1; } }
@keyframes preloadLine { to { transform: scaleX(1); } }/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
}.nav {
  max-width: 1480px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}.logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}.logo .logo-mark {
  height: 44px;
  width: auto;       /* preserve real PNG aspect ratio — no morphing */
  display: block;
  object-fit: contain;
}.logo .logo-text { display: inline-block; }.logo .logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-bright);
  letter-spacing: -0.005em;
  margin-left: 2px;
}.footer-brand .logo-text em {
  font-style: italic; font-weight: 400;
  color: var(--copper-bright);
  margin-left: 3px;
}/* ============================================================
   ANIMATION POLISH — cursor,
nav,
scroll progress,
magnetic
   ============================================================ */

/* Custom cursor disabled — Charles preferred default cursor */

/* Animated nav underline */
.nav-links a:not(.phone-link) {
  position: relative;
  padding-bottom: 4px;
}.nav-links a:not(.phone-link)::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}.nav-links a:not(.phone-link):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}.nav-links a.active::after {
  transform: scaleX(1) !important;
  transform-origin: left;
  background: var(--copper-bright);
}/* Magnetic primary button — JS-driven,
here we set the smooth transform transition */
.btn-primary {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s, box-shadow 0.4s;
}/* Hero word reveal — simple,
readable. No blur. */

/* Service card subtle glow on hover */
.svc-card { transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }.svc-card:hover { box-shadow: 0 30px 60px -20px rgba(184, 115, 51, 0.25); }/* Work card 3D tilt on hover (subtle) */
.work-card { transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); transform-style: preserve-3d; perspective: 1000px; }.work-card:hover { transform: translateY(-4px); }.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
  list-style: none;
}.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.25s;
  position: relative;
}.nav-links a:hover { color: var(--bone); }.nav-links a.active { color: var(--copper-bright); }.nav-links a.active::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: -8px;
  height: 1px;
  background: var(--copper);
}.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.25s;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
}.phone-link:hover {
  color: var(--noir);
  background: var(--copper);
  border-color: var(--copper);
}.phone-link svg { width: 14px; height: 14px; stroke: currentColor; }/* Hamburger */
.hamburger {
  display: none;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--bone);
  transition: all 0.3s;
}/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 42px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  text-align: center;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}.btn-primary {
  background: #FFFFFF;
  color: #0A0F1C;
  border-radius: 980px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
}.btn-primary:hover {
  background: #F2F2F2;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.18);
}.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 980px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}.btn-secondary:hover {
  background: rgba(255,255,255,0.20);
  border-color: #FFFFFF;
}.btn-ghost {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--noir);
  border-radius: 100px;
}.btn-ghost:hover { background: var(--noir); color: var(--bone); }.btn svg { width: 12px; height: 12px; stroke: currentColor; }/* ============================================================
   HERO (homepage) — cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--noir);
  color: var(--bone);
}.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}.hero-content { z-index: 2; }.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 3px),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1280px;
  padding: 0 40px;
}.eyebrow {
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}.eyebrow.eyebrow-cities {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  margin-bottom: 22px;
  color: #E8B563;
}.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--copper);
  opacity: 0.6;
}.hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 108px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 28px;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  animation: wordReveal 1.0s ease forwards;
  margin: 0 0.18em 0 0;
}.hero h1 .word:nth-child(1) { animation-delay: 0.30s; }.hero h1 .word:nth-child(2) { animation-delay: 0.42s; }.hero h1 .word:nth-child(3) { animation-delay: 0.54s; }.hero h1 .word:nth-child(4) { animation-delay: 0.66s; }.hero h1 .word:nth-child(5) { animation-delay: 0.78s; }.hero h1 .word:nth-child(6) { animation-delay: 0.90s; }.hero h1 .word:nth-child(7) { animation-delay: 1.02s; color: #E8B563; }.hero h1 br { display: none; }
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}.hero-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 400;
  color: #FFFFFF;
  text-shadow: 0 1px 14px rgba(0,0,0,0.65);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  opacity: 0;
  animation: fadeUp 1.2s 1.4s forwards;
}.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 1.6s forwards;
}.scroll-cue {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-light);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1.5s 2s forwards;
}.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--copper) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}.statement-quote .accent { color: var(--copper-bright); }/* ============================================================
   STATS SECTION (with animated counters)
   ============================================================ */
.stats-section {
  background: var(--charcoal);
  padding: 80px 40px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}.stats-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}.stat-block {
  text-align: left;
  padding: 0 20px;
  border-left: 1px solid var(--line-soft);
}.stat-block:first-child { border-left: none; padding-left: 0; }.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(60px, 7vw, 96px);
  color: var(--copper);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}.stat-num .plus,
.stat-num .small {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
  font-style: italic;
  color: var(--copper-bright);
}.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
}/* ============================================================
   TRUSTED BY (refined)
   ============================================================ */
.trusted {
  background: #0F1827;
  padding: 80px 40px 60px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}.trusted-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #E8B563;
  margin-bottom: 60px;
}/* ============================================================
   SECTION GENERAL
   ============================================================ */
.section {
  padding: 160px 40px;
  max-width: 1480px;
  margin: 0 auto;
}.section-eyebrow {
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--copper);
}.section-h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 1080px;
}.section-h2 .accent { color: #E8B563; font-style: normal; font-weight: 700; }.section-lede {
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 400;
  color: #D4D8DE;
  max-width: 720px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}/* ============================================================
   PAGE HERO (interior)
   ============================================================ */
.page-hero {
  background: var(--noir);
  color: var(--bone);
  padding: 220px 40px 140px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}/* Pexels ambient video backdrop variant — big cinematic hero like homepage */
.page-hero.page-hero-video {
  min-height: 78vh;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
  align-items: center;
}/* Abstract animated hero — orbs + dot grid,
no video */
.page-hero.page-hero-abstract {
  min-height: 72vh;
  padding-top: 190px;
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 70% 25%, #14203A 0%, var(--noir) 65%);
}.page-hero.page-hero-abstract .page-hero-inner { position: relative; z-index: 2; width: 100%; }.page-hero.page-hero-abstract::before,
.page-hero.page-hero-abstract::after { display: none; }
@media (max-width: 700px) {.page-hero.page-hero-abstract { min-height: 58vh; padding-top: 140px; padding-bottom: 100px; }
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}.page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.40) 0%, rgba(7, 16, 28, 0.78) 70%, var(--noir) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(232, 181, 99, 0.16) 0%, transparent 55%);
  pointer-events: none;
}.page-hero.page-hero-video .page-hero-inner { position: relative; z-index: 2; width: 100%; }/* Scroll-down cue — same as homepage */
.page-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 242, 236, 0.75);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s 1.6s forwards;
}.page-hero-scroll .scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(232, 181, 99, 0.9), rgba(232, 181, 99, 0));
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 700px) {.page-hero.page-hero-video { min-height: 60vh; padding-top: 140px; padding-bottom: 140px; }.page-hero-scroll { bottom: 22px; font-size: 9px; }.page-hero-scroll .scroll-line { height: 28px; }
}/* AI filter pill — slight differentiation (violet glint) */
.filter-pill-ai .pill-label::before {
  content: '◆ ';
  color: rgba(180, 140, 240, 0.85);
  font-size: 9px;
  margin-right: 2px;
}.filter-pill-ai.active { background: linear-gradient(135deg, #E8B563 0%, #B48CF0 100%); border-color: #B48CF0; }.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 700px; height: 700px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212, 185, 122, 0.22) 0%, rgba(212, 185, 122, 0.08) 30%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(229, 85, 43, 0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}.page-hero::after {
  content: '';
  position: absolute;
  left: -120px; bottom: -80px;
  width: 720px; height: 220px;
  background-image: url('film-ribbon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: 0.25;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: 0;
}.page-hero-inner { position: relative; z-index: 1; }.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}.page-hero h1 {
  /* Display per PPV Brand Book V2.3 — Inter 600, -0.045em. Matches homepage hero. */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 7vw, 108px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 1100px;
  color: var(--bone);
}.page-hero h1 .accent {
  background: linear-gradient(120deg, #E8B563 0%, #FFFFFF 50%, #E8B563 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 0.08em;
  animation: gold-shimmer 4.5s ease-in-out 1.6s infinite;
}/* Staggered word reveal — matches motion of homepage hero */
.page-hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordReveal 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  margin: 0 0.16em 0 0;
}.page-hero h1 .word:nth-child(1) { animation-delay: 0.20s; }.page-hero h1 .word:nth-child(2) { animation-delay: 0.30s; }.page-hero h1 .word:nth-child(3) { animation-delay: 0.40s; }.page-hero h1 .word:nth-child(4) { animation-delay: 0.50s; }.page-hero h1 .word:nth-child(5) { animation-delay: 0.60s; }.page-hero h1 .word:nth-child(6) { animation-delay: 0.70s; }.page-hero h1 .word:nth-child(7) { animation-delay: 0.80s; }.page-hero h1 .word:nth-child(8) { animation-delay: 0.90s; }.page-hero h1 .word:nth-child(9) { animation-delay: 1.00s; }.page-hero h1 .word:nth-child(10) { animation-delay: 1.10s; }.page-hero h1 .word:nth-child(11) { animation-delay: 1.20s; }.page-hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gray-light);
  max-width: 720px;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp 1.0s 1.3s forwards;
}
@media (max-width: 700px) {.page-hero { padding: 160px 22px 90px; }.page-hero h1 { font-size: clamp(34px, 11vw, 64px); letter-spacing: -0.04em; }.page-hero p { font-size: 16px; }
}/* Stat already styled above; keep these subdued for in-section variant */
.about-stats .stat-num { font-size: clamp(48px, 5vw, 68px); }/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--noir);
  padding: 90px 0 100px;
  border-top: 1px solid var(--line-soft);
}.services-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}.services-head { margin-bottom: 56px; text-align: center; }
.services-head .section-h2 { margin-left: auto; margin-right: auto; max-width: 980px; }.services-lede {
  max-width: 720px;
  margin: 22px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #B6BCC8;
}.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}.svc-card {
  background: transparent;
  padding: 56px 44px 64px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: background 0.5s ease;
}.svc-card:last-child { border-right: none; }.svc-card:hover { background: var(--charcoal); }.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}.svc-card:hover::before { transform: scaleX(1); }.svc-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin-bottom: 36px;
}.svc-icon {
  width: 56px; height: 56px;
  margin-bottom: 36px;
  color: var(--copper);
}.svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1; }.svc-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 18px;
  line-height: 1.15;
}.svc-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
  flex: 1;
}.svc-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s, color 0.3s;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--copper);
}.svc-card:hover .svc-link { gap: 20px; color: var(--bone); }.svc-link svg { width: 12px; height: 12px; stroke: currentColor; }.svc-detail.alt { background: var(--charcoal); }.svc-visual {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  position: relative;
  overflow: hidden;
  filter: grayscale(0.2) contrast(1.05);
}.svc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(184, 115, 51, 0.18) 100%);
}.svc-gallery .tile {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s;
  overflow: hidden;
}.svc-gallery .tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 24, 39, 0.25) 0%, rgba(184, 115, 51, 0.18) 100%);
}.svc-gallery .tile:hover { transform: scale(1.02); filter: grayscale(0) contrast(1.05); }.svc-gallery .tile.tall { grid-row: span 2; aspect-ratio: auto; }/* ============================================================
   WORK / CASE STUDIES — asymmetric grid
   ============================================================ */
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px;
}.work-head .right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }.work-grid-asymmetric .work-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}.work-grid-asymmetric .work-card:nth-child(2),
.work-grid-asymmetric .work-card:nth-child(3) {
  aspect-ratio: 5 / 4;
}.work-grid-asymmetric .work-card:nth-child(4) {
  grid-column: 2 / 4;
  aspect-ratio: 16 / 7;
}.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}.work-grid.two-col { grid-template-columns: repeat(2, 1fr); }.work-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}.work-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(232, 181, 99, 0.35);
  transform: translateY(-4px);
}/* Cinematic letterbox lines that animate in on hover */
.work-card::before,
.work-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), transparent);
  z-index: 2;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}.work-card::after {
  top: auto; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  transform: translateY(100%);
}.work-card:hover::before { transform: translateY(0); }.work-card:hover::after { transform: translateY(0); }/* Don't apply cinema bars to asymmetric grid (wide cards look weird with them) */
.work-grid-asymmetric .work-card::before,
.work-grid-asymmetric .work-card::after { display: none; }/* Make every 7th card span 2 cols for visual rhythm */
.work-grid .work-card:nth-child(11n+3) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
@media (max-width: 1280px) {.work-grid { grid-template-columns: repeat(3, 1fr); }.work-grid .work-card:nth-child(11n+3) { grid-column: span 1; aspect-ratio: 4 / 5; }
}
@media (max-width: 900px) {.work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }.work-grid .work-card:nth-child(11n+3) { grid-column: span 1; aspect-ratio: 4 / 5; }
}
@media (max-width: 520px) {.work-grid { grid-template-columns: 1fr; gap: 14px; }
}.work-card .thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
}.work-card:hover .thumb { transform: scale(1.08); filter: grayscale(0) contrast(1.05); }.work-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.85) 100%);
  transition: background 0.5s ease;
}.work-card:hover .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.65) 80%, rgba(0,0,0,0.92) 100%);
}.work-card .meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--bone);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
}.work-card:hover .meta { transform: translateY(0); opacity: 1; }.work-card .vertical {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 8px;
}.work-card .title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin-bottom: 4px;
}
@media (min-width: 900px) {.work-card .title { font-size: 19px; }.work-card .meta { bottom: 22px; left: 22px; right: 22px; }
}.work-card .blurb {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.01em;
}.play-btn {
  position: absolute;
  top: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s;
}.work-card:hover .play-btn {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--noir);
  transform: scale(1.08);
}.play-btn svg { width: 14px; height: 14px; fill: currentColor; }/* Work page — sticky filter shell + interactive pills */
.work-section { position: relative; }.filter-shell {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(10, 15, 28, 0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid transparent;
  padding: 18px 0 14px;
  margin: 0 -40px 36px;
  padding-left: 40px; padding-right: 40px;
  transition: border-color 0.3s, box-shadow 0.3s;
}.filter-shell.is-stuck {
  border-bottom-color: rgba(232, 181, 99, 0.22);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}.results-meta {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
}.results-meta strong { color: var(--copper-bright); font-weight: 700; }.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  color: var(--gray-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  font-family: inherit;
  position: relative;
}.filter-pill:hover {
  border-color: var(--copper);
  color: var(--copper-bright);
  transform: translateY(-2px);
  background: rgba(232, 181, 99, 0.08);
}.filter-pill.active {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--noir);
  box-shadow: 0 8px 22px rgba(232, 181, 99, 0.35);
}.filter-pill .pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 20px;
  padding: 0 7px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: inherit;
}.filter-pill.active .pill-count { background: rgba(7, 16, 28, 0.20); color: var(--noir); }

@media (max-width: 700px) {.filter-shell { top: 56px; padding: 14px 18px 10px; margin: 0 -22px 22px; }.filter-bar { gap: 6px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }.filter-bar::-webkit-scrollbar { display: none; }.filter-pill { padding: 9px 14px; font-size: 10px; letter-spacing: 0.12em; flex-shrink: 0; }.filter-pill .pill-label { white-space: nowrap; }
}/* ----- card entrance + per-card interactive layer ----- */
.work-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--stagger, 0ms);
}.work-card.is-in { opacity: 1; transform: translateY(0); }.work-card:hover { z-index: 5; }.work-card .thumb { transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s; }.work-card:hover .thumb { transform: scale(1.08) rotate(0.4deg); filter: grayscale(0) contrast(1.08) saturate(1.05); }.work-card.is-in .card-badge { opacity: 1; transform: translateY(0); }.work-card:hover .card-view { opacity: 1; transform: translateX(0); }/* ----- empty-state when filter has 0 ----- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  margin: 40px auto;
  max-width: 520px;
}.empty-state .empty-emoji { font-size: 56px; margin-bottom: 14px; }.empty-state h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: 8px;
}.empty-state p {
  color: var(--gray-mid);
  margin-bottom: 24px;
}/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Founder split (photo + story) */
.founder-section {
  background: var(--noir);
  padding: 140px 40px;
  border-bottom: 1px solid var(--line-soft);
}.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
  align-items: center;
}.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  overflow: hidden;
  border-top: 3px solid var(--copper);
}.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.05);
}.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(15,24,39,0.45) 100%);
  pointer-events: none;
}.founder-photo .caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: var(--bone);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}.founder-photo .caption .name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--bone);
  margin-top: 4px;
}.founder-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 28px;
}.founder-copy h2 .accent { color: #E8B563; font-style: normal; font-weight: 700; }.founder-copy p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 22px;
}.founder-copy .signoff {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--copper-bright);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}/* Team section */
.team-section { background: var(--charcoal); padding: 140px 40px; border-top: 1px solid var(--line-soft); }.team-inner { max-width: 1280px; margin: 0 auto; }.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line-soft);
}.team-card {
  padding: 40px 32px 44px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s;
}.team-card:last-child { border-right: none; }.team-card:hover { background: var(--noir); }.team-card .role-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--copper);
  margin-bottom: 22px;
}.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--bone);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}.team-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

@media (max-width: 900px) {.founder-inner { grid-template-columns: 1fr; gap: 48px; }.founder-photo { aspect-ratio: 1 / 1; }.team-grid { grid-template-columns: 1fr; }.team-card { border-right: none; }.founder-section { padding: 80px 24px; }.team-section { padding: 80px 24px; }
}.story-section {
  padding: 160px 40px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--noir);
}.story-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 36px;
  max-width: 900px;
  color: var(--bone);
}.story-section p {
  font-size: 18px;
  color: var(--gray-light);
  font-weight: 300;
  margin-bottom: 26px;
  max-width: 740px;
  line-height: 1.75;
}.story-section .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--copper-bright);
  font-weight: 400;
  border-left: 1px solid var(--copper);
  padding-left: 36px;
  margin: 56px 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}.markets-strip {
  background: var(--charcoal);
  color: var(--bone);
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}.markets-grid {
  max-width: 1280px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}.market-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--bone);
  line-height: 1;
}.market-item h3 .accent { color: #E8B563; font-style: normal; font-weight: 700; }.market-item p {
  color: var(--gray-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}/* Values cards */
.values-section { background: var(--noir); padding: 160px 40px; }.values-inner { max-width: 1480px; margin: 0 auto; }.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line-soft);
}.value-card {
  background: transparent;
  padding: 56px 44px 64px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.4s;
}.value-card:last-child { border-right: none; }.value-card:hover { background: var(--charcoal); }.value-card .svc-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin-bottom: 28px;
}.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--bone);
  letter-spacing: -0.01em;
}.value-card p {
  font-size: 15px;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.7;
}/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px;
  background: var(--noir);
}.contact-form {
  background: var(--charcoal);
  padding: 56px;
  border-top: 1px solid var(--copper);
}.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 36px;
  color: var(--bone);
  letter-spacing: -0.01em;
}.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.form-group { margin-bottom: 22px; }.form-group.full { grid-column: 1 / -1; }.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 10px;
}.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: var(--bone);
  transition: border-color 0.3s;
}.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
}.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 4px center / 16px; padding-right: 28px; }.form-group select option { background: var(--charcoal); color: var(--bone); }.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  padding: 16px 0;
  border: 1px solid var(--line-soft);
  padding: 16px;
}.form-group textarea:focus { border-color: var(--copper); }.form-submit { width: 100%; margin-top: 16px; }.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 36px;
  color: var(--bone);
  letter-spacing: -0.01em;
}.contact-method {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}.contact-method:last-child { border-bottom: none; }.contact-method:hover .contact-icon { background: var(--copper); color: var(--noir); }.contact-method .label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 6px;
}.contact-method .value {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--bone);
  display: block;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}.contact-method a.value:hover { color: var(--copper-bright); }.contact-method .note { font-size: 13px; color: var(--gray-mid); margin-top: 6px; font-weight: 300; }/* Thank-you page */
.thanks-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px;
  background: var(--noir);
}.thanks-inner { max-width: 640px; }.thanks-inner svg { width: 72px; height: 72px; color: var(--copper); margin-bottom: 32px; stroke-width: 1; }.thanks-inner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--bone);
  letter-spacing: -0.02em;
}.thanks-inner h1 .accent { color: #E8B563; font-style: normal; font-weight: 700; }.thanks-inner p { font-size: 17px; color: var(--gray-light); margin-bottom: 40px; font-weight: 300; line-height: 1.7; }/* ============================================================
   CLOSING CTA BAND — cinematic
   ============================================================ */
.cta-band {
  background: var(--noir);
  color: var(--bone);
  padding: 180px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(212, 185, 122, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(184, 115, 51, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(229, 85, 43, 0.08) 0%, transparent 50%);
  pointer-events: none;
}.cta-band::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -40px;
  width: 600px; height: 180px;
  background-image: url('film-ribbon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.18;
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 0;
}.cta-inner { position: relative; z-index: 1; }.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}.cta-band .eyebrow { color: var(--copper-bright); animation: none; opacity: 1; }.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 24px 0 32px;
  color: var(--bone);
}.cta-band h2 .accent { color: #E8B563; font-style: normal; font-weight: 700; }.cta-band p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}.cta-meta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.06em;
}.cta-meta a { color: var(--bone); transition: color 0.3s; font-weight: 500; }.cta-meta a:hover { color: var(--copper-bright); }.cta-meta svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 10px; stroke: currentColor; fill: none; stroke-width: 1.5; }/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal-deep);
  color: var(--gray-light);
  padding: 100px 40px 0;
  border-top: 1px solid var(--line-soft);
}.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 72px;
}.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 28px;
}.footer-col p,
.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 2;
  display: block;
  transition: color 0.3s;
}.footer-col a:hover { color: var(--copper-bright); }.footer-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}.footer-brand .logo-mark { height: 60px; width: auto; display: block; object-fit: contain; }.footer-brand .logo-text { display: inline-block; }.footer-tagline {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 24px;
  max-width: 380px;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}.footer-cities {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 500;
}.socials { display: flex; gap: 12px; margin-top: 4px; }.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.3s;
}.socials a:hover { background: var(--copper); border-color: var(--copper); color: var(--noir); }.socials svg { width: 14px; height: 14px; fill: currentColor; }.footer-bar {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}.footer-bar a { color: var(--gray-mid); transition: color 0.3s; }.footer-bar a:hover { color: var(--copper-bright); }/* ============================================================
   SPEARHEAD-STYLE MONOCHROMATIC LOGO WALL
   ============================================================ */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 52px 40px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 5 * 40px) / 6);
  min-height: 68px;
}.logo-cell img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}/* SVG wordmarks are already pure white — don't filter */
.logo-cell img[src$=".svg"] { filter: none; }/* ============================================================
   POSITIONING — who we serve {
  background: #0A0F1C;
  padding: 70px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}.positioning-line .accent {
  color: #FFFFFF;
  font-weight: 700;
}/* ============================================================
   APPLE-STYLE PLAY-BUTTON FOR "WATCH THE REEL"
   ============================================================ */
.btn-reel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 980px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}.btn-reel .reel-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #E8B563;
  color: #0A0F1C;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}.btn-reel .reel-play svg {
  width: 12px; height: 12px;
  margin-left: 2px; /* visual centering of triangle */
}.btn-reel:hover {
  background: rgba(255,255,255,0.18);
  border-color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(232, 181, 99, 0.35);
}.btn-reel:hover .reel-play {
  background: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(232, 181, 99, 0.18);
}
/* Reel button — two icons (triangle + film reel), cross-fade on click */
.btn-reel .reel-play { position: relative; }
.btn-reel .reel-play-tri,
.btn-reel .reel-play-reel {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.btn-reel .reel-play-tri { opacity: 1; margin-left: 2px; }
.btn-reel .reel-play-reel { opacity: 0; width: 20px; height: 20px; }
.btn-reel.is-loading { pointer-events: none; }
.btn-reel.is-loading .reel-play { background: #E8B563; box-shadow: 0 0 0 8px rgba(232, 181, 99, 0.25); transform: scale(1.15); }
.btn-reel.is-loading .reel-play-tri { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
.btn-reel.is-loading .reel-play-reel { opacity: 1; transform: translate(-50%, -50%) rotate(720deg); }
.btn-reel.is-loading .btn-reel-label { opacity: 0.55; }

/* Reel modal — full-screen video lightbox */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reel-modal.is-open { pointer-events: auto; opacity: 1; }
.reel-modal-backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(232, 181, 99, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #07101C 0%, #0A1322 50%, #07101C 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.reel-modal-close {
  position: absolute;
  top: 26px; right: 28px;
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(232,181,99,0.10);
  border: 1px solid rgba(232,181,99,0.40);
  color: #E8B563;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.reel-modal-close:hover { background: rgba(232,181,99,0.22); border-color: #E8B563; transform: rotate(90deg) scale(1.05); }
.reel-modal-close svg { width: 20px; height: 20px; }

.reel-modal-inner {
  position: relative;
  z-index: 2;
  width: min(92vw, 1280px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: scale(0.82) translateY(20px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}
.reel-modal.is-open .reel-modal-inner { transform: scale(1) translateY(0); opacity: 1; }

.reel-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(232, 181, 99, 0.18);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 60px rgba(232, 181, 99, 0.20);
}
.reel-modal-video { width: 100%; height: 100%; display: block; background: #000; }

.reel-modal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(232,181,99,0.10), rgba(232,181,99,0.03));
  border: 1px solid rgba(232,181,99,0.30);
  backdrop-filter: blur(10px);
}
.reel-modal-cta-text { flex: 1; min-width: 0; }
.reel-modal-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.30em;
  text-transform: uppercase; color: #E8B563; margin-bottom: 6px;
}
.reel-modal-h {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -0.02em;
  color: #F5F2EC; line-height: 1.25;
}
.reel-modal-h .accent {
  background: linear-gradient(120deg, #E8B563 0%, #F5C97E 60%, #E8B563 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reel-modal-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.reel-modal-cta .btn-primary { background: #E8B563; color: #07101C; padding: 13px 22px; font-size: 14px; }
.reel-modal-cta .btn-primary:hover { background: #F5C97E; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232, 181, 99, 0.45); }
.reel-modal-cta .btn-primary svg { width: 14px; height: 14px; stroke: currentColor; margin-left: 6px; }
.btn-ghost-modal {
  display: inline-flex; align-items: center;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: #F5F2EC; text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.30);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-ghost-modal:hover { background: rgba(255,255,255,0.14); border-color: rgba(232,181,99,0.6); color: #E8B563; transform: translateY(-2px); }

@media (max-width: 720px) {
  .reel-modal-inner { gap: 18px; }
  .reel-modal-frame { border-radius: 12px; }
  .reel-modal-cta { flex-direction: column; text-align: center; padding: 20px 22px; }
  .reel-modal-cta-btns { width: 100%; flex-direction: column; }
  .reel-modal-cta .btn-primary, .btn-ghost-modal { width: 100%; justify-content: center; }
  .reel-modal-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}
.svc-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: #E8B563;
  margin-bottom: 16px;
}.svc-num.light { color: #FFFFFF; }.svc-deliverables.light li { color: #FFFFFF; }.svc-tagline.light { color: rgba(255,255,255,0.85); }.svc-deliverables-pills.light li {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.3);
}/* Apple-style scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}/* Stagger image scale on visible */
.svc-block.reveal .svc-split-img,
.svc-block.reveal .svc-events-tile {
  transform: scale(0.96);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}.svc-block.reveal.revealed .svc-split-img,
.svc-block.reveal.revealed .svc-events-tile {
  transform: scale(1);
}.svc-deliver-head .section-h2 {
  margin-left: auto;
  margin-right: auto;
}/* GHOST LIGHT BUTTON */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.3s ease;
}.btn-ghost-light:hover {
  background: #E8B563;
  border-color: #E8B563;
  color: #0A0F1C;
  transform: translateY(-1px);
}.btn-ghost-light svg { width: 12px; height: 12px; stroke: currentColor; }/* RESPONSIVE */
@media (max-width: 1024px) {
  .svc-block-split, .svc-block-events { grid-template-columns: 1fr; gap: 50px; }
  .svc-block-split.svc-reverse { direction: ltr; }
  .svc-deliver-grid, .svc-process-grid { grid-template-columns: repeat(2, 1fr); }
}/* ============================================================
   CONTACT PAGE V2 — cinematic backdrop + glassy form
   ============================================================ */
.contact-hero {
  position: relative;
  background: linear-gradient(180deg, #0A0F1C 0%, #0F1827 100%);
  padding: 160px 40px 80px;
  text-align: center;
  overflow: hidden;
}.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}.contact-hero h1 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #FFFFFF;
  margin: 16px 0 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}.contact-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.4vw, 22px);
  color: #C8CCD2;
  margin: 0 auto 0;
  max-width: 640px;
  line-height: 1.5;
}.contact-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}.contact-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}.contact-stat strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.02em;
  color: #E8B563;
  line-height: 1;
}.contact-stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8BDC5;
}/* MAIN CONTACT SECTION */
.contact-section {
  position: relative;
  background: #0A0F1C;
  padding: 80px 40px;
  overflow: hidden;
}.contact-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}/* FORM CARD */
.contact-form-card {
  background: rgba(15, 24, 39, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  min-width: 0;
}.contact-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #E8B563;
  background: rgba(232, 181, 99, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}.contact-card-h {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.05;
  margin: 0 0 28px;
}.contact-card-h.sv-center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }.contact-form-card form { display: flex; flex-direction: column; gap: 20px; }.contact-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.contact-form-card .form-group { display: flex; flex-direction: column; gap: 8px; }.contact-form-card .form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #A0A6AE;
}.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* 16px prevents iOS Safari zoom-on-focus */
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
}.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #E8B563;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 4px rgba(232, 181, 99, 0.12);
}.contact-form-card textarea { min-height: 130px; resize: vertical; }.contact-form-card .form-submit {
  margin-top: 8px;
  align-self: flex-start;
  padding: 16px 32px !important;
}/* INFO STACK */
.contact-info-stack { display: flex; flex-direction: column; gap: 14px; min-width: 0; }.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: rgba(15, 24, 39, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}.contact-card:hover {
  background: rgba(232, 181, 99, 0.06);
  border-color: rgba(232, 181, 99, 0.4);
  transform: translateX(4px);
}.contact-method-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 181, 99, 0.12);
  border-radius: 12px;
  color: #E8B563;
  flex-shrink: 0;
}.contact-method-icon svg { width: 22px; height: 22px; }.contact-method-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0A6AE;
  margin-bottom: 2px;
}.contact-method-val {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}.contact-method-note {
  font-size: 12px;
  color: #7A8089;
  margin-top: 2px;
}/* CTA card — gold-bordered */
.contact-card-cta {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 26px;
  background: linear-gradient(135deg, rgba(232,181,99,0.18) 0%, rgba(15,24,39,0.6) 100%);
  border: 1px solid rgba(232,181,99,0.4);
}.contact-card-cta:hover { transform: translateY(-3px); }.contact-card-cta h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}.contact-card-cta p {
  font-size: 14px;
  color: #C8CCD2;
  margin: 0 0 16px;
  line-height: 1.4;
}.contact-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #E8B563;
  letter-spacing: 0.04em;
}/* PROCESS SECTION */
.contact-process {
  position: relative;
  background: #0F1827;
  padding: 90px 40px;
  overflow: hidden;
}.contact-process-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}.contact-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}.cp-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
}.cp-step:hover {
  background: rgba(232, 181, 99, 0.06);
  border-color: rgba(232, 181, 99, 0.4);
  transform: translateY(-4px);
}.cp-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #E8B563;
  margin-bottom: 12px;
}.cp-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 181, 99, 0.10);
  border-radius: 14px;
  color: #E8B563;
}.cp-icon svg { width: 26px; height: 26px; }.cp-step h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}.cp-step p {
  font-size: 13px;
  color: #B8BDC5;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 1024px) {.contact-grid-v2 { grid-template-columns: 1fr; }.contact-process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {.contact-section { padding-left: 18px; padding-right: 18px; }.contact-form-card { padding: 28px 20px; }.contact-form-card .form-row { grid-template-columns: 1fr; }.contact-process-steps { grid-template-columns: 1fr; }.contact-hero-stats { gap: 32px; margin-top: 40px; }
}/* ============================================================
   APPLE-STYLE ANIMATIONS — homepage excitement layer
   ============================================================ */

/* Smooth scroll site-wide */
html { scroll-behavior: smooth; }/* Hero video — slow continuous Apple-style zoom (Ken Burns) */
.hero-video {
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1%, -1%); }
}/* Staggered fade-up on grid children (logo wall,
showcase tiles) */
.sv-stagger {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 60ms);
}.reveal.revealed .sv-stagger,
.revealed .sv-stagger {
  opacity: 1;
  transform: translateY(0) scale(1);
}/* Showcase tiles — Apple-style scale on hover/focus */
.showcase-tile {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
}.showcase-tile:hover { transform: scale(1.02) translateZ(0); filter: brightness(1.08); }/* Default accent — calm solid gold,
no animation */
.accent,
.sv-accent {
  color: #E8B563 !important;
  font-style: normal;
  font-weight: 700;
}
@keyframes gold-shimmer {
  0%, 100% { background-position: 200% 50%; }
  50% { background-position: 0% 50%; }
}/* Auto-apply shimmer to hero-class headlines only (one big moment per page).
   Hero h1 word reveal must NOT be clobbered — use chained animations there. */
.statement-quote .accent,
.svc-hero-h1 .accent,
.sv-hero-h1 .sv-accent,
.contact-hero h1 .accent {
  display: inline-block;
  background: linear-gradient(120deg, #E8B563 0%, #FFFFFF 50%, #E8B563 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: gold-shimmer 4.5s ease-in-out infinite;
  padding-bottom: 0.10em;
}/* Hero last word — keep wordReveal animation AND apply shimmer gradient as paint */
.hero h1 .word:last-child {
  background: linear-gradient(120deg, #E8B563 0%, #FFFFFF 50%, #E8B563 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Match the other words' reveal delay (0.66s for 4th word) + chain shimmer after */
  animation:
    wordReveal 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) 0.66s forwards,
    gold-shimmer 4.5s ease-in-out 1.8s infinite;
  padding-bottom: 0.10em;
}/* Underline-pulse alternative — subtle motion {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
}
@keyframes bar-pulse {
  0%, 100% { transform: scaleX(0.85); opacity: 0.85; }
  50% { transform: scaleX(1); opacity: 1; }
}/* Decorative orbs — re-usable gold-glow ambient elements */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}.orb-gold { background: radial-gradient(circle, #E8B563 0%, transparent 70%); }
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 30px) scale(1.08); }
}/* Animated gradient border — for premium cards */
.gold-border {
  position: relative;
  z-index: 0;
}.gold-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(232,181,99,0.5), transparent 30%, transparent 70%, rgba(232,181,99,0.5));
  background-size: 300% 300%;
  animation: gold-rotate 6s ease-in-out infinite;
}
@keyframes gold-rotate {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}/* Buttons — magnetic-feel lift */
.btn-primary,
.btn-secondary,
.btn-reel {
  will-change: transform;
}.btn-primary:active,
.btn-secondary:active,
.btn-reel:active {
  transform: scale(0.97);
}/* Stat blocks — number scale on reveal */
.stat-block.revealed .stat-num {
  animation: stat-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes stat-pop {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}/* Trusted-by section: subtle slide-up + reveal stagger handled by .sv-stagger */
.trusted .logo-cell { transition-property: opacity, transform; }/* Hero text — punchier word-reveal */
@keyframes wordReveal {
  0% { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}/* Section reveal base — softer + more cinematic */
.reveal { transition-duration: 1.2s; }/* Sticky CTA on scroll (appears as you scroll past hero) */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  background: #FFFFFF;
  color: #0A0F1C;
  padding: 14px 22px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,181,99,0.2);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}.sticky-cta:hover {
  box-shadow: 0 16px 50px rgba(232,181,99,0.45);
  transform: translateY(-3px) scale(1.04);
}
@media (max-width: 600px) {.sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}/* Color palette — lifted brightness so sections breathe */
:root {
  --sv-navy: #0F1827;
  --sv-navy-2: #1A2438;
  --sv-gold: #E8B563;
  --sv-gold-soft: rgba(232, 181, 99, 0.18);
  --sv-text: #FFFFFF;
  --sv-text-soft: #C8CDD5;
  --sv-line: rgba(255, 255, 255, 0.10);
}.sv-accent {
  color: var(--sv-gold);
  font-style: normal;
  font-weight: 700;
}.sv-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sv-gold);
  margin-bottom: 22px;
  padding: 7px 14px;
  background: var(--sv-gold-soft);
  border-radius: 100px;
}.sv-tag.light { background: rgba(232, 181, 99, 0.20); }.sv-svc-h {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--sv-text);
  margin: 0 0 18px;
}.sv-svc-h.light { color: var(--sv-text); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }.sv-svc-h.sv-center { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }.sv-svc-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
  color: var(--sv-text-soft);
  margin: 0 0 28px;
  max-width: 540px;
  letter-spacing: -0.005em;
}.sv-svc-body.light { color: rgba(255,255,255,0.88); text-shadow: 0 1px 10px rgba(0,0,0,0.4); }.sv-svc-body.sv-center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }/* Pills */
.sv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}.sv-pills span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sv-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
}.sv-pills.light span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
}.sv-pills span:hover {
  background: var(--sv-gold-soft);
  border-color: var(--sv-gold);
  color: var(--sv-gold);
}.sv-arrow-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sv-gold);
  text-decoration: none;
  border-bottom: 2px solid var(--sv-gold);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}.sv-arrow-link:hover {
  color: var(--sv-text);
  border-color: var(--sv-text);
  transform: translateX(4px);
}/* Proof strip — kills dead space */
.sv-proof-strip {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--sv-line);
  max-width: 540px;
}.sv-proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  border-right: 1px solid var(--sv-line);
}.sv-proof-stat:last-child { border-right: none; }.sv-proof-stat:not(:first-child) { padding-left: 16px; }.sv-proof-stat strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.02em;
  color: var(--sv-gold);
  line-height: 1;
}.sv-proof-stat span {
  font-size: 12px;
  color: var(--sv-text-soft);
  letter-spacing: 0.02em;
}/* Thumbnail row — recent work strip */
.sv-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 28px;
  max-width: 540px;
}.sv-thumb {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}.sv-thumb:hover {
  transform: scale(1.05);
  border-color: var(--sv-gold);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}/* HERO ============================================================ */
.sv-hero {
  position: relative;
  min-height: 88vh;
  background: var(--sv-navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
}.sv-hero-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 181, 99, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0, 50, 120, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,15,28,0.30) 0%, rgba(10,15,28,0.20) 40%, rgba(10,15,28,0.85) 100%);
  z-index: 1;
}.sv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}.sv-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sv-gold);
  margin-bottom: 28px;
}.sv-hero-h1 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 132px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--sv-text);
  margin: 0 0 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}.sv-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 0 40px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}.sv-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }.sv-hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--sv-gold), transparent);
  animation: sv-scroll-line 2.4s ease-in-out infinite;
}
@keyframes sv-scroll-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}/* SERVICE BLOCKS ============================================================ */
.sv-svc {
  position: relative;
  padding: 90px 40px;
  background: var(--sv-navy);
  overflow: hidden;
}.sv-svc:nth-of-type(odd) { background: var(--sv-navy-2); }.sv-bignum {
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 18vw, 280px);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(232, 181, 99, 0.06);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}.sv-bignum-right { left: auto; right: 40px; }.sv-bignum-light { color: rgba(255, 255, 255, 0.10); }.sv-bignum-inline {
  position: static;
  display: inline-block;
  font-size: 80px;
  color: rgba(232, 181, 99, 0.15);
  margin-bottom: 8px;
}.sv-bignum-card {
  position: absolute;
  top: -10px; right: 24px;
  font-size: 160px;
  color: rgba(232, 181, 99, 0.12);
}.sv-svc-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}.sv-svc-grid.sv-flip { direction: rtl; }.sv-svc-grid.sv-flip > * { direction: ltr; }.sv-svc-text { padding: 20px 0; }.sv-svc-visual {
  position: relative;
  width: 100%;
}.sv-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(232, 181, 99, 0.08);
  min-height: 540px;
  max-height: 700px;
}.sv-frame-glow {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  background: linear-gradient(135deg, var(--sv-gold) 0%, transparent 60%);
  opacity: 0.18;
  border-radius: 14px;
  filter: blur(40px);
}/* DRONE — full-bleed cinematic with floating card ===================== */
.sv-drone-hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  padding: 140px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}.sv-drone-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 16, 28, 0.55) 0%, rgba(7, 16, 28, 0.18) 50%, rgba(7, 16, 28, 0.05) 100%);
  z-index: 1;
}.sv-drone-card {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-right: 4vw;
  background: rgba(15, 24, 39, 0.78);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(232, 181, 99, 0.22);
  border-radius: 20px;
  padding: 50px 44px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}/* AI BAND ============================================================ */
.sv-ai-band {
  background: linear-gradient(135deg, var(--sv-navy) 0%, #1a2333 100%);
  padding: 80px 40px;
  border-top: 1px solid var(--sv-gold-soft);
  border-bottom: 1px solid var(--sv-gold-soft);
}.sv-ai-content {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  align-items: center;
}.sv-ai-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sv-gold-soft);
  border-radius: 24px;
  color: var(--sv-gold);
}.sv-ai-icon svg { width: 50px; height: 50px; }.sv-ai-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: var(--sv-text);
  margin: 0 0 8px;
}.sv-ai-text p {
  font-size: 16px;
  color: var(--sv-text-soft);
  margin: 0;
  line-height: 1.5;
}/* EVENTS MOSAIC ====================================================== */
.sv-events-section {
  padding: 90px 40px;
  background: var(--sv-navy);
  position: relative;
  overflow: hidden;
}.sv-events-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}.sv-events-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  max-width: 1380px;
  margin: 0 auto 50px;
}.sv-mosaic-tile {
  background-size: cover;
  background-position: center top;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}.sv-mosaic-tile:hover { transform: scale(1.02); }.sv-mosaic-tile.sv-tile-tall { grid-row: span 2; background-position: center top; }.sv-mosaic-tile.sv-tile-wide { grid-column: span 2; }.sv-events-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
}.sv-events-cta .sv-pills { justify-content: center; max-width: 700px; }/* DELIVER CARDS ====================================================== */
.sv-deliver,
.sv-process,
.sv-clients {
  padding: 90px 40px;
  background: var(--sv-navy-2);
  position: relative;
}.sv-deliver { background: var(--sv-navy); }.sv-process { background: var(--sv-navy-2); }.sv-clients { background: var(--sv-navy); }.sv-section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}.sv-deliver-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}.sv-deliver-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}.sv-deliver-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sv-gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}.sv-deliver-card:hover {
  background: rgba(232, 181, 99, 0.06);
  border-color: rgba(232, 181, 99, 0.4);
  transform: translateY(-4px);
}.sv-deliver-card:hover::before { opacity: 1; }.sv-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(232,181,99,0.32);
  background: linear-gradient(180deg, rgba(232,181,99,0.10), rgba(232,181,99,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-gold);
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}.sv-card-icon svg { width: 22px; height: 22px; }.sv-deliver-card:hover .sv-card-icon {
  background: linear-gradient(180deg, rgba(232,181,99,0.22), rgba(232,181,99,0.06));
  border-color: rgba(232,181,99,0.7);
  transform: scale(1.05);
}.sv-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--sv-text);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}.sv-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--sv-text-soft);
  position: relative;
  z-index: 1;
}/* PROCESS STEPS ===================================================== */
.sv-process-steps {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}.sv-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
}.sv-step:hover {
  background: rgba(232, 181, 99, 0.06);
  border-color: rgba(232, 181, 99, 0.4);
  transform: translateY(-4px);
}.sv-step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--sv-gold);
  margin-bottom: 14px;
}.sv-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--sv-text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}.sv-step p {
  font-size: 14px;
  color: var(--sv-text-soft);
  margin: 0;
  line-height: 1.5;
}.sv-step-arrow {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: var(--sv-gold);
  opacity: 0.6;
}/* TAG CLOUD ========================================================== */
.sv-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}.sv-cloud-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--sv-text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 12px 22px;
  border-radius: 100px;
  transition: all 0.3s ease;
}.sv-cloud-tag:hover {
  background: var(--sv-gold);
  border-color: var(--sv-gold);
  color: var(--sv-navy);
  transform: translateY(-2px);
}/* FINAL CTA ========================================================= */
.sv-final-cta {
  padding: 100px 40px;
  background:
    radial-gradient(circle at 30% 50%, rgba(232, 181, 99, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--sv-navy) 0%, #1a2333 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}.sv-final-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}.sv-cta-h {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--sv-text);
  margin: 16px 0 18px;
}.sv-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--sv-text-soft);
  margin: 0 0 36px;
  line-height: 1.5;
}.sv-cta-btn {
  font-size: 17px !important;
  padding: 18px 36px !important;
}/* RESPONSIVE ======================================================== */
@media (max-width: 1024px) {
  .sv-svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-svc-grid.sv-flip { direction: ltr; }
  .sv-deliver-cards { grid-template-columns: repeat(2, 1fr); }
  .sv-process-steps { grid-template-columns: 1fr; gap: 16px; }
  .sv-step-arrow { display: none; }
  .sv-events-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .sv-mosaic-tile.sv-tile-tall, .sv-mosaic-tile.sv-tile-wide { grid-row: auto; grid-column: auto; }
  .sv-ai-content { grid-template-columns: 1fr; text-align: center; }
  .sv-ai-icon { margin: 0 auto; }
  .sv-drone-hero { justify-content: center; }
  .sv-drone-card { margin-right: 0; }
}
@media (max-width: 600px) {.sv-svc,
.sv-deliver,
.sv-process,
.sv-clients,
.sv-events-section,
.sv-final-cta { padding: 70px 24px; }.sv-frame { min-height: 460px; }.sv-deliver-cards { grid-template-columns: 1fr; }.sv-events-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 220px); }
}/* ============================================================
   MOBILE LOGO — swap to mark only on small screens
   ============================================================ */
@media (max-width: 640px) {
  .logo-text { display: none; }
  .logo-mark { width: 36px; height: 36px; }
}.logo-cell:hover img {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 1280px) {.logo-wall { gap: 48px 32px; }.logo-cell { flex: 0 0 calc((100% - 4 * 32px) / 5); }
}
@media (max-width: 900px) {.logo-wall { gap: 40px 24px; }.logo-cell { flex: 0 0 calc((100% - 2 * 24px) / 3); }
}
@media (max-width: 560px) {.logo-wall { gap: 32px 20px; }.logo-cell { flex: 0 0 calc((100% - 1 * 20px) / 2); }
}/* ============================================================
   APPLE-STYLE VISUAL SHOWCASE GRID — pure imagery,
no copy
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  background: #0A0F1C;
  padding: 0;
}.showcase-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.85);
}.showcase-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 85%, rgba(0,0,0,0.85) 100%);
  transition: background 0.4s ease;
}.showcase-tile:hover {
  transform: scale(1.04);
  z-index: 2;
  filter: brightness(1.0);
}.showcase-tile:hover::after { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.40) 85%, rgba(0,0,0,0.80) 100%); }.showcase-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 3;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 17px);
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  line-height: 1.15;
}
@media (max-width: 1100px) {.showcase { grid-template-columns: repeat(3, 1fr); }.showcase-tile { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {.showcase { grid-template-columns: repeat(2, 1fr); gap: 4px; }.showcase-tile { aspect-ratio: 1 / 1; }.showcase-tag { bottom: 10px; left: 12px; right: 12px; font-size: 12px; }
}
@media (max-width: 700px) {.trusted { padding: 50px 22px 40px !important; }
}/* Service cards — slimmer, centered editorial */
.svc-card { padding: 44px 36px 40px !important; text-align: center !important; align-items: center !important; }.svc-card .svc-num { display: none !important; }.svc-icon { margin: 0 auto 28px !important; width: 44px; height: 44px; }.svc-title { font-family: 'Inter', sans-serif !important; font-weight: 700 !important; font-size: clamp(22px, 1.8vw, 28px) !important; letter-spacing: -0.02em !important; }.svc-body { font-size: 16px !important; color: #C8CCD2 !important; font-weight: 400 !important; margin-bottom: 26px !important; line-height: 1.55 !important; }.svc-link { color: #E8B563 !important; font-weight: 600 !important; font-size: 13px !important; letter-spacing: 0.18em !important; align-self: center !important; }/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat-block { border-left: none; padding-left: 0; }
  .work-grid-asymmetric { grid-template-columns: 1fr 1fr; }
  .work-grid-asymmetric .work-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16 / 10; }
  .work-grid-asymmetric .work-card:nth-child(4) { grid-column: 1 / 3; }
}
@media (max-width: 900px) {.nav-links { display: none; }.nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line-soft);
  }.hamburger { display: flex; }.nav { padding: 18px 24px; }.section,
.services-inner,
.story-section { padding-left: 24px; padding-right: 24px; }.services-grid,
.markets-grid,
.values-grid { grid-template-columns: 1fr; gap: 0; }/* Note: .work-grid is now handled by its own responsive cascade (4 → 3 → 2 → 1) above */
  .services-grid .svc-card,
.values-grid .value-card { border-right: none; }.work-grid-asymmetric .work-card { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4 / 5; }.stats-inner { grid-template-columns: repeat(2, 1fr); }.footer-grid { grid-template-columns: 1fr; gap: 48px; }.cta-band,
.footer { padding-left: 24px; padding-right: 24px; }.hero-content { padding: 0 24px; }.contact-grid { grid-template-columns: 1fr; gap: 64px; padding: 80px 24px; }.form-row { grid-template-columns: 1fr; }.markets-strip { padding: 80px 24px; }.page-hero { padding: 160px 24px 100px; }.stats-section { padding: 100px 24px; }
}/* ============================================================
   SCROLL-SCRUB CINEMATIC SECTION (crowd → drone)
   ============================================================ */
.scrub-section {
  position: relative;
  height: 320vh;            /* scroll track length — longer = slower scrub */
  background: #07101C;
}.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}.scrub-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}.scrub-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,16,28,0.55) 0%, rgba(7,16,28,0.15) 35%, rgba(7,16,28,0.15) 65%, rgba(7,16,28,0.75) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(7,16,28,0.45) 100%);
  pointer-events: none;
}.scrub-cap {
  position: absolute;
  z-index: 2;
  left: 0; right: 0;
  text-align: center;
  padding: 0 24px;
  color: var(--bone);
  pointer-events: none;
  transition: opacity 0.25s linear;
}.scrub-cap-1 { bottom: 16%; opacity: 1; }.scrub-cap-2 { top: 16%; opacity: 0; }.scrub-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.34em;
  text-transform: uppercase; color: #E8B563; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}.scrub-cap h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 8vw, 104px);
  letter-spacing: -0.045em;
  line-height: 1.0;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}.scrub-cap p {
  font-size: clamp(15px, 1.5vw, 20px);
  color: rgba(245,242,236,0.9);
  max-width: 540px; margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}.scrub-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 3;
}.scrub-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #E8B563, #F5C97E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}
@media (max-width: 700px) {.scrub-section { height: 260vh; }.scrub-cap h2 { font-size: clamp(34px, 12vw, 60px); }.scrub-cap-1 { bottom: 12%; }.scrub-cap-2 { top: 12%; }
}/* Respect reduced motion — fall back to a static poster */
@media (prefers-reduced-motion: reduce) {
  .scrub-section { height: 100vh; }
  .scrub-cap-1, .scrub-cap-2 { opacity: 1; position: static; margin: 20px 0; }
}.contact-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,15,28,0.55) 0%, rgba(10,15,28,0.80) 80%, #0F1827 100%),
    radial-gradient(ellipse at 50% 30%, rgba(232,181,99,0.16) 0%, transparent 60%);
}.contact-hero-inner,
.contact-hero-stats { position: relative; z-index: 2; }/* ============================================================
   FILM-STRIP HERO BACKGROUND — slow Ken Burns drift (on-brand)
   ============================================================ */
.page-hero-img,
.sv-hero-img,
.contact-hero-img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.7;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {.page-hero-img,
.sv-hero-img,
.contact-hero-img { animation: none; }
}/* Homepage 3-step process: override services.html's 4-step grid */
/* ============================================================
   HOME PROCESS — luxury 3-step with ambient glow + brass thread
   ============================================================ */
.home-process {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 110px;
}.home-process .sv-section-head { margin-bottom: 56px; position: relative; z-index: 2; }.home-process-sub {
  margin: 18px auto 0;
  max-width: 620px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #B6BCC8;
  text-align: center;
}.home-process-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 22%, rgba(232,181,99,0.10) 0%, transparent 60%),
    radial-gradient(55% 50% at 88% 78%, rgba(232,181,99,0.075) 0%, transparent 60%);
  z-index: 0;
}.home-process-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.91  0 0 0 0 0.71  0 0 0 0 0.39  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 1;
}.home-process .sv-process-steps {
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  max-width: 1080px;
  position: relative;
  z-index: 2;
}/* Brass connecting thread — runs horizontally through the centers of the
   three icon squares,
like beads on a string. Positioned from the top of
   the steps grid so it lines up regardless of card height. */
.home-process-thread {
  position: absolute;
  left: 0; right: 0;
  top: 60px;        /* card padding-top (32px) + half of icon height (28px) */
  height: 0;
  pointer-events: none;
  z-index: 1;
}.hpt-line {
  position: absolute; left: 8%; right: 8%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,181,99,0) 4%, rgba(232,181,99,0.55) 22%, rgba(232,181,99,0.65) 50%, rgba(232,181,99,0.55) 78%, rgba(232,181,99,0) 96%, transparent 100%);
}.hpt-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8B563;
  top: -3.5px;
  box-shadow: 0 0 0 4px rgba(232,181,99,0.12), 0 0 14px rgba(232,181,99,0.5);
  transform: translateX(-50%);
}/* Centered on each card column: 3 fr-columns + 2 arrow columns + 4 gaps
   means card centers sit at ~14.7% / 50% / ~85.3% of the steps grid width. */
.hpt-dot-1 { left: 14.7%; }.hpt-dot-2 { left: 50%; }.hpt-dot-3 { left: 85.3%; }/* Step icon glyph at top of each card */
.home-process .sv-step {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  position: relative;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}.home-process .sv-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  border: 1px solid rgba(232,181,99,0.35);
  background: linear-gradient(180deg, rgba(232,181,99,0.10), rgba(232,181,99,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}.home-process .sv-step-icon svg {
  width: 24px; height: 24px;
  stroke: #E8B563;
}.home-process .sv-step:hover .sv-step-icon {
  background: linear-gradient(180deg, rgba(232,181,99,0.20), rgba(232,181,99,0.05));
  border-color: rgba(232,181,99,0.7);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(232,181,99,0.22);
}.home-process .sv-step-num {
  margin-top: 0;
}
@media (max-width: 900px) {.home-process { padding-top: 70px; padding-bottom: 80px; }.home-process .sv-process-steps { grid-template-columns: 1fr; gap: 16px; }.home-process-thread { display: none; }.home-process-sub { font-size: 14.5px; padding: 0 10px; }
}/* ============================================================
   FAQ — 2-column premium layout,
sticky left,
accordion right
   ============================================================ */
.faq-section {
  background: #0F1827;
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
}.faq-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 60% at 90% 15%, rgba(232,181,99,0.10) 0%, transparent 60%),
    radial-gradient(45% 50% at 10% 90%, rgba(232,181,99,0.07) 0%, transparent 60%);
  z-index: 0;
}.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}.faq-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}.faq-aside .section-eyebrow { margin-bottom: 14px; }.faq-h {
  text-align: left !important;
  margin: 0 0 22px !important;
}.faq-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #B6BCC8;
  margin: 0 0 32px;
  max-width: 380px;
}.faq-cta {
  display: inline-flex;
  margin-bottom: 26px;
}.faq-aside-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #B6BCC8;
}.faq-aside-meta svg {
  width: 16px; height: 16px;
  stroke: #E8B563; fill: none; stroke-width: 1.8;
}.faq-aside-meta a {
  color: #E5E8EE;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}.faq-aside-meta a:hover { color: #E8B563; }.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}.faq-item:hover {
  border-color: rgba(232,181,99,0.4);
  transform: translateX(2px);
}.faq-item[open] {
  border-color: rgba(232,181,99,0.5);
  background: linear-gradient(180deg, rgba(232,181,99,0.05), rgba(255,255,255,0.025));
}.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: #F5F2EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.25s ease;
  position: relative;
}.faq-item > summary::-webkit-details-marker { display: none; }.faq-item > summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(232,181,99,0.55);
  color: #E8B563;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease, color 0.25s ease, box-shadow 0.35s ease;
}.faq-item[open] > summary::after {
  content: '−';
  background: #E8B563;
  color: #0F1827;
  transform: rotate(180deg);
  box-shadow: 0 0 22px rgba(232,181,99,0.45);
}.faq-item > summary:hover { color: #E8B563; }.faq-answer {
  padding: 0 28px 26px;
}.faq-answer p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #C8CDD5;
}
@media (max-width: 1000px) {.faq-inner { grid-template-columns: 1fr; gap: 48px; }.faq-aside { position: static; text-align: center; }.faq-h,
.faq-aside .section-eyebrow { text-align: center !important; }.faq-sub { margin-left: auto; margin-right: auto; }.faq-aside-meta { justify-content: center; }
}
@media (max-width: 600px) {.faq-section { padding: 70px 18px; }.faq-item > summary { padding: 20px 22px; font-size: 15.5px; gap: 14px; }.faq-item > summary::after { width: 28px; height: 28px; font-size: 18px; }.faq-answer { padding: 0 22px 22px; }.faq-answer p { font-size: 14.5px; }.faq-h { font-size: clamp(34px, 9vw, 48px) !important; }
}/* ============================================================
   CONTACT — connecting brass thread under What Happens Next
   ============================================================ */
.cp-thread {
  position: relative;
  height: 0;
  margin: 78px 0 -30px;   /* sits in the gap above the cards, behind them */
  pointer-events: none;
  z-index: 0;
}.cp-thread-line {
  position: absolute;
  left: 6%; right: 6%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,181,99,0) 4%, rgba(232,181,99,0.55) 25%, rgba(232,181,99,0.65) 50%, rgba(232,181,99,0.55) 75%, rgba(232,181,99,0) 96%, transparent 100%);
}.cp-thread-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8B563;
  top: -3.5px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(232,181,99,0.12), 0 0 14px rgba(232,181,99,0.5);
}
@media (max-width: 900px) {.cp-thread { display: none; }
}/* ============================================================
   ABOUT — team cards visual upgrade (brass squares + glow)
   ============================================================ */
.team-card {
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}.team-card:hover {
  border-color: rgba(232,181,99,0.4);
  transform: translateY(-4px);
}.team-card .role-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(232,181,99,0.32);
  background: linear-gradient(180deg, rgba(232,181,99,0.10), rgba(232,181,99,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8B563;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}.team-card .role-icon svg { width: 22px; height: 22px; }.team-card:hover .role-icon {
  background: linear-gradient(180deg, rgba(232,181,99,0.22), rgba(232,181,99,0.06));
  border-color: rgba(232,181,99,0.7);
  transform: scale(1.05);
}.team-card .role-num {
  color: rgba(232,181,99,0.7);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}/* ============================================================
   THANKS page — confirmation polish
   ============================================================ */
@keyframes thanksFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes thanksCheckPop {
  0%   { transform: scale(0.2); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}.thanks-wrap .thanks-inner { animation: thanksFadeIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.2s; }.thanks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8B563 0%, #C97A3A 100%);
  box-shadow: 0 14px 44px rgba(232,181,99,0.45);
  margin-bottom: 28px;
  animation: thanksCheckPop 0.7s cubic-bezier(0.2, 1.2, 0.4, 1) both;
  animation-delay: 0.4s;
}.thanks-check svg { width: 38px; height: 38px; color: #0A0F1C; stroke-width: 2.4; }

/* ============================================================
   ACCESSIBILITY — keyboard focus, skip link, reduced motion
   ============================================================ */

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

/* Skip-to-content link — invisible until keyboard-focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: #E8B563;
  color: #0A0F1C;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

/* Visible keyboard focus rings on every interactive element.
   Uses :focus-visible so it doesn't appear on mouse clicks. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #E8B563;
  outline-offset: 3px;
  border-radius: 6px;
}
/* Buttons that already have rounded shape get a tighter ring */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-reel:focus-visible,
.sticky-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #07101C, 0 0 0 6px #E8B563;
}

/* prefers-reduced-motion — calm everything down */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .sv-stagger { opacity: 1 !important; transform: none !important; }
  .home-process-thread,
  .home-process-grain,
  .home-process-glow,
  .faq-glow { display: none; }
  .hero-video { display: none; }
  .scrub-section { height: 100vh !important; }
}

/* ============================================================
   TRUSTED BY — two marquee rows + secondary grid
   ============================================================ */
.trusted-marquee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 56px;
  max-width: 980px;
  margin: 0 auto 28px;
  align-items: center;
  justify-items: center;
  padding: 0 24px;
}
.trusted-marquee-2 {
  margin-bottom: 56px;
}
.trusted-marquee .logo-cell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.trusted-marquee .logo-cell img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.0);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.trusted-marquee .logo-cell:hover img {
  transform: scale(1.05);
}

.trusted-also-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.45);
  margin: 0 auto 24px;
  position: relative;
}
.trusted-also-label::before,
.trusted-also-label::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 1px;
  background: rgba(232, 181, 99, 0.35);
  margin: 0 14px;
}

.trusted-secondary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  padding: 0 24px;
}
.trusted-secondary .logo-cell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.trusted-secondary .logo-cell img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.trusted-secondary .logo-cell:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .trusted-marquee { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
  .trusted-secondary { grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
}
@media (max-width: 560px) {
  .trusted-marquee .logo-cell img { max-height: 48px; }
  .trusted-secondary { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .trusted-secondary .logo-cell img { max-height: 36px; }
  .trusted-also-label::before,
  .trusted-also-label::after { width: 18px; margin: 0 8px; }
}

/* ============================================================
   TESTIMONIALS — real attributed reviews from real clients
   ============================================================ */
.testimonials {
  background: #0F1827;
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 12% 10%, rgba(232,181,99,0.08) 0%, transparent 60%),
    radial-gradient(45% 50% at 88% 90%, rgba(232,181,99,0.06) 0%, transparent 60%);
  z-index: 0;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonials .section-eyebrow { margin-bottom: 14px; }
.testimonials .section-h2 { margin: 0 auto 18px; }
.testimonials-lede {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #B6BCC8;
  max-width: 640px;
  margin: 0 auto 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.testimonial-card-wide {
  grid-column: 1 / -1;
}
.testimonial-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}
.testimonial-card:hover {
  border-color: rgba(232,181,99,0.4);
  background: linear-gradient(180deg, rgba(232,181,99,0.05), rgba(255,255,255,0.02));
  transform: translateY(-3px);
}
.testimonial-mark {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 0.55;
  color: rgba(232, 181, 99, 0.6);
  margin-bottom: 6px;
  user-select: none;
}
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: #E5E8EE;
  margin: 0 0 18px;
  flex: 1;
  letter-spacing: -0.003em;
}
.testimonial-card-wide .testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial-card-wide {
  align-items: center;
  text-align: center;
  padding: 28px 32px 24px;
}
.testimonial-card-wide .testimonial-attr {
  align-items: center;
  text-align: center;
  border-top: none;
  padding-top: 8px;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(232, 181, 99, 0.18);
}
.testimonial-logo {
  height: 22px;
  width: auto;
  max-width: 120px;
  margin-bottom: 8px;
  object-fit: contain;
  opacity: 0.9;
}
.testimonial-logo-text {
  height: 22px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: #F5F2EC;
  letter-spacing: -0.01em;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #F5F2EC;
  letter-spacing: -0.005em;
}
.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #B6BCC8;
  letter-spacing: 0.01em;
}
@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card-wide { grid-column: auto; }
  .testimonial-card-wide .testimonial-quote { text-align: left; }
  .testimonial-card-wide .testimonial-attr { align-items: flex-start; text-align: left; }
}

/* ============================================================
   (LEGACY) FEATURED ENGAGEMENTS styles — kept in case any guide
   page or future section reuses them. Currently unused on index.
   ============================================================ */
.engagements {
  background: #0F1827;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.engagements-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.engagements .section-eyebrow {
  margin-bottom: 14px;
}
.engagements .section-h2 {
  margin: 0 auto 18px;
}
.engagements-lede {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #B6BCC8;
  max-width: 640px;
  margin: 0 auto 56px;
}
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.engagement-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.engagement-card:hover {
  border-color: rgba(232,181,99,0.4);
  background: linear-gradient(180deg, rgba(232,181,99,0.06), rgba(255,255,255,0.02));
  transform: translateY(-4px);
}
.engagement-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #E8B563;
  margin-bottom: 14px;
}
.engagement-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #F5F2EC;
}
.engagement-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #B6BCC8;
  margin: 0 0 18px;
  flex: 1;
}
.engagement-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #E8B563;
}
@media (max-width: 900px) {
  .engagements-grid { grid-template-columns: 1fr; gap: 16px; }
  .engagement-card { padding: 26px 24px; }
}

/* ============================================================
   WORK PAGE — card-badge / card-view (JS-injected) + lightbox modal
   Restored after CSS cleanup pruned these (they're added via JS
   so the class scanner couldn't see them in any HTML class= attr)
   ============================================================ */

/* Photo-count badge in top-left corner of each work card */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px 5px 7px;
  background: rgba(7, 16, 28, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s;
}
.card-badge svg { width: 12px; height: 12px; opacity: 0.85; }
.work-card:hover .card-badge { opacity: 1; transform: translateY(0); }

/* "View" pill in top-right corner of each work card */
.card-view {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 6px 12px;
  background: var(--copper, #E8B563);
  color: var(--noir, #0A0F1C);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.card-view svg { width: 12px; height: 12px; }
.work-card:hover .card-view { opacity: 1; transform: translateX(0); }

/* Lightbox modal — opens when a work card is clicked */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 22, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  width: min(94vw, 1280px);
  height: min(86vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.3s;
}
.lightbox-meta {
  position: absolute;
  bottom: -64px;
  left: 0; right: 0;
  text-align: center;
  color: #C8CDD5;
}
.lightbox-meta .title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #F5F2EC;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.lightbox-meta .counter {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E8B563;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #F5F2EC;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 10;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: #E8B563;
  border-color: #E8B563;
  color: #0A0F1C;
  transform: scale(1.08);
}
.lightbox-close { top: 32px; right: 32px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
}

/* ============================================================
   MOBILE TAP-TARGET POLISH (Apple/Google >= 44px guidance)
   ============================================================ */
@media (max-width: 600px) {
  /* Footer link list — bump line-height so each item is ~44px tall */
  .footer-col a { line-height: 2.4; padding: 4px 0; min-height: 36px; box-sizing: border-box; }
  /* "Learn More →" links inside service cards */
  .svc-link { padding-top: 8px; padding-bottom: 8px; min-height: 40px; display: inline-flex; align-items: center; }
  /* Breadcrumb links */
  nav[aria-label="Breadcrumb"] a { padding: 6px 4px; display: inline-block; }
  /* Inline footer phone/email beneath section content */
  .faq-aside-meta a, .cta-meta a { padding: 6px 0; display: inline-block; }
  /* Bottom legal bar (Privacy / Terms / Disclaimer) */
  .footer-bar { padding: 22px 12px; gap: 16px; }
  .footer-bar a { padding: 10px 4px; display: inline-block; line-height: 1.4; }
  .footer-bar > div { line-height: 1.4; }
}

/* ============================================================
   CINEMATIC POLISH — pulses, cursor spotlight, eye blink,
   section-divider draw. Subtle, premium, no flair tax.
   ============================================================ */

/* 1) Pulsing brass aura on the Watch Reel play icon */
@keyframes ppv-pulse-reel {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 181, 99, 0.55), 0 0 0 0 rgba(232, 181, 99, 0); }
  50%      { box-shadow: 0 0 0 6px rgba(232, 181, 99, 0.18), 0 0 24px 4px rgba(232, 181, 99, 0.25); }
}
.btn-reel .reel-play { animation: ppv-pulse-reel 2.8s ease-in-out infinite; }
.btn-reel:hover .reel-play { animation-play-state: paused; }

/* 2) Soft pulse on the sticky Book a Call CTA so it gets noticed */
@keyframes ppv-pulse-cta {
  0%, 100% { box-shadow: 0 8px 28px rgba(232, 181, 99, 0.30); }
  50%      { box-shadow: 0 10px 36px rgba(232, 181, 99, 0.55), 0 0 0 4px rgba(232, 181, 99, 0.12); }
}
.sticky-cta.is-visible { animation: ppv-pulse-cta 3.2s ease-in-out infinite; }
.sticky-cta:hover { animation-play-state: paused; }

/* 3) Subtle eye-blink on the diamond logo every ~9s */
@keyframes ppv-logo-blink {
  0%, 96%, 100% { transform: scaleY(1); filter: brightness(1); }
  98%           { transform: scaleY(0.05); filter: brightness(0.55); }
}
.logo-mark { transform-origin: center; animation: ppv-logo-blink 9s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .btn-reel .reel-play, .sticky-cta.is-visible, .logo-mark { animation: none !important; }
}

/* 4) Cursor spotlight — subtle brass glow that follows the mouse
      Only on desktop, fades to nothing when leaving the window */
.ppv-cursor-light {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(232,181,99,0.16) 0%, rgba(232,181,99,0.06) 30%, transparent 70%);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.ppv-cursor-light.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none), (max-width: 900px), (prefers-reduced-motion: reduce) {
  .ppv-cursor-light { display: none !important; }
}

/* 5) Animated section divider — brass line that draws across when in view */
.ppv-divider {
  position: relative;
  height: 1px;
  margin: 0 auto;
  max-width: 240px;
  background: linear-gradient(90deg, transparent, rgba(232,181,99,0.0) 50%, transparent);
  overflow: visible;
}
.ppv-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, #E8B563 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ppv-divider.in-view::before { transform: scaleX(1); }
.ppv-divider::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: #E8B563;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 12px rgba(232,181,99,0.7);
  transition: transform 0.5s ease 1.1s;
}
.ppv-divider.in-view::after { transform: translate(-50%, -50%) scale(1); }

/* 6) Brass shimmer on .accent text headlines (subtle, slow) */
@keyframes ppv-shimmer {
  0%, 100% { background-position: 200% 50%; }
  50%      { background-position: -100% 50%; }
}
.section-h2 .accent {
  background: linear-gradient(120deg, #E8B563 0%, #F5C97E 30%, #FFFFFF 50%, #F5C97E 70%, #E8B563 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ppv-shimmer 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .section-h2 .accent { animation: none; background: #E8B563; -webkit-text-fill-color: #E8B563; }
}

/* ============================================================
   INTERACTIVE SHOWCASE EXPLORER — Step Inside the Work
   Click/hover tabs swap full-screen background + copy chapter.
   Auto-advances every 5s, pauses on user interaction.
   ============================================================ */
.se-section {
  position: relative;
  background: #07101C;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.se-stage {
  position: relative;
  height: 78vh;
  min-height: 600px;
  overflow: hidden;
}
.se-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  filter: grayscale(0.04) contrast(1.05) brightness(0.82);
  z-index: 0;
  will-change: opacity, transform;
}
.se-bg.is-active { opacity: 1; transform: scale(1); }
.se-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,16,28,0.92) 0%, rgba(7,16,28,0.55) 45%, rgba(7,16,28,0.15) 80%, transparent 100%),
    linear-gradient(180deg, rgba(7,16,28,0.20) 0%, transparent 30%, transparent 70%, rgba(7,16,28,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.se-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 110px 8vw 120px;
  color: var(--bone);
}
.se-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: #E8B563;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.se-dot-mark {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E8B563;
  box-shadow: 0 0 12px rgba(232, 181, 99, 0.7);
  animation: ppv-pulse-reel 2.4s ease-in-out infinite;
}
.se-chapters { position: relative; min-height: 360px; }
.se-chapter {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.se-chapter.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.se-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #E8B563;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.se-chapter h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 22px;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.se-chapter p {
  font-size: clamp(16.5px, 1.3vw, 20px);
  color: rgba(245, 242, 236, 0.92);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 28px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.se-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.30);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.se-cta:hover {
  background: rgba(232, 181, 99, 0.18);
  border-color: #E8B563;
  color: #E8B563;
  transform: translateX(3px);
}
.se-cta svg { width: 14px; height: 14px; stroke: currentColor; }

/* Tabs at the bottom — clickable, full-width strip */
.se-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(7, 16, 28, 0.85) 0%, #07101C 100%);
  border-top: 1px solid rgba(232, 181, 99, 0.18);
  position: relative;
  z-index: 3;
}
.se-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px 26px;
  color: rgba(245, 242, 236, 0.65);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
  font-family: inherit;
}
.se-tab:last-child { border-right: none; }
.se-tab:hover { background: rgba(232, 181, 99, 0.06); color: var(--bone); }
.se-tab.is-active { background: rgba(232, 181, 99, 0.09); color: var(--bone); }
.se-tab-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #E8B563;
  letter-spacing: 0.06em;
}
.se-tab-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.012em;
  text-align: left;
}
.se-tab-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.se-tab-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #E8B563, #F5C97E);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.se-tab.is-active .se-tab-bar-fill {
  transform: scaleX(1);
  transition: transform 5s linear; /* fills over the 5s auto-advance window */
}
.se-tab.is-paused.is-active .se-tab-bar-fill { transition: transform 0s; }

@media (max-width: 900px) {
  .se-content { padding: 80px 22px 90px; max-width: 100%; }
  .se-chapters { min-height: 320px; }
  .se-chapter h2 { font-size: clamp(40px, 11vw, 64px); }
  .se-stage { height: 70vh; min-height: 520px; }
  .se-tabs { grid-template-columns: 1fr 1fr; }
  .se-tab { padding: 18px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .se-tab:nth-child(2) { border-right: none; }
  .se-tab-label { font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .se-bg, .se-chapter { transition-duration: 0.2s; }
  .se-bg { transform: scale(1); }
  .se-dot-mark { animation: none; }
  .se-tab.is-active .se-tab-bar-fill { transition: none; }
}
