/* ==========================================================================
   MFX ENTERTAINMENT - CINEMATIC FILM PRODUCTION STUDIO STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color System - Dark Theme (Default) */
  --bg-dark: #07090e;
  --bg-card: rgba(17, 20, 30, 0.75);
  --bg-card-hover: rgba(26, 31, 46, 0.9);
  --bg-surface: #0f131d;
  
  --gold-primary: #e0a96d;
  --gold-light: #f4d090;
  --gold-glow: rgba(224, 169, 109, 0.35);
  
  --accent-crimson: #e50914;
  --accent-cyan: #00f0ff;
  
  --text-main: #f0f3f9;
  --text-muted: #94a3b8;
  --text-gold: #e0a96d;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(224, 169, 109, 0.3);

  --navbar-bg: rgba(7, 9, 14, 0.92);
  --modal-bg: #0d1017;
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Animations */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables Overrides */
[data-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(241, 245, 249, 1);
  --bg-surface: #ffffff;
  
  --gold-primary: #d97706;
  --gold-light: #f59e0b;
  --gold-glow: rgba(217, 119, 6, 0.25);
  
  --accent-crimson: #dc2626;
  --accent-cyan: #0284c7;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-gold: #d97706;
  
  --border-glass: rgba(15, 23, 42, 0.1);
  --border-gold: rgba(217, 119, 6, 0.35);

  --navbar-bg: rgba(255, 255, 255, 0.92);
  --modal-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(225, 9, 20, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(224, 169, 109, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(224, 169, 109, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 60%, #b88340 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(224, 169, 109, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(15px);
  padding: 14px 5%;
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector Dropdown at Top Left */
.lang-selector-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 20, 30, 0.85);
  border: 1px solid var(--border-gold);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.lang-selector-container:hover {
  background: rgba(26, 31, 46, 0.95);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.lang-selector-container i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.lang-select {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.lang-select option {
  background: var(--bg-surface);
  color: var(--text-main);
  padding: 10px;
}

/* Theme Switcher Toggle Button (Dark / Light) */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 0 15px var(--gold-glow);
}

[data-theme="light"] .hero-overlay {
  background: 
    linear-gradient(to right, rgba(248,250,252,0.92) 0%, rgba(248,250,252,0.65) 50%, rgba(248,250,252,0.88) 100%),
    linear-gradient(to top, rgba(248,250,252,1) 0%, transparent 60%);
}

[data-theme="light"] .brand-name,
[data-theme="light"] .card-title,
[data-theme="light"] .modal-title {
  color: #0f172a;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-crimson), #8a0000);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.65rem;
  display: block;
  color: var(--gold-primary);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-primary), #b88340);
  color: #07090e;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224, 169, 109, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid var(--border-gold);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(224, 169, 109, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(7,9,14,0.95) 0%, rgba(7,9,14,0.6) 50%, rgba(7,9,14,0.85) 100%),
    linear-gradient(to top, rgba(7,9,14,1) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 900;
  margin: 16px 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 650px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats Counter Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION HEADINGS */
.section {
  padding: 100px 5%;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 8px;
}

/* SLATE / FEATURED PROJECTS SECTION */
.slate-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.slate-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition-fast);
}

.slate-tab.active, .slate-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.slate-tab.active {
  background: var(--gold-primary);
  color: #07090e;
  font-weight: 700;
}

.slate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Project Card */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(224, 169, 109, 0.15);
}

.card-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .card-poster img {
  transform: scale(1.06);
}

.poster-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  text-transform: uppercase;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.project-card:hover .play-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 60px;
  height: 60px;
  background: var(--gold-primary);
  color: #07090e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 25px var(--gold-glow);
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.project-card:hover .play-btn-circle {
  transform: scale(1);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.card-genres {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.genre-tag {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-logline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}

/* SERVICES & CAPABILITIES */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: rgba(224, 169, 109, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.capability-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* VIRTUAL PRODUCTION & FACILITIES BANNER */
.facilities-banner {
  background: linear-gradient(90deg, rgba(7,9,14,0.95), rgba(7,9,14,0.7)), url('../images/vfx_stage.jpg') center/cover;
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  border: 1px solid var(--border-gold);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.facilities-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* PRESS & AWARDS LIST */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.award-item {
  background: rgba(17, 20, 30, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.award-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.award-laurel {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.award-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.award-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 4px;
}

.award-film {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* SCRIPT SUBMISSIONS & PITCH PORTAL */
.pitch-section {
  background: linear-gradient(135deg, rgba(15, 19, 29, 0.9), rgba(7, 9, 14, 0.95));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.pitch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pitch-info h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.pitch-steps {
  list-style: none;
  margin-top: 30px;
}

.pitch-steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: rgba(224, 169, 109, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pitch-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* GLOBAL OFFICES & HUBS */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.office-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-fast);
}

.office-card:hover {
  border-color: var(--border-gold);
}

.office-city {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.office-country {
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.office-detail {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-glass);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* MODAL SYSTEM (TRAILER & DETAIL VIEWER) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: #0d1017;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-crimson);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 36px;
}

.modal-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.modal-credits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  z-index: 3000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .pitch-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding-top: 120px; }
  .hero-title { font-size: 2.2rem; }
  .facilities-banner { padding: 40px 24px; }
}
