/* ═══════════════════════════════════════════════════════════
   TINA & CO STUDIOS — Portfolio Website Styles
   Theme: Dark Cinematic | Brand Red Accents | Film Grain Texture
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #BE1B23;
  --red-light:  #D62530;
  --red-dim:    #8B1520;
  --black:       #050505;
  --dark:        #0a0a0a;
  --dark-2:      #111111;
  --dark-3:      #171717;
  --dark-4:      #1e1e1e;
  --gray-1:      #2a2a2a;
  --gray-2:      #444;
  --gray-3:      #888;
  --gray-4:      #aaa;
  --white:       #f2f2f2;
  --white-dim:   #b8b8b8;
  --font-head:   'Cinzel', serif;
  --font-body:   'Inter', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --radius:      4px;
  --radius-md:   8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 4px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 0 24px rgba(190,27,35,0.30);
  --gold:         #C9A84C;
  --gold-dim:     #9e7e35;
  --gold-border:  rgba(201,168,76,0.35);
  --font-display: 'Cormorant Garamond', serif;
  --text-muted:   #aaa;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-head); letter-spacing: 0.04em; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(190,27,35,0.7);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--red);
  font-family: var(--font-serif);
  font-style: italic;
}

.section-sub {
  color: var(--gray-4);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION ── */
.section {
  padding: 100px 0;
  position: relative;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--red);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover .play-circle { border-color: var(--gold); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.4rem;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }

.play-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.play-circle::after {
  content: '';
  display: block;
  border-left: 10px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(190,27,35,0.20);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  transition: filter var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 8px rgba(190,27,35,0.35));
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 16px rgba(190,27,35,0.60));
  transform: scale(1.04);
}
.logo-tina {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-co {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
}
.logo-studios {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gray-3);
  text-transform: uppercase;
  align-self: flex-end;
  margin-left: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--red-light) !important; }

.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-social-link {
  color: var(--gray-3);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-social-link:hover { color: var(--gold); }
.nav-social-link svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Deep cinematic background using a dark gradient simulating a film set */
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(190,27,35,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(190,27,35,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0a0607 0%, #050505 40%, #070408 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.film-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.film-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(190,27,35,0.09) 30%, rgba(190,27,35,0.09) 70%, transparent);
}
.film-line:nth-child(1) { left: 25%; }
.film-line:nth-child(2) { left: 50%; }
.film-line:nth-child(3) { left: 75%; }

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 14vh;
  left: 6vw;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-brand-name {
  position: absolute;
  bottom: -0.05em;
  right: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.10);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
}

/* ── Hero Logo ── */
.hero-logo-wrap {
  margin-bottom: 28px;
}
.hero-logo-img {
  width: 200px;
  max-width: 60vw;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 40px rgba(190,27,35,0.50)) drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  transition: filter var(--transition), transform 0.4s ease;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 12px 60px rgba(190,27,35,0.70)) drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  transform: scale(1.02);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(190,27,35,0.15);
  border: 1px solid rgba(190,27,35,0.30);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.title-line { color: var(--white); }
.title-studios {
  color: var(--red);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-top: 8px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--white-dim);
  margin-bottom: 24px;
}

.hero-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-4);
}
.sep { color: var(--red); }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red-dim), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   ARCH SEPARATOR
══════════════════════════════════════════ */
.arch-separator {
  position: relative;
  height: 90px;
  margin-top: -2px;
  background: var(--black);
  z-index: 2;
}
.arch-separator svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
}

/* ══════════════════════════════════════════
   SHOWREEL
══════════════════════════════════════════ */
.showreel-section {
  background: #07121e;
  overflow: hidden;
}
.showreel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(190,27,35,0.5);
}
.showreel-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(190,27,35,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.showreel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.52) 100%);
  z-index: 1;
}
.video-placeholder-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(190,27,35,0.12) 0%, transparent 70%);
}

/* Showreel background thumbnail */
.showreel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.video-placeholder-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.video-corner { z-index: 3; }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: rgba(190,27,35,0.15);
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.play-btn:hover {
  background: var(--red);
  color: var(--black);
  transform: scale(1.08);
  box-shadow: var(--shadow-red);
}
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

