:root {
  --void: #05070a;            /* Deep Matte Black */
  --void-rgb: 5, 7, 10;
  --panel: rgba(13, 18, 30, 0.42); /* Translucent Glass */
  --panel-2: rgba(18, 26, 44, 0.48);
  --line: rgba(255, 255, 255, 0.07); /* Glass Border */
  --paper: #ffffff;           /* Pure White */
  --muted: #ffffff;           /* Make all text white (no text mute) */
  --gold: #d4af37;            /* Vintage Gold */
  --gold-glow: rgba(212, 175, 55, 0.2);
  --text-header: #ffffff;
  --electric-blue: #00e5ff;   /* Electric Tech Blue */
  --electric-glow: rgba(0, 229, 255, 0.2);
  --crimson: #e8456f;
  --violet: #9b7ede;
  --gap: clamp(1.2rem, 3vw, 2.4rem);
}

/* Accent Variations overrides */
[data-accent="blue"] {
  --gold: #00e5ff;
  --gold-glow: rgba(0, 229, 255, 0.2);
}
[data-accent="crimson"] {
  --gold: #e8456f;
  --gold-glow: rgba(232, 69, 111, 0.2);
}
[data-accent="violet"] {
  --gold: #9b7ede;
  --gold-glow: rgba(155, 126, 222, 0.2);
}
[data-accent="gold"] {
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.2);
}

/* Light Theme Variables */
[data-theme="light"] {
  --void: #ffffff;            /* Pure White Background */
  --void-rgb: 255, 255, 255;
  --panel: rgba(245, 245, 245, 0.72);
  --panel-2: rgba(230, 235, 248, 0.85);
  --line: rgba(13, 18, 30, 0.08);
  --paper: #000000;           /* Pure Black Text */
  --muted: #000000;           /* Make all text black (no text mute) */
  --text-header: #000000;
}


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

body {
  background: var(--void);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--electric-blue);
  color: var(--void);
}

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

h1, h2, h3, h4, .serif-font {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-style: italic;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* custom header navigation */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

.custom-header.scrolled {
  background: rgba(5, 7, 10, 0.94);
  border-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 0.3s ease;
}

.logo b {
  font-style: normal;
  color: var(--gold);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  display: block;
  font-weight: 400;
  text-transform: uppercase;
}

.header-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(255, 51, 51, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .header-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 18px rgba(255, 51, 51, 0.6));
}

.footer-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .footer-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 20px rgba(255, 51, 51, 0.5));
}

@media (max-width: 576px) {
  .header-logo-img {
    height: 44px;
  }
  .footer-logo-img {
    height: 58px;
  }
}

.navlinks {
  display: flex;
  gap: 2.2rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.navlinks a {
  position: relative;
  color: var(--muted);
  transition: color .3s;
}

.navlinks a:hover, .navlinks a.active {
  color: var(--paper);
}

.navlinks a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}

.navlinks a:hover::after, .navlinks a.active::after {
  width: 100%;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  display: block;
}

/* Buttons */
.btn-custom {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, border-color .3s, color .3s;
}

.btn-custom:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--gold);
  color: #1a1204 !important;
}

.btn-solid:hover {
  background: #f2c667;
}

.btn-ghost {
  border-color: rgba(245, 243, 236, 0.28);
  color: var(--paper) !important;
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(245, 243, 236, 0.06);
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--void);
}

.slides-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: 6rem;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide .slide-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-slide .slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  opacity: 0.45;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, var(--void) 2%, rgba(5, 7, 10, 0.35) 45%, rgba(5, 7, 10, 0.65) 100%);
}

.hero-slide .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slide h1 {
  font-size: clamp(2.0rem, 6.5vw, 5.0rem);
  line-height: 1.02;
  max-width: 18ch;
}

.hero-slide h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-slide p.lede {
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.12rem;
}

