/* ═══════════════════════════════════════════════════
   TFP TV Production — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────── */
:root {
  --black:   #0a0a0a;
  --deep:    #111111;
  --surface: #181818;
  --border:  #2a2a2a;
  --muted:   #555;
  --silver:  #888;
  --light:   #ccc;
  --white:   #f0ede8;
  --gold:    #c8a96e;
  --gold2:   #e2c98a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-mono:    'DM Mono', monospace;

  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 120px 0; }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold    { color: var(--gold); }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ─── Entrance animations ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: all .25s var(--ease);
  border: none;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold2); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border); color: var(--light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
nav.scrolled {
  background: rgba(10,10,10,.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: .12em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a,
.nav-links button {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--silver);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after,
.nav-links button::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links button:hover       { color: var(--white); }
.nav-links a:hover::after,
.nav-links button:hover::after { transform: scaleX(1); }
.nav-links a.active            { color: var(--gold); }

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  transition: background .2s, color .2s !important;
}
.nav-cta::after  { display: none !important; }
.nav-cta:hover   { background: var(--gold) !important; color: var(--black) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--surface); border: 1px solid var(--border);
  min-width: 220px; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.nav-dropdown-menu.open {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--silver); transition: color .2s, background .2s;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(200,169,110,.05); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mobile-nav.open          { opacity: 1; pointer-events: all; }
.mobile-nav a,
.mobile-nav button {
  font-family: var(--font-display);
  font-size: 42px; letter-spacing: .1em;
  color: var(--light); background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.mobile-nav a:hover,
.mobile-nav button:hover  { color: var(--gold); }
.mobile-nav-sub {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  overflow: hidden; max-height: 0;
  transition: max-height .3s var(--ease);
}
.mobile-nav-sub.open { max-height: 400px; }
.mobile-nav-sub a    { font-size: 22px !important; color: var(--silver) !important; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--deep);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: .12em; color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; color: var(--muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════════════════ */
.inner-hero {
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 80px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(200,169,110,.04) 0%, transparent 70%);
}
.inner-hero-content { position: relative; }
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  line-height: .9; letter-spacing: .05em;
  color: var(--white); margin: 16px 0 24px;
}
.inner-hero p {
  font-size: 20px; color: var(--silver);
  font-style: italic; font-weight: 300;
  max-width: 600px; line-height: 1.8;
}
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a      { color: var(--gold); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb-sep    { color: var(--border); }

/* ════════════════════════════════════════════════════
   HOME — HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,169,110,.06) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-reel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  overflow: hidden;
}
.hero-reel-inner {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, transparent 30%),
    linear-gradient(180deg, transparent 40%, var(--black) 100%);
  z-index: 1;
}
.hero-filmstrip {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
}
.hero-filmrow {
  display: flex; height: 33.33%;
  animation: filmscroll 20s linear infinite;
}
.hero-filmrow:nth-child(2) { animation-direction: reverse; animation-duration: 25s; }
.hero-filmrow:nth-child(3) { animation-duration: 18s; }
@keyframes filmscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-filmcell {
  flex-shrink: 0; width: 300px; height: 100%;
  background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero-filmcell::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,.04) 0%, transparent 60%);
}
.hero-filmcell .icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: .06; color: var(--gold);
  font-family: var(--font-display); letter-spacing: .2em;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-tag-line { width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: .92; letter-spacing: .04em;
  color: var(--white); margin-bottom: 8px;
}
.hero-title em { font-style: normal; color: var(--gold); display: block; }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px); color: var(--silver);
  font-style: italic; margin-bottom: 48px;
  max-width: 520px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px; background: var(--border);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--gold);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ════════════════════════════════════════════════════
   HOME — STATS STRIP
   ════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px; line-height: 1;
  color: var(--gold); letter-spacing: .04em; margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--silver);
}

/* ════════════════════════════════════════════════════
   HOME — ABOUT STRIP
   ════════════════════════════════════════════════════ */
.about-strip  { padding: 120px 0; }
.about-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.about-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface) 0%, #1a1a1a 100%);
  border: 1px solid var(--border);
}
.about-visual-accent {
  position: absolute; bottom: -2px; right: -2px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold); opacity: .3;
}
.about-visual-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .6;
}
.about-visual-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.camera-svg { width: 120px; height: 120px; opacity: .15; }
.about-eyebrow { margin-bottom: 16px; }
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px); line-height: 1;
  letter-spacing: .04em; color: var(--white); margin-bottom: 24px;
}
.about-body {
  color: var(--silver); font-style: italic; font-weight: 300;
  margin-bottom: 32px; font-size: 19px; line-height: 1.8;
}
.about-motto {
  display: inline-block;
  border-left: 3px solid var(--gold); padding-left: 20px;
  font-size: 16px; color: var(--light); font-style: italic; font-weight: 300;
}

/* ════════════════════════════════════════════════════
   SERVICES GRID (home preview + what page)
   ════════════════════════════════════════════════════ */
