/* ═══════════════════════════════════════════════
   ENCORE WYNWOOD — MAIN STYLESHEET
   Brand: Orange → Pink → Purple gradient
   ═══════════════════════════════════════════════

   UNUSED SELECTORS (kept intentionally for future sections):
     .proof-bar / .proof-inner / .proof-item / .proof-number / .proof-label
     .reel-placeholder / .reel-placeholder-inner
     .hex-play-btn / .mute-toggle
     .features-photos
     .feature-rows / .feature-row / .feature-row-reverse
     .feature-reel-placeholder / .features-grid
     .feature-card / .feature-icon
     .services-grid / .service-card / .service-img / .service-content
     .service-placeholder / .service-link
     .gallery-grid / .gallery-hero / .gallery-item
     .testimonials-grid / .testimonial-card / .testimonial-stars
     .testimonial-author / .testimonial-role
     .unicorn-section / .unicorn-content / .unicorn-img-wrap / .unicorn-text
     .media-placeholder
     .space-highlights / .space-stat / .space-stat-number / .space-stat-label
     .activation-placeholder
     .btn-hex / .btn-play
     .nav-cta
     .hero-line-1
     .section-desc
   If these are still unused at final launch, delete them.
   ═══════════════════════════════════════════════ */

:root {
  --orange: #F47920;
  --pink: #E91E84;
  --magenta: #C2185B;
  --purple: #6A1B9A;
  --deep-purple: #4A148C;
  --dark: #0A0A0A;
  --dark-surface: #111111;
  --dark-card: #171717;
  --dark-border: #252525;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-500: #757575;
  --gradient: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  --gradient-h: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── UTILITIES ── */
.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 8rem 2rem; }
.section-alt { background: var(--dark-surface); }

.section-inner { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: inline-block;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
}

.btn-hex {
  clip-path: polygon(5% 25%, 50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%);
  border-radius: 0;
  padding: 2.5rem 3rem;
  font-size: 0.9rem;
  text-align: center;
  justify-content: center;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.btn-play { font-size: 0.7rem; }
.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom-color: var(--dark-border);
  padding: 0.75rem 2.5rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: -0.75rem;
}

.nav-logo-img {
  height: clamp(28px, 3vw, 42px);
  width: auto;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  background: var(--gradient) !important;
  -webkit-text-fill-color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: opacity 0.3s, transform 0.3s !important;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

nav { justify-content: space-between; }

.mobile-menu { display: none; cursor: pointer; padding: 4px; }
.mobile-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ══════════════════════════
   HERO — FULL BLEED
   ══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Default: gradient background. When you add hero.jpg, uncomment the bg image line */
  background:
    radial-gradient(ellipse at 30% 50%, rgba(244,121,32,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(106,27,154,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(233,30,132,0.1) 0%, transparent 40%),
    var(--dark);
  /* background: url('assets/images/hero.jpg') center/cover no-repeat; */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.6) 80%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 960px;
  margin-top: -4rem;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 1.75rem;
}

.hero-line-1 {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.hero-line-2 {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-line-3 {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.7; height: 55px; }
}

/* ── PROOF BAR ── */
.proof-bar {
  padding: 3rem 2rem;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark-surface);
}

.proof-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
}

.proof-item { text-align: center; }

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ── REEL PLACEHOLDER ── */
.reel-placeholder {
  aspect-ratio: 9/16;
  max-height: 580px;
  width: 100%;
  max-width: 326px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 2px dashed var(--dark-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-placeholder-inner {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 500;
}

.reel-placeholder-inner .ph-icon {
  font-size: 2.5rem;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

/* Hexagon play button overlay */
.reel-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 580px;
  width: 100%;
  max-width: 326px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.reel-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hex-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s, transform 0.3s;
}

.hex-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hex-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.hex-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Mute toggle button (bottom-right of reel) */
.mute-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  padding: 0;
  z-index: 2;
}

.mute-toggle:hover {
  background: rgba(233, 30, 132, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.mute-toggle svg {
  width: 18px;
  height: 18px;
}

.reel-placeholder-inner small {
  color: var(--gray-500);
  opacity: 0.7;
}

.reel-video {
  aspect-ratio: 9/16;
  max-height: 580px;
  width: 100%;
  max-width: 326px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* ── FEATURES PHOTOS ── */
.features-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.features-photos img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 320px;
}

/* ── FEATURES ROWS ── */
.venue-header { margin-bottom: 2.5rem; }
.venue-header .section-desc { margin-top: 0.5rem; }

#features { padding-top: 3rem; padding-bottom: 0; }

#features .experience-split:first-of-type,
#features .experience-split-reverse:first-of-type {
  padding-top: 0;
  margin-top: 0;
  align-items: start;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1.5rem;
  align-items: center;
}

.feature-row-reverse {
  grid-template-columns: 200px 1fr;
}

.feature-row-reverse .feature-card { order: 2; }
.feature-row-reverse .feature-reel-placeholder { order: 1; }

.feature-reel-placeholder {
  aspect-ratio: 9/16;
  max-height: 360px;
  width: 100%;
  background: var(--dark-card);
  border: 2px dashed var(--dark-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  transition: border-color 0.4s;
}

.feature-reel-placeholder:hover {
  border-color: rgba(233,30,132,0.3);
}

.feature-reel-placeholder .ph-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.feature-reel-placeholder small {
  font-size: 0.72rem;
  opacity: 0.6;
}

/* Legacy grid fallback */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.4s, transform 0.4s;
}

.feature-card:hover {
  border-color: rgba(233,30,132,0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,121,32,0.1), rgba(106,27,154,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── IMAGE BREAK ── */
.image-break {
  width: 100%;
  overflow: hidden;
}

.image-break-inner { position: relative; }

.image-break img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.service-card:hover {
  border-color: rgba(233,30,132,0.4);
  transform: translateY(-4px);
}

.service-img {
  height: 220px;
  background: linear-gradient(135deg, rgba(244,121,32,0.06), rgba(106,27,154,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img img { transform: scale(1.05); }

.service-placeholder { font-size: 3.5rem; opacity: 0.3; }

.service-content { padding: 1.75rem; }

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--pink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s;
}

.service-link:hover { gap: 0.65rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
  margin-top: 3rem;
}

.gallery-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ── EXPERIENCE SPLIT ── */
.experience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 0;
}

.experience-media {
  border-radius: 16px;
  overflow: hidden;
}

.experience-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-photos img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.experience-split-reverse {
  direction: rtl;
}

.experience-split-reverse > * {
  direction: ltr;
}

.experience-split + .experience-split,
.experience-split + .experience-split-reverse,
.experience-split-reverse + .experience-split,
.experience-split-reverse + .experience-split-reverse {
  margin-top: 0;
}

.experience-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.experience-text p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-200);
  font-size: 0.92rem;
}

.experience-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/* ── ABOUT VIDEO (horizontal) ── */
.about-video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 2.5rem 0;
}

.about-video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.about-text {
  max-width: 720px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: rgba(233,30,132,0.3); }

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  color: var(--gray-200);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── UNICORN SECTION ── */
.unicorn-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.unicorn-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(233,30,132,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.unicorn-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.unicorn-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.unicorn-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.unicorn-text p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── CONTACT SECTION ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h3 {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.15rem;
}

.contact-detail-text p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239E9E9E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}

/* ── MEDIA PLACEHOLDER ── */
.media-placeholder {
  background: var(--dark-card);
  border: 2px dashed var(--dark-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 240px;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}

.media-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }
.media-placeholder small { color: var(--gray-500); opacity: 0.7; }

/* ── FOOTER ── */
footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--pink); }