/* Slider controls styling */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.55);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.slider-control:hover {
  background: var(--gold);
  color: #1a1204;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.slider-control.prev { left: clamp(1rem, 3vw, 2.5rem); }
.slider-control.next { right: clamp(1rem, 3vw, 2.5rem); }

/* Slider Indicators styling */
.slider-indicators {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
}

.slider-indicators .indicator {
  width: 32px;
  height: 2px;
  background: rgba(245, 243, 236, 0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.slider-indicators .indicator.active {
  background: var(--gold);
  width: 48px;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  right: 2rem;
  z-index: 10;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: var(--muted);
  display: block;
}

/* Stats strip */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stat b {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  display: block;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap);
  align-items: center;
}

.about-grid p {
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 52ch;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#about-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Section padding */
section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Glassmorphic Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

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

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

.service-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.2rem 1.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, var(--gold));
  box-shadow: 0 12px 40px 0 rgba(0, 229, 255, 0.08);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.6rem;
  color: var(--accent, var(--gold));
}

.service-card h3 {
  font-size: 1.28rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card .num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Spec Hover Reveal Button */
.service-card-action {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1);
  margin-top: 1.4rem;
}

.service-card:hover .service-card-action {
  opacity: 1;
  transform: translateY(0);
}

/* Shell library cards */
.shell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shell-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.shell-card canvas {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  background: radial-gradient(ellipse at 50% 78%, #101a30 0%, #05070a 72%);
}

.shell-label {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  background: rgba(13, 18, 30, 0.2);
}

.shell-label h4 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.shell-label span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
}

.shell-hint {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  opacity: 0;
  transition: opacity .3s;
  text-transform: uppercase;
}

.shell-card:hover .shell-hint {
  opacity: 1;
}

/* Gallery Filter bar */
.filter-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
}

.filter-chip:hover, .filter-chip.active-chip {
  background: var(--gold);
  color: #1a1204;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Photo Grid (masonry layout) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 0.7rem;
}

.photo-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 82%, #101a30 0%, #05070a 75%);
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card canvas, .photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.88) 0%, rgba(5, 7, 10, 0.15) 42%, rgba(5, 7, 10, 0) 65%);
  display: flex;
  align-items: flex-end;
  padding: 0.9rem 1rem;
  opacity: 0;
  transition: opacity .35s;
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay .pt {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  color: #ffffff;
}

.photo-overlay .pm {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-expand {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 6;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.6);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 0.85rem;
  color: var(--paper);
  border-color: var(--line);
}

.photo-card:hover .photo-expand {
  opacity: 1;
}

/* Video cards & Canvas grids */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.video-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s;
}

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

.video-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: radial-gradient(ellipse at 50% 82%, #101a30 0%, #05070a 75%);
  overflow: hidden;
}

.video-thumb canvas, .video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.video-play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.55);
  border: 1px solid rgba(245, 243, 236, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  backdrop-filter: blur(4px);
  transition: background .3s, transform .3s, color .3s;
  color: var(--paper);
  padding-left: 2px;
  z-index: 6; /* stay above video preview element */
}

.video-card:hover .video-play span {
  background: var(--gold);
  color: var(--void);
  transform: scale(1.08);
  border-color: var(--gold);
}

.video-duration {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  z-index: 5;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  background: rgba(5, 7, 10, 0.7);
  padding: 0.2em 0.5em;
  border-radius: 2px;
  letter-spacing: 0.05em;
  color: var(--paper);
}

.video-meta {
  padding: 0.9rem 1.1rem 1.1rem;
  background: rgba(13, 18, 30, 0.35);
  border-top: 1px solid var(--line);
}

.video-meta h4 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  margin-top: 0;
}

.video-meta span {
  font-family: 'Space Mono', monospace;
  font-size: 0.64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Modal timelines & Simulator styles */
.show-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.show-stage {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 100%, #101a30 0%, #05070a 70%);
  min-height: 440px;
}

#show-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.show-controls {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.show-controls .btn-custom {
  padding: 0.75rem 1.4rem;
}

.show-timer {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
  background: rgba(5, 7, 10, 0.75);
  padding: 0.4em 0.8em;
  border-radius: 2px;
  border: 1px solid var(--line);
}

.cue-sheet {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}

.cue-sheet h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.cue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
  max-height: 300px;
  padding: 0;
  margin: 0;
}

.cue-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.72rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
  transition: color .3s;
}

.cue-list li .cue-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  width: 2.4rem;
  flex-shrink: 0;
}

.cue-list li .cue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.5;
}

.cue-list li.active {
  color: var(--paper);
}

.cue-list li.active .cue-dot {
  opacity: 1;
  box-shadow: 0 0 8px currentColor;
}

.cue-list li.done {
  opacity: 0.4;
}

