/* ============================================
   BRIDAL ENTRANCE — Custom Bridal Entrance Market by Plan A
   Shared stylesheet — Bold & Luxurious aesthetic
   ============================================ */

:root {
  --bg-deep: #0a0807;
  --bg-rich: #14100f;
  --bg-card: #1c1614;
  --border-soft: #2a201e;
  --accent: #df2228;            /* Plan A red — exact brand colour */
  --accent-bright: #f04a52;
  --accent-deep: #9b1418;
  --accent-soft: rgba(223, 34, 40, 0.12);
  --ivory: #f4ebe0;
  --ivory-muted: #c9bfb1;
  --muted: #8a8278;
  --white: #ffffff;
  --shadow-lux: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 18px 50px rgba(223, 34, 40, 0.25);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg-deep);
  color: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-bright);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  font-size: 1.05rem;
  color: var(--ivory-muted);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.accent-text {
  color: var(--accent-bright);
  font-style: italic;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.logo-link {
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
}

.logo-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--accent-deep), transparent);
}

.logo-by {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-by:hover {
  transform: scale(1.05);
}

.logo-by-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.logo-by-mark {
  height: 28px;
  width: auto;
  display: block;
}

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

.nav-links a {
  white-space: nowrap;
}

/* Editorial italic-serif nav items with Roman numeral cues */
.nav-links a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ivory);
  position: relative;
  padding: 0.4rem 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  transition: color 0.4s ease, transform 0.4s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a[data-num]::before {
  content: attr(data-num);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  transition: opacity 0.4s ease, color 0.4s ease;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
}

.nav-links a:hover {
  color: var(--accent-bright);
  transform: translateY(-1px);
}

.nav-links a:hover[data-num]::before {
  opacity: 1;
  color: var(--accent-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--ivory);
}

/* "On air" pulsing indicator on active page */
.nav-links a.active[data-num]::before {
  color: var(--accent);
  opacity: 1;
}

.nav-links li.active-marker {
  position: relative;
}

/* Replace boxed CTA with a film-reel-style "Reserve" link */
.nav-cta {
  font-family: var(--serif) !important;
  font-style: italic;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  letter-spacing: 0.005em !important;
  text-transform: none;
  padding: 0.4rem 0 !important;
  border: none !important;
  color: var(--ivory) !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.8rem;
  padding-left: 1.6rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-cta::before {
  content: "" !important;
  position: absolute !important;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent) !important;
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(223, 34, 40, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  color: transparent !important;
}

.nav-cta::after {
  content: "" !important;
  position: absolute !important;
  left: 1.6rem;
  right: 0;
  bottom: 0;
  width: auto !important;
  height: 1px;
  background: var(--accent) !important;
  transform: none !important;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--accent-bright) !important;
  transform: translateX(3px);
}

.nav-cta .nav-cta-arrow {
  display: inline-block;
  font-style: italic;
  transition: transform 0.4s ease;
}

.nav-cta:hover .nav-cta-arrow {
  transform: translateX(4px);
}

/* Marquee status strip (top of nav) */
.nav-status {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-soft);
  border-top: none;
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.nav-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .nav-status {
    display: none;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 85px;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--bg-rich);
    flex-direction: column;
    gap: 1.8rem;
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--border-soft);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }
  .logo-divider,
  .logo-by {
    display: none;
  }
  .logo-img {
    height: 56px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--bg-deep);
  box-shadow: 0 10px 30px rgba(223, 34, 40, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(223, 34, 40, 0.4);
  color: var(--bg-deep);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-arrow {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Full-bleed Vimeo background — cover any viewport aspect ratio */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);   /* 16/9 of 100vh */
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Lighter veil — let the video breathe through more, text shadow handles legibility */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(10, 8, 7, 0.55) 0%, rgba(10, 8, 7, 0.2) 50%, rgba(10, 8, 7, 0.45) 100%),
    radial-gradient(ellipse at 20% 60%, rgba(10, 8, 7, 0.4) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.4) 0%, transparent 22%, transparent 78%, rgba(10, 8, 7, 0.85) 100%);
}

/* Floating "Now Playing" tag */
.hero-reel-tag {
  position: absolute;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: rgba(10, 8, 7, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(223, 34, 40, 0.35);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.hero-reel-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(223, 34, 40, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (max-width: 600px) {
  .hero-reel-tag {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.65rem 0.95rem;
    font-size: 0.6rem;
  }
}

/* Centered hero — medium scale */
.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.hero-copy {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.65));
}

.hero-by-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 235, 224, 0.18);
  max-width: 380px;
}