/* ── SPACE HIGHLIGHTS ── */
.space-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.space-stat {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s;
}

.space-stat:hover {
  border-color: rgba(233,30,132,0.4);
  transform: translateY(-4px);
}

.space-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.space-stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── ACTIVATIONS ── */
.activations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.activation-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.activation-video-wrap {
  aspect-ratio: 9/16;
  max-height: 580px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.activation-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activation-placeholder {
  aspect-ratio: 9/16;
  max-height: 580px;
  width: 100%;
  border-radius: 16px;
  background: var(--dark-card);
  border: 1px dashed var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.activation-video-wrap {
  position: relative;
}

.act-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s, transform 0.3s;
  padding: 0;
}

.act-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.act-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.act-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.activation-content { padding: 0 0.25rem; }

.activation-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.activation-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.activation-content p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITIES (replacing inline styles) ── */
.btn-spaced { margin-top: 1.5rem; }
.center-cta { text-align: center; margin-top: 3rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-error {
  display: none;
  margin-top: 1rem;
  color: #ff6b6b;
  font-size: 0.95rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-check {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--pink);
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.form-success .btn-secondary { margin-top: 0.5rem; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── MAP WRAP ── */
.map-wrap {
  position: relative;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 320px;
  opacity: 0.9;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */

@media (max-width: 1024px) {
  .experience-split,
  .experience-split-reverse {
    min-height: 0;
    padding: 2rem 0;
    gap: 2.5rem;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row,
  .feature-row-reverse { grid-template-columns: 1fr 180px; }
  .feature-row-reverse { grid-template-columns: 180px 1fr; }
  .activations-grid { grid-template-columns: repeat(2, 1fr); }
  .space-highlights { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-hero { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; justify-content: space-between; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-logo-img { height: 30px; }

  .hero-content { margin-top: 0; padding: 0 1.25rem; }

  .experience-split,
  .experience-split-reverse {
    min-height: 0;
    padding: 1.5rem 0;
    gap: 1.75rem;
  }
  .experience-text h3 { font-size: 1.6rem; }
  .experience-text h3 br { display: none; }

  .image-break img { height: 260px !important; }
  .about-video-wrap { margin: 1.5rem 0; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--dark-border);
    gap: 1rem;
  }

  .section { padding: 5rem 1.25rem; }

  .hero { min-height: 100svh; }
  .hero-line-1 { font-size: 0.85rem; letter-spacing: 0.15em; }
  .hero-line-2, .hero-line-3 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-scroll { display: none; }

  .features-photos { grid-template-columns: 1fr; }
  .features-photos img { height: 240px; }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }
  .feature-row-reverse .feature-card { order: 1; }
  .feature-row-reverse .feature-reel-placeholder { order: 2; }
  .feature-reel-placeholder { max-height: 280px; max-width: 160px; }

  .features-grid,
  .services-grid,
  .activations-grid { grid-template-columns: 1fr; }

  .space-highlights { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-hero { grid-column: span 1; grid-row: span 1; }

  .experience-split,
  .unicorn-content,
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .proof-inner { gap: 1.75rem; }
  .proof-number { font-size: 1.8rem; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .image-break .media-placeholder { min-height: 280px !important; }
}

@media (max-width: 480px) {
  .proof-inner { gap: 1.25rem; }
  .proof-item { flex: 1 0 40%; }
  .contact-form-wrap { padding: 1.75rem; }
}

/* ══════════════════════════
   REDUCED MOTION
   ══════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-line { animation: none !important; }
  .hero-scroll { display: none; }
  .btn-primary:hover,
  .service-card:hover,
  .space-stat:hover,
  .feature-card:hover { transform: none !important; }
}