/* Modals structural styles override */
.custom-modal-content {
  background: var(--void);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.custom-modal-header {
  border-bottom: 1px solid var(--line);
}

/* Process steps */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-item {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1.4rem;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.process-item .cue-num {
  font-family: 'Space Mono', monospace;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.process-item h3 {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  margin: 0.7rem 0 0.5rem;
}

.process-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.test-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.test-card .stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.test-card p.quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.test-card .who {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA Banner override */
.cta-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

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

/* Contact forms to match original inputs */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.contact-info .item {
  margin-bottom: 1.8rem;
}

.contact-info .item span {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-info .item a, .contact-info .item p {
  color: var(--paper);
  font-size: 1.02rem;
}

.contact-info .owner-info {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-top: 2px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-wrapper label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field-wrapper select option {
  background: var(--void);
  color: var(--paper);
}

.form-field-wrapper input, .form-field-wrapper select, .form-field-wrapper textarea {
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 0.85em 1.1em;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  width: 100%;
}

.form-field-wrapper input:focus, .form-field-wrapper select:focus, .form-field-wrapper textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Live availability badge styling */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  padding: 0.45rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  border-radius: 30px;
  margin-bottom: 1.4rem;
}
.availability-badge span.dot {
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric-blue);
  animation: pulse 1.6s infinite alternate;
}
@keyframes pulse {
  0% { opacity: 0.2; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* 3-Step Wizard Layout styling */
.wizard-container {
  background: rgba(13, 18, 30, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.2rem;
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}
.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}
.step-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-lbl.active {
  color: var(--gold);
  font-weight: 500;
}
.effects-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 576px) {
  .effects-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.fx-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 0.72rem 0.9rem;
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.fx-option:hover {
  background: rgba(0, 229, 255, 0.03);
  border-color: rgba(0, 229, 255, 0.3);
}
.fx-option input {
  accent-color: var(--electric-blue);
  cursor: pointer;
  width: auto;
}

/* Footer list overrides */
footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

footer h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  margin-top: 0;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}

footer ul a {
  color: var(--muted);
}

footer ul a:hover {
  color: var(--paper);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
  color: var(--muted);
}

.socials a:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

/* Scroll reveal transitions */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Mobile grid stacks */
@media (max-width: 1199px) {
  .navlinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem !important;
    width: 100%;
  }
  .burger {
    display: flex !important;
  }
  .nav-cta .btn-solid {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-grid, .contact-grid, .show-wrap {
    grid-template-columns: 1fr;
  }
  .shell-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-slide {
    padding-top: 7rem;
  }
  .slider-control {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .logo {
    display: inline-block;
  }
  .shell-grid, .video-grid, .process-list, .foot-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .photo-card.tall, .photo-card.wide {
    grid-row: span 1 !important;
    grid-column: span 1 !important;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .hero-actions .btn-custom {
    width: 100%;
    justify-content: center;
  }
  #contact {
    padding: 3.5rem 0;
  }
  form {
    gap: 0.9rem;
  }
  .form-field-wrapper input, .form-field-wrapper select, .form-field-wrapper textarea {
    padding: 0.75em 0.95em;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Instagram grid styles */
.instagram-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--void);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s, border-color 0.3s;
}
.instagram-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.instagram-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
.instagram-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-card:hover img {
  transform: scale(1.05);
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.75);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
}
.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

/* Sticky WhatsApp Inquiry button styles */
.sticky-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #20ba59;
}
.sticky-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25d366;
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.sticky-whatsapp .tooltip-text {
  position: absolute;
  right: 70px;
  background: rgba(13, 18, 30, 0.9);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 6px 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.sticky-whatsapp:hover .tooltip-text {
  opacity: 1;
}

/* Lightbox Navigation Overlay & Swipe Styles */
.lb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 18, 30, 0.45);
  border: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(8px);
}
.lb-nav-btn:hover {
  background: var(--gold);
  color: #1a1204;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px var(--gold-glow);
}
.lb-nav-btn.prev {
  left: 15px;
}
.lb-nav-btn.next {
  right: 15px;
}
@media (max-width: 768px) {
  .lb-nav-btn {
    width: 40px;
    height: 40px;
  }
  .lb-nav-btn.prev {
    left: 8px;
  }
  .lb-nav-btn.next {
    right: 8px;
  }
}

/* Image Zoom support inside Fullscreen Lightbox */
#lbImg.zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}

/* Red Accent for "FX" Logo */
.logo-red {
  color: #ff3333 !important;
  font-weight: 700;
}

/* Page Hero Banner with Image Backdrops */
.page-hero-banner {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  transition: border-color 0.3s;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 7, 10, 0.7), rgba(5, 7, 10, 0.88));
  z-index: 1;
}
[data-theme="light"] .page-hero-banner::before {
  background: linear-gradient(to bottom, rgba(244, 246, 250, 0.76), rgba(244, 246, 250, 0.93));
}
.page-hero-banner .container {
  position: relative;
  z-index: 2;
}

/* Theme settings dropdown panels */
.theme-settings-dropdown {
  position: fixed;
  width: 280px;
  background: rgba(13, 18, 30, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--paper);
}
[data-theme="light"] .theme-settings-dropdown {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.theme-settings-dropdown h5 {
  color: var(--text-header);
}

.btn-mode {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 12px;
  transition: all 0.3s;
}
[data-theme="light"] .btn-mode {
  background: rgba(13, 18, 30, 0.03);
  color: var(--muted);
}
.btn-mode:hover, .btn-mode.active {
  background: var(--gold);
  color: #1a1204 !important;
  border-color: var(--gold);
}

.btn-accent {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.btn-accent:hover {
  transform: scale(1.15);
}
.btn-accent.active {
  border-color: var(--paper);
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .btn-accent.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Light theme CSS class overrides */
[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] .serif-font,
[data-theme="light"] h1 em,
[data-theme="light"] .logo {
  color: var(--text-header) !important;
}

[data-theme="light"] .header-logo-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.35)) contrast(1.1);
}

[data-theme="light"] .footer-logo-img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.35)) contrast(1.1);
}