.video-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* Corner brackets */
.video-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--red-dim);
  border-style: solid;
  opacity: 0.4;
}
.video-corner.tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.video-corner.tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.video-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.video-corner.br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.showreel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hidden { display: none; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section {
  background: #160607;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(190,27,35,0.5);
}
.services-section::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(190,27,35,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--gray-1);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--dark-3);
  padding: 40px 32px;
  position: relative;
  border-left: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray-2);
}
.service-card:hover {
  background: var(--dark-4);
  border-left-color: var(--red);
  box-shadow: -4px 0 24px rgba(190,27,35,0.18), inset 0 0 40px rgba(190,27,35,0.04);
}
.service-card:hover .service-icon { border-color: var(--red); color: var(--red); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gray-3);
  transition: var(--transition);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-4);
  line-height: 1.7;
}

/* ── Editorial Services List (replaces grid) ── */
.services-list { display: flex; flex-direction: column; gap: 0; }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
  cursor: default;
}
.service-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.service-row:hover { background: rgba(201,168,76,0.04); }

/* Reset .service-card styles when inside .services-list */
.services-list .service-card {
  background: transparent;
  padding: 0;
  border-left: none;
  border-radius: 0;
}
.services-list .service-card::before { display: none; }
.services-list .service-card:hover {
  background: rgba(201,168,76,0.04);
  border-left: none;
  box-shadow: none;
}
.services-list .service-card:hover .service-icon { border-color: var(--gray-2); color: var(--gray-3); }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.3);
  line-height: 1;
}

.service-body { min-width: 0; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 500px;
  font-family: var(--font-body);
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 160px;
}
.service-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════
   FEATURED WORK
══════════════════════════════════════════ */
.work-section {
  background: #07080f;
  overflow: hidden;
}
.work-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(190,27,35,0.5);
}
.work-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(190,27,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card.featured {
  grid-column: span 3;
}

.work-card {
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.12);
}

.work-card-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.work-card.featured .work-card-visual { height: 280px; }

.work-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, hsla(var(--card-hue), 65%, 38%, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, hsla(var(--card-hue), 50%, 20%, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, hsl(var(--card-hue), 25%, 9%) 0%, hsl(var(--card-hue), 12%, 5%) 100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.work-card:hover .work-card-bg { transform: scale(1.04); }

/* Thumbnail image (video cards only) */
.work-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-card:hover .work-card-thumb { transform: scale(1.04); }

/* Override opaque gradient with cinematic overlay for cards that have a thumbnail */
.has-video .work-card-bg {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.32) 55%,
    rgba(0,0,0,0.72) 100%
  );
}

/* All overlaid elements sit above the thumbnail */
.work-card-number,
.work-card-category,
.card-video-badge,
.card-details-hint,
.card-play-btn { z-index: 2; }

