:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --black: #080808;
  --dark: #0E0E0E;
  --surface: #141414;
  --surface2: #1A1A1A;
  --text: #F0EDE6;
  --muted: #888880;
  --accent: #FF4D00;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.18s ease;
  mix-blend-mode: difference;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  backdrop-filter: blur(0px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span {
  color: var(--text);
  opacity: 0.4;
  font-size: 0.45rem;
  letter-spacing: 0.5em;
  display: block;
  margin-top: -6px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ============================================================
   CINEMATIC HERO — FULL OVERHAUL
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Deep space radial BG */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 45%, rgba(201,168,76,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 75%, rgba(255,77,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(8,8,8,0) 0%, #020202 100%);
  animation: bgPulse 8s ease-in-out infinite;
}
@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Animated grid / lines */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
  transition: transform 0.4s ease;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}

/* Painterly aurora layer */
.hero-aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 40% at 70% 40%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 60%, rgba(255,77,0,0.06) 0%, transparent 55%);
  filter: blur(60px);
  animation: auroraFloat 12s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
@keyframes auroraFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.97); }
}

/* Film grain overlay */
.hero-film-grain {
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
  0% { background-position: 0 0; }
  25% { background-position: -50px -30px; }
  50% { background-position: 30px 50px; }
  75% { background-position: -20px 20px; }
  100% { background-position: 10px -40px; }
}

/* CRT scanlines */
.hero-scanlines {
  position: fixed;
  inset: 0;
  z-index: 9995;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  animation: scanlineMove 8s linear infinite;
}
@keyframes scanlineMove {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

/* Vignette */
.hero-vignette {
  position: fixed;
  inset: 0;
  z-index: 9994;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
}

/* FLOATING PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -10px;
  width: 2px;
  height: 2px;
  background: rgba(240,237,230,0.4);
  border-radius: 50%;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(calc(sin(1) * 60px)); opacity: 0; }
}

/* LIGHT STREAKS */
.light-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
  pointer-events: none;
}
.streak-1 {
  width: 40%;
  top: 30%;
  right: -5%;
  animation: streakSlide 6s ease-in-out 1.5s infinite;
  opacity: 0;
}
.streak-2 {
  width: 25%;
  top: 55%;
  right: 10%;
  animation: streakSlide 8s ease-in-out 3s infinite;
  opacity: 0;
}
.streak-3 {
  width: 15%;
  top: 70%;
  left: 5%;
  background: linear-gradient(to right, transparent, rgba(255,77,0,0.4), transparent);
  animation: streakSlide 7s ease-in-out 4.5s infinite;
  opacity: 0;
}
@keyframes streakSlide {
  0% { opacity: 0; transform: scaleX(0) translateX(100px); transform-origin: right; }
  20% { opacity: 1; }
  60% { opacity: 0.8; transform: scaleX(1) translateX(0); }
  100% { opacity: 0; transform: scaleX(0.3) translateX(-60px); transform-origin: left; }
}

/* CINEMATIC FRAME CORNERS */
.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: frameReveal 1s ease 1.2s forwards;
}
.frame-tl { top: 24px; left: 24px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.frame-tr { top: 24px; right: 24px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.frame-bl { bottom: 24px; left: 24px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.frame-br { bottom: 24px; right: 24px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
@keyframes frameReveal {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 0.5; transform: scale(1); }
}

/* SHUTTER FLASH */
.shutter-flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.05s;
}
.shutter-flash.flash-active {
  animation: shutterFlashAnim 0.4s ease forwards;
}
@keyframes shutterFlashAnim {
  0% { opacity: 0; }
  10% { opacity: 0.6; }
  30% { opacity: 0.2; }
  50% { opacity: 0.4; }
  100% { opacity: 0; }
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 1000px;
}

/* EYEBROW */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: eyebrowExpand 1s 0.8s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes eyebrowExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-counter {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: rgba(201,168,76,0.4);
  margin-left: auto;
  transition: all 0.5s ease;
}

/* TITLE — char-by-char */
.hero-title-wrapper {
  position: relative;
  margin-bottom: 8px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--text);
}
.title-line-1 {
  display: block;
  overflow: visible;
}
.outline {
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  display: inline-block;
}
/* Individual character animation */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(-90deg);
  animation: charReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  transform-origin: bottom center;
}
@keyframes charReveal {
  0% { opacity: 0; transform: translateY(80px) rotateX(-90deg); filter: blur(8px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

/* Glowing underline that draws itself */
.title-underline-glow {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(201,168,76,0.5);
  animation: underlineExpand 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 1.4s forwards;
}
@keyframes underlineExpand {
  from { width: 0; opacity: 0; }
  to { width: 75%; opacity: 1; }
}

/* BIG GHOST TEXT — behind title */
.hero-title-wrapper::before {
  content: 'IDHINS';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  animation: ghostPulse 6s ease-in-out infinite;
}
@keyframes ghostPulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.01); }
}