.services-preview { padding: 120px 0; background: var(--deep); }
.section-header   { margin-bottom: 64px; }
.section-header .section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: .06em; color: var(--white); margin-top: 12px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: var(--black); padding: 48px 36px;
  cursor: pointer; transition: background .3s;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,.05) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover            { background: var(--surface); }
.service-card:hover::before    { opacity: 1; }
.service-card-num {
  font-family: var(--font-display); font-size: 64px;
  color: var(--border); line-height: 1; margin-bottom: 24px;
  letter-spacing: .04em; transition: color .3s;
}
.service-card:hover .service-card-num { color: rgba(200,169,110,.2); }
.service-card-title {
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: .08em; color: var(--white);
  margin-bottom: 16px; text-transform: uppercase;
}
.service-card-desc { font-size: 16px; color: var(--silver); font-weight: 300; line-height: 1.7; }
.service-card-arrow {
  display: inline-block; margin-top: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════════════
   CREW
   ════════════════════════════════════════════════════ */
.crew-section { padding: 120px 0; }
.crew-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 64px;
}
.crew-card {
  border: 1px solid var(--border); padding: 32px 28px;
  position: relative; transition: border-color .3s;
}
.crew-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .4s var(--ease);
}
.crew-card:hover::after { width: 100%; }
.crew-role {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.crew-name {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: .06em; color: var(--white); line-height: 1.2;
}
.crew-avatar {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  margin-bottom: 20px; filter: grayscale(30%);
}
.crew-dept {
  margin-top: 8px; font-size: 11px; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: .1em;
}

/* Crew detail page */
.crew-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
}
.crew-detail-card {
  background: var(--black); padding: 48px 40px;
  position: relative;
}
.crew-detail-card .top-line {
  position: absolute; top: 0; left: 40px; right: 40px;
  height: 2px; background: var(--gold);
}

/* ════════════════════════════════════════════════════
   REFERENCES
   ════════════════════════════════════════════════════ */
.references-section { padding: 120px 0; }
.ref-intro { max-width: 640px; margin-bottom: 80px; }
.ref-intro p {
  font-size: 20px; color: var(--silver); font-style: italic;
  font-weight: 300; line-height: 1.8; margin-top: 20px;
}
.ref-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px; background: var(--border);
}
.ref-item {
  background: var(--black); padding: 36px 24px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .3s, background .3s;
  min-height: 100px;
}
.ref-item:hover { color: var(--gold); background: var(--surface); }

/* ════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ════════════════════════════════════════════════════ */
.service-detail      { padding: 100px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-detail-text h2 {
  font-family: var(--font-display); font-size: 42px;
  letter-spacing: .06em; color: var(--white); margin-bottom: 24px;
}
.service-detail-text p {
  font-size: 18px; color: var(--silver);
  font-style: italic; font-weight: 300;
  line-height: 1.85; margin-bottom: 20px;
}
.service-visual {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative;
}
.service-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ════════════════════════════════════════════════════
   WHY TFP PAGE
   ════════════════════════════════════════════════════ */
.why-content { padding: 100px 0; }
.why-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.why-card {
  padding: 48px 40px; border: 1px solid var(--border);
  transition: border-color .3s;
}
.why-card:hover       { border-color: rgba(200,169,110,.3); }
.why-card-icon        { font-size: 36px; margin-bottom: 24px; }
.why-card-title {
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: .06em; color: var(--white); margin-bottom: 16px;
}
.why-card-text {
  font-size: 17px; color: var(--silver); font-style: italic;
  font-weight: 300; line-height: 1.85;
}

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact-section { padding: 120px 0; }
.contact-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px);
  letter-spacing: .06em; color: var(--white);
  line-height: 1; margin: 16px 0 40px;
}
.contact-detail { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item   { display: flex; gap: 20px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 18px;
}
.contact-item-text .sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.contact-item-text .val { color: var(--light); font-size: 17px; font-weight: 300; }
.contact-form   { display: flex; flex-direction: column; gap: 20px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field          { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.field input,
.field textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--light); font-family: var(--font-body);
  font-size: 17px; font-weight: 300; padding: 14px 18px;
  outline: none; transition: border-color .25s; resize: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea       { min-height: 140px; }
.form-success {
  display: none; color: var(--gold);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em;
}

/* ════════════════════════════════════════════════════
   FLASH MESSAGES
   ════════════════════════════════════════════════════ */
.flash {
  padding: 14px 20px; margin-bottom: 24px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
}
.flash-success { background: rgba(200,169,110,.1); border: 1px solid var(--gold); color: var(--gold); }
.flash-error   { background: rgba(192,57,43,.1);  border: 1px solid #c0392b;    color: #e57373; }

.footer-social {
  display: flex; align-items: center; gap: 16px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid,
  .contact-grid,
  .service-detail-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-reel  { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .form-row   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .section    { padding: 80px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
}