/* ── Card play button ── */
.card-play-btn {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.card-play-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.work-card.has-video:hover .card-play-btn::before {
  background: rgba(0,0,0,0.35);
}
.card-play-btn svg {
  width: 48px; height: 48px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  position: relative;
  z-index: 1;
}
.work-card.has-video:hover .card-play-btn svg {
  opacity: 1;
  transform: scale(1);
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  pointer-events: all;
  opacity: 1;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-modal.open .video-modal-inner {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}
.video-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
}
.video-modal-close svg { width: 16px; height: 16px; }

.video-modal-frame {
  position: relative;
  width: 100%;
  /* 9:16 aspect ratio for YouTube Shorts */
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(190,27,35,0.2);
  background: #000;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Fallback shown when embedding is blocked */
.video-modal-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0a0607;
  text-align: center;
  padding: 32px;
}
.video-modal-fallback svg { color: var(--red); opacity: 0.7; }
.video-modal-fallback p {
  font-size: 0.88rem;
  color: var(--gray-3);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   PER-SECTION ACCENT COLOURS
   Each section has its own hue — labels,
   title highlights & interactive accents
   are overridden here to match.
   All headings/body text are also forced
   bright so they read on dark backgrounds
   in both light and dark mode.
══════════════════════════════════════════ */

/* ── Shared: force readable text on all coloured dark sections ── */
.showreel-section .section-title,
.services-section .section-title,
.work-section .section-title,
.bts-section .section-title,
.vision-section .section-title,
.contact-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

/* Showreel — brand red */
.showreel-section .section-label          { color: var(--red-light); }
.showreel-section .label-line             { background: var(--red-light); box-shadow: 0 0 8px rgba(190,27,35,0.7); }
.showreel-section .section-title em       { color: var(--red-light); }
.showreel-section .section-sub            { color: #d4a0a5; }

/* Services — brand red */
.services-section .section-label          { color: var(--red-light); }
.services-section .label-line             { background: var(--red-light); box-shadow: 0 0 8px rgba(190,27,35,0.7); }
.services-section .section-title em       { color: var(--red-light); }
.services-section .section-sub            { color: #d4a0a5; }

/* Work — brand red */
.work-section .section-label              { color: var(--red-light); }
.work-section .label-line                 { background: var(--red-light); box-shadow: 0 0 8px rgba(190,27,35,0.7); }
.work-section .section-title em           { color: var(--red-light); }
.work-section .section-sub                { color: #d4a0a5; }

/* BTS — gold */
.bts-section .section-label               { color: var(--gold); }
.bts-section .label-line                  { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.7); }
.bts-section .section-title em            { color: var(--gold); }
.bts-section .section-sub                 { color: #c8b878; }

/* Vision — gold */
.vision-section .section-label            { color: var(--gold); }
.vision-section .label-line               { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.7); }
.vision-section .section-title em         { color: var(--gold); }
.vision-section .section-sub              { color: #c8b878; }
.vision-section .vision-quote blockquote  { border-left-color: var(--gold); color: rgba(255,255,255,0.85); }
.vision-section .vision-quote cite        { color: var(--gold); }
.vision-section .why-item                 { background: rgba(255,255,255,0.03); border-color: rgba(201,168,76,0.12); color: #d8cfa8; }
.vision-section .why-item:hover           { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.05); }

/* Contact — brand red */
.contact-section .section-label           { color: var(--red-light); }
.contact-section .label-line              { background: var(--red-light); box-shadow: 0 0 8px rgba(190,27,35,0.7); }
.contact-section .section-title em        { color: var(--red-light); }
.contact-section .section-sub             { color: #d4a0a5; }

/* ── Body text always light on hardcoded dark section backgrounds ── */
.showreel-section,
.services-section,
.work-section,
.bts-section,
.vision-section,
.contact-section {
  color: #d8d8d8;
}

/* Light mode modal backdrop */
[data-theme="light"] .video-modal-backdrop { background: rgba(0,0,0,0.75); }
[data-theme="light"] .video-modal-fallback { background: #e8e2de; }

/* ── Card video badge (persistent play indicator) ──────── */
.card-video-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

/* ── Card details hint (non-video cards) ───────────────── */
.card-details-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.work-card.has-details { cursor: pointer; }
.work-card.has-details:hover .card-details-hint {
  background: rgba(255,255,255,0.22);
}

/* ── Project Info Modal ────────────────────────────────── */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.info-modal.open {
  opacity: 1;
  pointer-events: all;
}
.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.info-modal-inner {
  position: relative;
  background: var(--dark-3);
  border: 1px solid rgba(190,27,35,0.25);
  border-radius: 16px;
  padding: 36px 32px 32px;
  width: min(480px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.94);
  transition: transform 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dim) transparent;
}
.info-modal.open .info-modal-inner { transform: scale(1); }
.info-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--white-dim);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.info-modal-close:hover { background: var(--red); color: #fff; }
.info-modal-header { margin-bottom: 20px; }
.info-modal-category {
  display: inline-block;
  background: rgba(190,27,35,0.15);
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(190,27,35,0.3);
}
.info-modal-header h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
}
.info-modal-header p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin: 0;
}
.info-modal-services h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin: 0 0 14px;
}
.info-modal-services ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-modal-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
}
.info-modal-services li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(190,27,35,0.15);
  border: 1.5px solid var(--red-dim);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23BE1B23' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Light mode overrides */
[data-theme="light"] .info-modal-inner { background: #ffffff; border-color: rgba(190,27,35,0.2); }
[data-theme="light"] .info-modal-header h2 { color: #111; }
[data-theme="light"] .info-modal-header p { color: #555; }
[data-theme="light"] .info-modal-services li { color: #444; }
[data-theme="light"] .info-modal-close { background: rgba(0,0,0,0.06); color: #555; }
[data-theme="light"] .card-details-hint { background: rgba(0,0,0,0.25); color: #fff; border-color: rgba(0,0,0,0.1); }


.work-card-number {
  position: absolute;
  top: -0.15em; right: 0.2em;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.work-card-category {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(190,27,35,0.15);
  border: 1px solid rgba(190,27,35,0.20);
  padding: 4px 10px;
  border-radius: 100px;
}

.work-card-body { padding: 24px; }
.work-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.work-card-body p {
  font-size: 0.88rem;
  color: var(--gray-4);
  line-height: 1.65;
  margin-bottom: 16px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  background: var(--gray-1);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════════
   BEHIND THE SCENES
══════════════════════════════════════════ */
.bts-section {
  background: #130f06;
  overflow: hidden;
}
.bts-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.bts-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.bts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bts-left .section-sub { margin-bottom: 36px; }

.bts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bts-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--white-dim);
}
.bts-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}

.check-icon {
  display: inline-block;
  width: 10px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translate(1px, -1px);
}

.setup-card {
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.setup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
}

.setup-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.setup-icon { font-size: 1.3rem; }
.setup-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}

.setup-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.setup-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.setup-item-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.setup-item-icon svg { width: 18px; height: 18px; }
.setup-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.setup-item strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}
.setup-item span {
  font-size: 0.8rem;
  color: var(--gray-3);
}

.setup-tagline {
  font-size: 0.82rem;
  color: var(--gray-3);
  font-style: italic;
  border-top: 1px solid var(--gray-1);
  padding-top: 20px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   VISION
══════════════════════════════════════════ */
.vision-section {
  background: #07100d;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
  z-index: 1;
}
.vision-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 60%, rgba(201,168,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.vision-quote {
  position: sticky;
  top: 120px;
}
.vision-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.vision-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  padding-left: 24px;
}

.vision-text .section-sub { margin-bottom: 36px; }
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: border-color var(--transition), background var(--transition);
}
.why-item:hover {
  border-color: rgba(190,27,35,0.35);
  background: var(--dark-4);
}
.why-icon { font-size: 1.1rem; }

.why-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 2.5rem;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  background: #160708;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(190,27,35,0.5);
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(190,27,35,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-item:hover {
  border-color: rgba(190,27,35,0.45);
  transform: translateX(4px);
}
.contact-item.static { cursor: default; }
.contact-item.static:hover { transform: none; }

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
}

/* ── FORM ── */
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red-dim), var(--red), var(--red-dim));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red-dim); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-4); }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-3);
  margin-top: 12px;
}
.form-optional {
  font-size: 0.72rem;
  color: var(--gray-3);
  font-weight: 400;
}