.hero-by-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.hero-by-mark {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(223, 34, 40, 0.2));
}

@media (max-width: 900px) {
  .hero-logo {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-by-line {
    justify-content: center;
  }
}

.hero-title {
  margin: 0 0 2rem;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-title .line-break {
  display: block;
}

.hero-sub {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 auto 2.5rem;
  max-width: 640px;
  color: var(--ivory);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 3rem;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 235, 224, 0.2);
  justify-content: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-bright);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* Hero Visual — AV experience treatment with LED-screen feel */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  justify-self: end;
}

.hero-frame {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.hero-frame-main {
  inset: 0;
  background: #0a0807;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

/* Embedded ambient hero video — scaled to cover a 4:5 frame from a 16:9 source */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Dark fade at bottom so overlay text & Plan A panel stay legible */
.hero-frame-main > .hero-tag,
.hero-frame-main > .hero-plan-a-link {
  position: relative;
  z-index: 3;
}

.hero-frame-main::after {
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.55) 0%, rgba(10, 8, 7, 0) 25%, rgba(10, 8, 7, 0) 55%, rgba(10, 8, 7, 0.85) 100%),
    repeating-linear-gradient(0deg, transparent 0, transparent 8px, rgba(0,0,0,0.1) 8px, rgba(0,0,0,0.1) 9px),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgba(0,0,0,0.1) 8px, rgba(0,0,0,0.1) 9px);
}

/* LED scanline overlay — sits above the video for subtle screen-grain feel */
.hero-frame-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(244, 235, 224, 0.04) 2px,
    rgba(244, 235, 224, 0.04) 3px
  );
  pointer-events: none;
  z-index: 1;
}

/* Vignette + pixel grid + bottom fade — sits on top of video for legibility */
.hero-frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-plan-a-panel {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(223, 34, 40, 0.3);
  border-radius: 4px;
}

.hero-plan-a-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero-plan-a-mark {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 0.85rem;
}

.hero-plan-a-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  line-height: 1.4;
}

.hero-tag {
  position: relative;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ivory);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(223, 34, 40, 0.3);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
}

.hero-tag-line {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-style: normal;
}

/* SHOWREEL SECTION */
.showreel {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.showreel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(223, 34, 40, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(155, 20, 24, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.showreel > .container {
  position: relative;
  z-index: 1;
}

.showreel-frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(223, 34, 40, 0.15);
  border: 1px solid var(--border-soft);
  background: #000;
}

.showreel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showreel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(223, 34, 40, 0.3);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.showreel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.showreel-meta a {
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.showreel-meta a:hover {
  color: var(--ivory);
}

/* PLAN A HERITAGE STRIP */
.heritage-strip {
  background: linear-gradient(180deg, var(--bg-rich) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--accent-deep);
  border-bottom: 1px solid var(--border-soft);
  padding: 4rem 0;
}

.heritage-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .heritage-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.heritage-mark {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(223, 34, 40, 0.2));
}

@media (max-width: 900px) {
  .heritage-mark {
    margin: 0 auto;
  }
}

.heritage-copy h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.heritage-copy p {
  font-size: 0.98rem;
  margin: 0;
}

.heritage-stats {
  display: flex;
  gap: 2.5rem;
  border-left: 1px solid var(--border-soft);
  padding-left: 3rem;
}

@media (max-width: 900px) {
  .heritage-stats {
    border-left: none;
    padding-left: 0;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
    width: 100%;
  }
}

.heritage-stats .stat-num {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.heritage-stats .stat-label {
  font-size: 0.65rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

/* Editorial section head — title left, description right, eyebrow up top */
.section-head {
  text-align: left;
  margin: 0 auto 5rem;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 5rem;
  row-gap: 1.5rem;
  align-items: end;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-head h2 {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}

.section-head p {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.2rem;
  color: var(--ivory-muted);
  margin: 0;
  padding-bottom: 0.6rem;
  max-width: none;
  line-height: 1.55;
}

.section-head .divider {
  display: none;
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 1.5rem;
  }
  .section-head h2,
  .section-head p {
    grid-column: 1;
    grid-row: auto;
  }
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem auto;
  position: relative;
}

.divider::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-deep);
  color: var(--accent);
  padding: 0 0.6rem;
  font-size: 0.7rem;
}

/* ============================================
   FEATURES / SIGNATURE GRID
   ============================================ */

.signature {
  background: var(--bg-rich);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}

.signature-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.signature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.signature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-deep);
  box-shadow: var(--shadow-card);
}

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

