:root {
  --void: #05070a;            /* Deep Matte Black */
  --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: #f5f3ec;           /* Warm Sand Champagne */
  --muted: #8d93a8;
  --gold: #d4af37;            /* Vintage Gold */
  --gold-glow: rgba(212, 175, 55, 0.2);
  --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);
}

* {
  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: flex;
  align-items: center;
  gap: 0.6em;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1;
}

.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;
}

.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: 0;
}

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

.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: 2;
  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;
}

.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(--electric-blue);
}

.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;
}

.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(--electric-blue);
  color: var(--void);
  transform: scale(1.08);
  border-color: var(--electric-blue);
}

.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .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;
}