/* ── Form feedback banners ── */
.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-success {
  background: rgba(43,196,138,0.1);
  border: 1px solid rgba(43,196,138,0.35);
  color: #80e0b8;
}
.form-success svg { stroke: #2bc48a; flex-shrink: 0; }
.form-success strong { color: #2bc48a; display: block; margin-bottom: 2px; }
.form-success p { margin: 0; font-size: 0.82rem; color: #80c8a8; }
.form-error {
  background: rgba(190,27,35,0.1);
  border: 1px solid rgba(190,27,35,0.35);
  color: #e89098;
}
.form-error svg { stroke: var(--red-light); flex-shrink: 0; }
.form-error strong { color: var(--red-light); display: block; margin-bottom: 2px; }
.form-error p { margin: 0; font-size: 0.82rem; }
.form-error a { color: var(--red-light); }

/* ── Loading state on submit button ── */
#contactSubmitBtn .btn-loading { font-style: italic; opacity: 0.8; }

/* ── Gold submit button ── */
.contact-section #contactSubmitBtn {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a !important;
}
.contact-section #contactSubmitBtn:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--black);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 24px 3.5rem;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.7;
  max-width: 240px;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav ul a {
  font-size: 0.85rem;
  color: var(--gray-3);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-nav ul a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.8;
}
.footer-contact a {
  color: var(--gray-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  color: var(--gray-3);
  transition: color 0.2s;
  display: flex;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--gray-2);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bts-layout,
  .vision-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .vision-quote { position: static; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid var(--gray-1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 101; }
  .nav-right { z-index: 101; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 60px 1fr; gap: 1.2rem; }
  .service-tags { display: none; }
  .hero-title { font-size: clamp(2.5rem, 15vw, 5rem); }
  .hero-content { bottom: 10vh; left: 5vw; max-width: 92vw; }
  .hero-brand-name { display: none; }
  .nav-social { display: none; }

  /* Work cards — bigger visual + easier tap */
  .work-card-visual { height: 200px; }
  .work-card.featured .work-card-visual { height: 240px; }
  .card-play-btn { width: 60px; height: 60px; }
  .card-play-btn svg { width: 28px; height: 28px; }

  /* Video modal — full screen on mobile */
  .video-modal { padding: 0; align-items: flex-end; }
  .video-modal-inner {
    max-width: 100%;
    width: 100%;
    max-height: 95dvh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .video-modal.open .video-modal-inner { transform: translateY(0); }
  .video-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
    z-index: 10;
  }
  .video-modal-frame {
    border-radius: 16px 16px 0 0;
    max-height: 95dvh;
    aspect-ratio: 9/16;
    width: 100%;
  }

  /* Info modal */
  .info-modal-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90dvh;
  }
  .info-modal { align-items: flex-end; }

  /* BTS layout */
  .bts-layout { gap: 36px; }

  /* Contact form */
  .contact-form { padding: 20px; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .btn { padding: 12px 20px; font-size: 0.82rem; }
  .setup-card { padding: 20px; }
  .contact-form { padding: 16px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 280px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-title { font-size: clamp(1.6rem, 9vw, 2.5rem); }
  .work-card-visual { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 24px 2rem; }
  .footer-brand { grid-column: auto; }

  /* Full-width video modal on very small screens */
  .video-modal-frame { aspect-ratio: 9/16; max-height: 88dvh; }
}

/* ══════════════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Theme toggle hidden — site is always dark */
#themeToggle { display: none; }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(190,27,35,0.30);
  background: transparent;
  color: var(--gray-4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(190,27,35,0.10);
}
.theme-toggle svg { width: 17px; height: 17px; }

/* Sun shows in dark mode, moon shows in light mode */
.theme-icon-light { display: none; }
.theme-icon-dark  { display: block; }
[data-theme="light"] .theme-icon-light { display: block; }
[data-theme="light"] .theme-icon-dark  { display: none; }

/* ══════════════════════════════════════════
   LIGHT MODE — VARIABLES
══════════════════════════════════════════ */
[data-theme="light"] {
  --black:       #ffffff;
  --dark:        #f5f5f5;
  --dark-2:      #eeeeee;
  --dark-3:      #e6e6e6;
  --dark-4:      #dcdcdc;
  --gray-1:      #cccccc;
  --gray-2:      #aaaaaa;
  --gray-3:      #777777;
  --gray-4:      #555555;
  --white:       #111111;
  --white-dim:   #444444;
  --shadow:      0 4px 32px rgba(0,0,0,0.10);
  --shadow-red:  0 0 24px rgba(190,27,35,0.18);
}

/* ── Smooth theme transitions ── */
html { transition: background-color 0.3s ease; }
body,
.navbar,
.service-card,
.work-card,
.setup-card,
.contact-item,
.contact-form,
.contact-icon,
.why-item,
.footer,
.showreel-frame,
.setup-item-icon {
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

/* ══════════════════════════════════════════
   LIGHT MODE — COMPONENT OVERRIDES
   (hardcoded colours that don't use CSS vars)
══════════════════════════════════════════ */

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: #eeeeee; }

/* Navbar scrolled state */
[data-theme="light"] .navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(190,27,35,0.12), 0 4px 20px rgba(0,0,0,0.08);
}

/* Nav logo on light — darken the image slightly */
[data-theme="light"] .nav-logo-img {
  filter: drop-shadow(0 2px 8px rgba(190,27,35,0.20));
}
[data-theme="light"] .nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 16px rgba(190,27,35,0.40));
}

/* Hamburger spans */
[data-theme="light"] .hamburger span { background: var(--white); }

/* Mobile nav drawer */
@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: rgba(255,255,255,0.98);
    border-left: 1px solid #ddd;
  }
}