.signature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.signature-card h3 {
  margin-bottom: 1rem;
}

.signature-card p {
  font-size: 0.98rem;
}

/* ============================================
   GALLERY / SERVICES
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease;
}

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

.gallery-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(223, 34, 40, 0.25);
}

.gallery-image.style-1 {
  background: linear-gradient(135deg, #2a1414 0%, #3a1818 100%);
}
.gallery-image.style-2 {
  background: linear-gradient(135deg, #1a0d0d 0%, #2a1414 50%, #2a1414 100%);
}
.gallery-image.style-3 {
  background: linear-gradient(135deg, #2a1820 0%, #4a2535 100%);
}
.gallery-image.style-4 {
  background: linear-gradient(135deg, #1a1f2a 0%, #25354a 100%);
}
.gallery-image.style-5 {
  background: linear-gradient(135deg, #2a2a1a 0%, #4a4525 100%);
}
.gallery-image.style-6 {
  background: linear-gradient(135deg, #1f1a2a 0%, #35254a 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 8, 0.95) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.gallery-cat {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(223, 34, 40, 0.3);
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

.gallery-price {
  color: var(--accent-bright);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-bright);
  position: relative;
}

.process-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   ABOUT — Story sections
   ============================================ */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.story-reverse {
  direction: rtl;
}
.story-reverse > * {
  direction: ltr;
}

.story-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a1414 0%, #3a1818 50%, #1a0d0d 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.story-visual:hover img {
  transform: scale(1.04);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 7, 0.4) 100%);
  pointer-events: none;
}

.story-visual:empty::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(223, 34, 40, 0.3);
}

.story-visual.alt {
  background: linear-gradient(135deg, #1a0d0d 0%, #2a1414 100%);
}

.story h2 {
  margin-bottom: 1.5rem;
}

.story p + p {
  margin-top: 1.2rem;
}

.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-bright);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.4;
}

/* ============================================
   FOUNDER PROFILE (single director)
   ============================================ */

.founder-card {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a1414 0%, #3a1818 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(244, 235, 224, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.founder-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 7rem;
  color: rgba(223, 34, 40, 0.55);
  line-height: 1;
}

.founder-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.founder-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.founder-bio p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--ivory-muted);
  line-height: 1.65;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin-top: 0.5rem;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--accent-bright);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.founder-link:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}

@media (max-width: 900px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-portrait {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================
   INSTAGRAM-STYLE STUDIO FEED
   ============================================ */

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ig-tile {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-card);
  transition: transform 0.4s ease;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.95);
}

.ig-tile:hover {
  transform: translateY(-2px);
}

.ig-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}

.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-tile:hover::after {
  opacity: 1;
}

.ig-follow {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================
   TEAM (legacy — kept for any other team-card usage)
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.team-card {
  text-align: center;
}

.team-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a1414 0%, #3a1818 100%);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.team-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(244, 235, 224, 0.1) 0%, transparent 50%);
}

.team-portrait .team-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: rgba(223, 34, 40, 0.5);
}

.team-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  background: var(--bg-rich);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory);
  max-width: 880px;
  margin: 0 auto 2rem;
}

.testimonial-quote::before {
  content: "\201C";
  display: block;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.testimonial-attr {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-name {
  display: block;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
}

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

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

.form-group select {
  cursor: pointer;
}

.form-group select[multiple] {
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 0.5rem;
  background: rgba(10, 9, 8, 0.4);
}

.form-group select[multiple]:focus {
  border-color: var(--accent);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--ivory);
  padding: 0.6rem 0.5rem;
}

.form-group select option:checked {
  background: linear-gradient(0deg, var(--accent-deep), var(--accent-deep));
  color: var(--ivory);
}

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

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background:
    linear-gradient(135deg, rgba(223, 34, 40, 0.05) 0%, rgba(10, 9, 8, 0) 100%),
    var(--bg-rich);
  border-top: 1px solid var(--accent-deep);
  border-bottom: 1px solid var(--accent-deep);
  text-align: center;
  padding: 6rem 0;
}