[data-theme="light"] .custom-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

[data-theme="light"] .nav-link-custom {
  color: var(--muted);
}
[data-theme="light"] .nav-link-custom:hover, 
[data-theme="light"] .nav-link-custom.active {
  color: var(--paper);
}

[data-theme="light"] .stats {
  background: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .service-card,
[data-theme="light"] .process-item,
[data-theme="light"] .test-card,
[data-theme="light"] .instagram-card,
[data-theme="light"] .wizard-container,
[data-theme="light"] .cue-sheet,
[data-theme="light"] .video-meta {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(13, 18, 30, 0.04);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .video-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .service-card p,
[data-theme="light"] .process-item p,
[data-theme="light"] .test-card p,
[data-theme="light"] .video-meta span,
[data-theme="light"] .stat span {
  color: var(--muted) !important;
}

[data-theme="light"] .service-card h3,
[data-theme="light"] .service-card .num,
[data-theme="light"] .process-item h3,
[data-theme="light"] .test-card p.quote,
[data-theme="light"] .test-card .who,
[data-theme="light"] .cue-sheet h3,
[data-theme="light"] .video-meta h4,
[data-theme="light"] .stat b {
  color: var(--paper) !important;
}

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea,
[data-theme="light"] .form-field-wrapper input,
[data-theme="light"] .form-field-wrapper select,
[data-theme="light"] .fx-option {
  background: rgba(255, 255, 255, 0.9);
  color: var(--paper);
  border-color: var(--line);
}

[data-theme="light"] .fx-option span {
  color: var(--paper);
}

[data-theme="light"] .availability-badge {
  background: rgba(13, 18, 30, 0.05);
  color: var(--paper);
  border-color: var(--line);
}

[data-theme="light"] .show-stage {
  background: radial-gradient(ellipse at 50% 100%, #e2e8f0 0%, #f1f5f9 70%);
}
[data-theme="light"] .show-timer {
  color: var(--muted);
}
[data-theme="light"] .cue-list li.active {
  color: var(--paper);
}
[data-theme="light"] .btn-ghost {
  border-color: rgba(28, 33, 48, 0.28);
  color: var(--paper) !important;
}
[data-theme="light"] .btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(13, 18, 30, 0.04);
}

/* Dynamic theme overrides for text readability */
.text-muted, .text-secondary {
  color: var(--muted) !important;
}

/* Mobile Right-to-Left Slide Menu drawer */
@media (max-width: 1199px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden offscreen on the right */
    width: 300px;
    height: 100vh;
    background: rgba(13, 18, 30, 0.98) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--line);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1000;
    display: block !important;
    visibility: hidden;
  }
  
  [data-theme="light"] .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .navbar-collapse.show {
    right: 0; /* Slide in! */
    visibility: visible;
  }
  
  .navbar-collapse.collapsing {
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    right: -300px;
    display: block !important;
    visibility: visible;
  }

  /* Make sure burger menu remains on top to toggle close */
  .burger {
    z-index: 1010;
  }
}