/* Hero background */
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(190,27,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(190,27,35,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #f8f0ee 0%, #f5f3f3 40%, #f2f0f5 100%);
}
[data-theme="light"] .hero-overlay {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(245,245,245,0.4) 100%);
}
[data-theme="light"] .hero-grain { opacity: 0.02; }
[data-theme="light"] .hero-logo-img {
  filter: drop-shadow(0 8px 32px rgba(190,27,35,0.30)) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
[data-theme="light"] .hero-logo-img:hover {
  filter: drop-shadow(0 12px 48px rgba(190,27,35,0.45)) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
[data-theme="light"] .hero-scroll-hint { color: #999; }
[data-theme="light"] .film-line {
  background: linear-gradient(to bottom, transparent, rgba(190,27,35,0.07) 30%, rgba(190,27,35,0.07) 70%, transparent);
}

/* Ghost button in light */
[data-theme="light"] .btn-ghost { color: #111; }
[data-theme="light"] .btn-ghost:hover { color: var(--red); }
/* Primary button — keep white text on red in both modes */
.btn-primary { color: #ffffff !important; }

/* Showreel placeholder */
[data-theme="light"] .video-placeholder-bg {
  background: linear-gradient(135deg, #e8e2de 0%, #ece7e0 40%, #e6e0ea 100%);
}
[data-theme="light"] .video-placeholder-bg::after {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(190,27,35,0.08) 0%, transparent 70%);
}
[data-theme="light"] .showreel-frame {
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

/* Work card visuals — make them lighter */
[data-theme="light"] .work-card-bg {
  background:
    radial-gradient(ellipse at 30% 40%, hsla(var(--card-hue), 50%, 75%, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, hsla(var(--card-hue), 40%, 85%, 0.20) 0%, transparent 50%),
    linear-gradient(135deg, hsl(var(--card-hue), 25%, 86%) 0%, hsl(var(--card-hue), 15%, 90%) 100%);
}
[data-theme="light"] .work-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), var(--shadow-red);
}
[data-theme="light"] .work-card-number { color: rgba(190,27,35,0.12); }

/* Vision section bg */
[data-theme="light"] .vision-bg {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(190,27,35,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(190,27,35,0.03) 0%, transparent 50%);
}

/* Contact value text colour */
[data-theme="light"] .contact-value { color: var(--white); }

/* Form select option */
[data-theme="light"] .form-group select option { background: var(--dark-4); color: var(--white); }
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: var(--gray-2); }

/* Footer */
[data-theme="light"] .footer-grid { border-top-color: rgba(201,168,76,0.25); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.08); }

/* Hero watermark */
[data-theme="light"] .hero-brand-name { -webkit-text-stroke-color: rgba(201,168,76,0.07); }

/* Services list */
[data-theme="light"] .service-row:hover { background: rgba(201,168,76,0.05); }
[data-theme="light"] .service-row { border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .service-row:first-child { border-top-color: rgba(0,0,0,0.08); }

/* Arch separator */
[data-theme="light"] .arch-separator { background: var(--black); }

/* Nav social */
[data-theme="light"] .nav-social-link { color: var(--gray-3); }

/* Ghost button */
[data-theme="light"] .btn-ghost { color: var(--white); }
[data-theme="light"] .btn-ghost:hover { color: var(--gold-dim); }