.cta-banner h2 {
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-deep);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-about p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-by {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.footer-by-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-by-link:hover {
  transform: translateX(2px);
  opacity: 0.85;
}

.heritage-mark-link,
.hero-plan-a-link,
.hero-by-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.heritage-mark-link:hover,
.hero-plan-a-link:hover,
.hero-by-link:hover {
  transform: scale(1.04);
}

.footer-by-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-by-mark {
  height: 36px;
  width: auto;
  display: block;
}

/* ============================================
   AV CAPABILITIES (the experience grid)
   ============================================ */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.capability-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
}

.capability-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.capability-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Vimeo video background for capability cards */
.capability-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.capability-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Card is 4:5 (~0.8) and Vimeo is 16:9 (~1.78). To cover the card with the video,
     iframe height = card height, iframe width = card height × 16/9.
     Card height = card width × 5/4, so iframe width = card width × 5/4 × 16/9 ≈ 2.22 × card width. */
  width: 222%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: saturate(0.95) contrast(1.05);
}

/* Hide the existing CSS texture overlays when a video background is present */
.capability-card.has-video .capability-canvas::before,
.capability-card.has-video .capability-canvas::after {
  display: none;
}

/* Dark veil for content legibility over the video */
.capability-card.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.3) 0%, rgba(10, 8, 7, 0.55) 50%, rgba(10, 8, 7, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Subtle red glow on hover */
.capability-card.has-video:hover::after {
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.2) 0%, rgba(10, 8, 7, 0.45) 50%, rgba(10, 8, 7, 0.88) 100%);
}

/* LED Walls — scanline + glow */
.cap-led {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(223, 34, 40, 0.4) 0%, transparent 70%),
    linear-gradient(135deg, #1a0d0d 0%, #2a1414 100%);
}
.cap-led::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(244, 235, 224, 0.04) 3px,
    rgba(244, 235, 224, 0.04) 4px
  );
}

/* Projection mapping — geometric grid */
.cap-projection {
  background:
    linear-gradient(135deg, #1a0d0d 0%, #2a1414 100%);
}
.cap-projection::before {
  content: "";
  position: absolute;
  inset: 15%;
  background:
    linear-gradient(135deg, transparent 49%, rgba(223, 34, 40, 0.4) 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(223, 34, 40, 0.4) 50%, transparent 51%);
  border: 1px solid rgba(223, 34, 40, 0.3);
  transform: perspective(400px) rotateX(15deg);
}

/* Holograms — luminous red core with soft warm halo */
.cap-hologram {
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 74, 82, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(155, 20, 24, 0.3) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(244, 235, 224, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a0d0d 0%, #14100f 100%);
}
.cap-hologram::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 235, 224, 0.5) 0%, rgba(223, 34, 40, 0.35) 35%, transparent 70%);
  filter: blur(10px);
}

/* Interactive — generative dots */
.cap-interactive {
  background: linear-gradient(135deg, #14100d 0%, #1a0d0d 100%);
  background-image:
    radial-gradient(2px 2px at 20% 20%, var(--accent-bright), transparent),
    radial-gradient(1px 1px at 40% 60%, var(--accent), transparent),
    radial-gradient(2px 2px at 70% 30%, var(--accent-bright), transparent),
    radial-gradient(1px 1px at 80% 75%, var(--accent), transparent),
    radial-gradient(2px 2px at 30% 80%, var(--accent-bright), transparent),
    radial-gradient(1px 1px at 60% 40%, var(--accent), transparent),
    radial-gradient(2px 2px at 90% 50%, var(--accent-bright), transparent),
    radial-gradient(1px 1px at 15% 50%, var(--accent), transparent),
    linear-gradient(135deg, #14100d 0%, #1a0d0d 100%);
}

/* Light & Sound — wave forms */
.cap-soundlight {
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(223, 34, 40, 0.5) 50%, transparent 55%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(223, 34, 40, 0.2) 50%, transparent 60%, transparent 100%),
    linear-gradient(135deg, #1a0d0d 0%, #2a1414 100%);
}
.cap-soundlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0px, transparent 12px, rgba(223, 34, 40, 0.2) 12px, rgba(223, 34, 40, 0.2) 14px);
  mask: linear-gradient(180deg, transparent 35%, white 50%, transparent 65%);
  -webkit-mask: linear-gradient(180deg, transparent 35%, white 50%, transparent 65%);
}