/* SUBTITLE — word by word */
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--muted);
  margin-top: 32px;
  max-width: 500px;
  line-height: 1.6;
}
.sub-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: subWordReveal 0.6s cubic-bezier(0.23,1,0.32,1) forwards;
  animation-delay: calc(1.3s + var(--d) * 0.1s);
}
@keyframes subWordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* SERVICE PILLS */
.hero-services {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}
.service-pill {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.service-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.service-pill:hover { color: var(--black); }
.service-pill:hover::before { transform: scaleX(1); }

/* FILM REEL COUNTER */
.reel-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  opacity: 0;
  animation: fadeUp 1s 2.1s forwards;
}
.reel-sprocket {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sprocket-hole {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 1px;
  animation: sprocketPulse 0.5s steps(1) infinite;
}
.sprocket-hole:nth-child(odd) { animation-delay: 0.25s; }
@keyframes sprocketPulse {
  0%, 100% { background: transparent; }
  50% { background: rgba(201,168,76,0.2); }
}
.reel-numbers {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(201,168,76,0.4);
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.reel-numbers span:first-child {
  font-size: 1.1rem;
  color: rgba(201,168,76,0.6);
}

/* SIDE TYPEWRITER */
.hero-side-text {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  z-index: 3;
}
.side-line {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: rgba(201,168,76,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 120px;
}
.side-line::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--gold);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 60px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: pulse 2s infinite;
  opacity: 0;
  animation: heroScrollReveal 1s 2.5s forwards, pulse 2s 3.5s infinite;
  z-index: 3;
}
@keyframes heroScrollReveal {
  to { opacity: 0.6; }
}
.hero-scroll-line {
  width: 60px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: slideRight 2s infinite;
}
@keyframes slideRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* BOTTOM CINEMATIC BAR */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 100%);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s 2.8s forwards;
}
.bar-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: rgba(136,136,128,0.5);
  text-transform: uppercase;
}
.bar-divider {
  color: rgba(201,168,76,0.3);
  font-size: 0.5rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ============================================================
   REST OF PAGE — UNCHANGED
   ============================================================ */

/* MARQUEE STRIP */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--black);
  padding: 0 40px;
}
.marquee-dot { color: var(--black); opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 120px 60px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
}
.section-title .dim {
  color: var(--surface2);
  -webkit-text-stroke: 1px rgba(240,237,230,0.15);
}
.section-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding-bottom: 8px;
}

/* VIDEO SECTIONS */
#film-updates { background: var(--black); }
#corporate { background: var(--dark); }
#promos { background: var(--black); }

/* LANDSCAPE VIDEO GRID */
.video-grid-landscape {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card-landscape {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.4s, transform 0.4s;
}
.video-card-landscape:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.video-embed-landscape {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.video-embed-landscape iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info { padding: 16px 20px; background: var(--surface); }
.video-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.video-info-title { font-size: 0.95rem; font-weight: 300; color: var(--text); }

/* PORTRAIT REEL GRID */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reel-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.4s, transform 0.4s;
}
.reel-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.reel-embed {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  background: #000;
}
.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.reel-info { padding: 14px 16px; background: var(--surface); }
.reel-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.reel-info-title { font-size: 0.85rem; font-weight: 300; color: var(--text); }

/* DIVIDER */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.3;
}

/* ABOUT STRIP */
.about-strip {
  background: var(--surface);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 24px;
}
.about-text h2 em { color: var(--gold); font-style: normal; }
.about-text p {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  font-style: italic;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(136,136,128,0.5);
  text-transform: uppercase;
}
.footer-made {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(136,136,128,0.4);
  text-transform: uppercase;
}
.footer-made span { color: var(--gold); }

/* NEWS SECTION */
#news { background: var(--dark); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.news-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  cursor: none;
}
.news-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: grayscale(30%) brightness(0.7);
}
.news-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.9); }
.news-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 50%);
}
.news-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-content { transform: translateY(0); }
.news-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-headline { font-size: 1.1rem; font-weight: 300; line-height: 1.4; color: var(--text); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { 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; }

/* GLOWING ACCENT LINE */
.glow-line {
  width: 100px; height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
  position: relative;
}
.glow-line::after {
  content: '';
  position: absolute; inset: -2px;
  background: var(--gold);
  filter: blur(6px);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  .nav-links { display: none; }
  section { padding: 80px 30px; }
  .hero-content { padding: 0 30px; }
  .hero-side-text { display: none; }
  .hero-bottom-bar { padding: 14px 30px; }
  .video-grid-landscape, .reel-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .frame-corner { width: 24px; height: 24px; }
}
@media (max-width: 640px) {
  .video-grid-landscape, .reel-grid, .news-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-bottom-bar { display: none; }
}