/* Custom productions */
.cap-custom {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(223, 34, 40, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #2a1414 0%, #1a0d0d 100%);
}

.capability-body {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.capability-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.capability-content h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--ivory);
}

.capability-content p {
  font-size: 0.95rem;
  color: var(--ivory-muted);
  margin-bottom: 1rem;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.capability-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--ivory-muted);
  background: rgba(10, 9, 8, 0.4);
  backdrop-filter: blur(6px);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--ivory-muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-muted);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */

/* Editorial page header — title spans wide, description offset to the right */
.page-header {
  padding-top: 13rem;
  padding-bottom: 6rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(223, 34, 40, 0.14) 0%, transparent 60%),
    var(--bg-deep);
  border-bottom: 1px solid var(--border-soft);
}

/* Variant: page header with full-bleed video background */
.page-header-video {
  background: var(--bg-deep);
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-top: 12rem;
  padding-bottom: 5rem;
}

.page-header-video > .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-header-video .hero-veil {
  background:
    linear-gradient(135deg, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.55) 45%, rgba(10, 8, 7, 0.85) 100%),
    radial-gradient(ellipse at 25% 80%, rgba(10, 8, 7, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.7) 0%, transparent 30%, transparent 60%, rgba(10, 8, 7, 0.95) 100%);
}

.page-header > .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 5rem;
  row-gap: 2rem;
  align-items: end;
}

.crumbs {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.page-header h1 {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-header p {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.3rem;
  max-width: none;
  margin: 0;
  padding-bottom: 0.8rem;
  color: var(--ivory-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-header > .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: 1.5rem;
  }
  .page-header h1,
  .page-header p {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ============================================
   FILTERS (Services / Marketplace)
   ============================================ */

.filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-pill {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s;
}

.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.filter-pill.active {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

/* ============================================
   REEL GALLERY (Experiences page)
   ============================================ */

.reel-gallery {
  background: var(--bg-deep);
  padding-top: 5rem;
}

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

.reel-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card), 0 0 40px rgba(223, 34, 40, 0.15);
}

.reel-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0807;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.92;
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.06);
  opacity: 1;
}

.reel-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 8, 7, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 235, 224, 0.4);
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.reel-card:hover .reel-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 30px rgba(223, 34, 40, 0.5);
}

.reel-play::after {
  content: "";
  border-left: 14px solid var(--ivory);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.reel-meta {
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reel-cat {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.reel-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 400;
  margin: 0;
}

.reel-count {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* LIGHTBOX */
.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 6, 5, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-lightbox[aria-hidden="false"] {
  display: flex;
  opacity: 1;
}

/* Branded header bar inside the lightbox */
.reel-lightbox-brand {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 1002;
}

.reel-lightbox-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.reel-lightbox-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--accent-deep), transparent);
}

.reel-lightbox-by {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.reel-lightbox-by:hover {
  transform: scale(1.04);
}

.reel-lightbox-by-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}

.reel-lightbox-by-mark {
  height: 22px;
  width: auto;
  display: block;
}

.reel-lightbox-stage {
  width: min(100%, 1200px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reel-lightbox[aria-hidden="false"] .reel-lightbox-stage {
  transform: scale(1);
}

.reel-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(223, 34, 40, 0.2);
  background: #000;
}

.reel-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-lightbox-caption {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0 0.25rem;
  flex-wrap: wrap;
}

.reel-lightbox-caption-cat {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.reel-lightbox-caption-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ivory);
}

@media (max-width: 700px) {
  .reel-lightbox-brand {
    top: 1rem;
    left: 1rem;
    gap: 0.8rem;
  }
  .reel-lightbox-logo {
    height: 40px;
  }
  .reel-lightbox-divider {
    height: 28px;
  }
  .reel-lightbox-by-mark {
    height: 16px;
  }
  .reel-lightbox-caption-title {
    font-size: 1.05rem;
  }
}

.reel-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.6);
  border: 1px solid var(--border-soft);
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  font-family: var(--sans);
  line-height: 1;
  padding: 0;
}

.reel-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
  background: rgba(223, 34, 40, 0.12);
}

@media (max-width: 600px) {
  .reel-grid {
    grid-template-columns: 1fr;
  }
  .reel-lightbox {
    padding: 1rem;
  }
  .reel-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero-frame-main::after {
  animation: shimmer 4s ease-in-out infinite;
}
