/* ==========================================================================
   AGUYB STUDIOS - Design System
   Deep purple / electric cyan / blue, glassmorphism, cinematic dark UI
   with alternating warm-ivory "light" sections for a luxury, authentic feel.
   ========================================================================== */

:root {
  /* Brand constants (never change between sections) */
  --bg-deep: #0C0321;
  --bg-deep-2: #100530;
  --bg-panel: #130a35;
  --cyan: #17A7D1;
  --blue: #254FBA;
  --white: #FFFFFF;
  --gold: #E8C77E;

  /* Light-section background (warm ivory, not stark white) */
  --bg-light-1: #FBF8F3;
  --bg-light-2: #F1EAE0;

  /* Theme-aware tokens: overridden inside .section-light */
  --text-1: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.68);
  --text-3: rgba(255, 255, 255, 0.44);
  --surface-glass-bg: rgba(255, 255, 255, 0.045);
  --surface-glass-border: rgba(255, 255, 255, 0.12);
  --surface-glass-bg-strong: rgba(255, 255, 255, 0.08);
  --bg-fade: var(--bg-deep);

  /* Solid brand fills only, no gradients. Variable names kept for a minimal
     diff; both now resolve to flat colors instead of a linear-gradient. */
  --gradient-brand: #17A7D1;
  --gradient-brand-soft: rgba(23, 167, 209, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 10px 22px -8px rgba(23, 167, 209, 0.4);
  --shadow-soft: 0 30px 80px -40px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* If a photo fails to load, main.js strips its src and adds this class so
   the box shows a branded dark gradient instead of the browser's default
   gray placeholder box (which is what would otherwise sit behind any
   caption/overlay text and read as "text on a gray background"). Every
   image-wrapper class below also carries its own background-color as a
   second safety net for the moment before an image has painted. */
img.img-fallback {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-deep-2));
  min-height: 80px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 900px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
  display: inline-block;
}

/* Solid accent color, not a gradient clip. Class name kept as-is since it's
   used throughout the markup as "the accent highlight span." */
.gradient-text {
  color: var(--cyan);
}

.section {
  position: relative;
  padding: 110px 0;
}

/* Light, warm-ivory section variant for a "luxury, authentic" rhythm */
.section-light {
  background: var(--bg-light-1);
  --text-1: #16112B;
  --text-2: rgba(22, 17, 43, 0.66);
  --text-3: rgba(22, 17, 43, 0.46);
  --surface-glass-bg: rgba(22, 17, 43, 0.035);
  --surface-glass-border: rgba(22, 17, 43, 0.12);
  --surface-glass-bg-strong: rgba(22, 17, 43, 0.06);
  --bg-fade: var(--bg-light-1);
  color: var(--text-1);
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.6vw, 17px);
}

/* ---------- Ambient background glow: removed ----------
   The blurred glow blobs read as a soft gradient even though they were a
   solid color, so they're fully disabled here rather than left in every
   section's markup. Kept as a no-op rule (rather than deleting the divs
   from every page) to keep this change to one file. */
.glow { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -8px rgba(23,167,209,0.5); }
.btn-ghost {
  background: var(--surface-glass-bg);
  color: var(--text-1);
  border-color: var(--surface-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-ghost:hover { border-color: var(--cyan); background: var(--surface-glass-bg-strong); transform: translateY(-3px); }
.btn-sm { padding: 12px 22px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Glass panel ---------- */
.glass {
  background: var(--surface-glass-bg);
  border: 1px solid var(--surface-glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 3, 33, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  box-sizing: border-box;
  display: block;
}
.logo-sub {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 3, 33, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: 'Poppins', sans-serif; font-size: 23px; font-weight: 600; color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Poster frame auto-extracted by Wix from the real hero video
     (home_blocks.hero.bgVideoUrl) -- shown until the <video> element
     paints over it, and as the fallback if video can't play. Solid
     background-color underneath so nothing looks broken if the poster
     URL itself ever 404s. */
  background-color: var(--bg-deep-2);
  background-image: url('https://static.wixstatic.com/media/059584_7fede80b36ef44509e216c957663c079f000.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  /* Flat solid wash for text contrast, no gradient blend. */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-deep);
  opacity: 0.78;
}
.hero-bg video {
  /* CMS-managed background video (Wix Data: content_blocks -> home_hero ->
     Background Video URL). Sits above the background-image, below the
     ::after contrast wash and the hero content, so text stays readable. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-grid {
  /* Decorative grid removed along with all gradients/masks; element kept
     in the markup as a no-op so no HTML edits were needed across pages. */
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  margin-bottom: 26px;
  color: #fff;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.htl {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 6vw, 58px);
}
.htl-small {
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 6px;
}
.htl-accent { color: var(--cyan); }
.hero-preview {
  font-size: clamp(16px, 1.9vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-cue-line {
  width: 1px;
  height: 46px;
  background: rgba(23, 167, 209, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  animation: scrollcue 2.2s infinite ease-in-out;
}
@keyframes scrollcue { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ==========================================================================
   Reel / sliding video carousel (section 2)
   ========================================================================== */
.reel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.reel-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}
.reel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reel-scroll 38s linear infinite;
}
.reel-track:hover { animation-play-state: paused; }
@keyframes reel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reel-card, .shortform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--bg-panel);
  cursor: pointer;
}
.reel-card { flex: 0 0 300px; }
/* Photo stays fully bright -- no dark wash over the image. The play
   button has its own frosted-glass background so it reads against any
   photo without needing to darken it, and title/subtitle text lives in
   a solid strip below the photo instead of overlaid on top of it. */
.card-photo { position: relative; overflow: hidden; }
.reel-card .card-photo { aspect-ratio: 16 / 10; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.reel-card:hover .card-photo img, .shortform-card:hover .card-photo img { transform: scale(1.06); }
.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.reel-card:hover .card-play, .shortform-card:hover .card-play { transform: translate(-50%, -50%) scale(1.12); background: var(--gradient-brand); }
.card-play svg { width: 15px; height: 15px; fill: #fff; margin-left: 2px; }
.card-info { padding: 12px 14px; }
.card-info b { display: block; font-size: 14.5px; font-weight: 600; color: #fff; }
.card-info span { font-size: 12px; color: rgba(255,255,255,0.72); }
.card-info .reel-client { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; letter-spacing: 0.2px; }

/* ==========================================================================
   Short-form clip slideshow (replaces the old "Why AGUYB" strip)
   Same sliding-track mechanism as the reel above, but taller vertical
   9/16 cards to read as short-form / reels-style content, and scrolling
   the opposite direction for a little visual variety.
   ========================================================================== */
.shortform-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: shortform-scroll 34s linear infinite;
}
.shortform-track:hover { animation-play-state: paused; }
@keyframes shortform-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.shortform-card { flex: 0 0 200px; }
.shortform-card .card-photo { aspect-ratio: 9 / 16; }

/* ==========================================================================
   Movement statement band
   ========================================================================== */
.movement {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--surface-glass-border);
  border-bottom: 1px solid var(--surface-glass-border);
}
.movement-inner { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; }
.movement h2 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 26px;
  color: #fff;
}
.movement p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
}
.movement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}
.movement-tag {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* ==========================================================================
   Philosophy strip
   ========================================================================== */
.philosophy { padding: 100px 0; }
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Bento-style photo collage: one tall hero shot on the left, a 2x2 grid
   of clickable gallery photos on the right. Replaces an earlier version
   that overlaid small thumbnails on top of the hero image. */
.philosophy-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  aspect-ratio: 4/3;
}
.philosophy-media-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--bg-panel);
}
.philosophy-media-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* on-site-production.html's "What This Service Is" section reuses
   .philosophy-media with just a single photo and no gallery -- let the
   main image span the full width in that case. */
.philosophy-media-main:only-child { grid-column: 1 / -1; }
/* No dark wash over the hero photo -- kept fully bright. */

/* Photo gallery as a carousel slider: one bright, untinted photo at a
   time, with prev/next arrows (own frosted-glass background, not a wash
   over the photo) and a caption strip that lives BELOW the image rather
   than overlaid on top of it, so nothing ever darkens the picture. */
.philosophy-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--bg-panel);
}
.gallery-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gallery-slide-photo { position: relative; flex: 1; overflow: hidden; cursor: pointer; }
.gallery-slide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: var(--bg-panel);
  border-top: 1px solid var(--surface-glass-border);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.25s, background 0.25s;
}
.gallery-arrow:hover { background: var(--gradient-brand); transform: translateY(-50%) scale(1.08); }
.gallery-arrow svg { width: 14px; height: 14px; }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-dots { display: flex; gap: 6px; flex: 0 0 auto; }
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.gallery-dot.active { background: #fff; transform: scale(1.3); }
.philosophy-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  margin-bottom: 20px;
}
.philosophy-text p { color: var(--text-2); margin-bottom: 16px; font-size: 15.5px; }

/* ==========================================================================
   Services accordion ("What We Build")
   ========================================================================== */
.acc-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--surface-glass-border);
}
.acc-item { border-bottom: 1px solid var(--surface-glass-border); }
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6px;
  background: none;
  border: none;
  text-align: left;
  color: inherit;
}
.acc-header-left { display: flex; align-items: center; gap: 20px; }
.acc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(23,167,209,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-icon svg { width: 21px; height: 21px; stroke: var(--cyan); }
.acc-title-wrap { display: flex; flex-direction: column; gap: 4px; }
.acc-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(16px, 2vw, 19px); }
.acc-tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); }
.acc-chevron {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--surface-glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-chevron svg { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.4s var(--ease); }
.acc-item.is-open .acc-chevron { border-color: var(--cyan); color: var(--cyan); }
.acc-item.is-open .acc-chevron svg { transform: rotate(180deg); }
.acc-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.acc-item.is-open .acc-panel-wrap { grid-template-rows: 1fr; }
.acc-panel { overflow: hidden; }
.acc-panel-inner { padding: 0 6px 30px 66px; max-width: 640px; }
.acc-panel-inner p { color: var(--text-2); font-size: 15px; }

/* ==========================================================================
   Sets
   ========================================================================== */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.set-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
}
/* Photo-only cover: no dark wash sits over the image at rest (this used
   to be a permanent rgba(12,3,33,0.4) tint plus a play button, left over
   from when covers doubled as video triggers -- sets have no video, so
   the wash just dimmed the photo for no reason). A small "view gallery"
   badge in the corner hints that clicking opens more photos, without
   covering or darkening the picture itself. */
.set-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-panel); cursor: pointer; }
.set-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.set-card:hover .set-media img { transform: scale(1.06); }
.set-gallery-badge {
  position: absolute; right: 12px; bottom: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.set-card:hover .set-gallery-badge { transform: scale(1.08); background: var(--gradient-brand); }
.set-gallery-badge svg { width: 16px; height: 16px; fill: #fff; }
.set-body { padding: 22px 20px 26px; }
.set-body h4 { font-size: 17px; margin-bottom: 8px; }
.set-body p { font-size: 13.5px; color: var(--text-2); margin-bottom: 18px; }
.set-actions { display: flex; flex-direction: column; gap: 10px; }
.set-actions .btn { width: 100%; }
.set-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan);
  text-align: center;
  padding: 10px;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; position: relative; }
.process-grid::before {
  content: "";
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 1px;
  background: rgba(23, 167, 209, 0.35);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-index {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px;
  background: var(--bg-light-1);
  border: 1px solid rgba(23,167,209,0.5);
  color: var(--cyan);
  margin-bottom: 20px;
}
.process-step h4 { font-size: 16.5px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-2); }

/* ==========================================================================
   Bundles
   ========================================================================== */
.bundles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
#bundles .bundles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 920px; margin: 0 auto; }
.bundle-card {
  position: relative;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.bundle-card:hover { transform: translateY(-6px); }
.bundle-card.featured { border-color: rgba(23,167,209,0.55); background: var(--surface-glass-bg-strong); }
.bundle-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 7px 20px; border-radius: 100px;
  background: var(--gradient-brand);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.bundle-name { font-family: 'Poppins', sans-serif; font-size: 19px; margin-bottom: 8px; }
.bundle-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 24px; }
.bundle-price { font-family: 'Poppins', sans-serif; font-size: 38px; font-weight: 700; margin-bottom: 2px; }
.bundle-price span { font-size: 14px; font-weight: 500; color: var(--text-2); }
.bundle-cadence { font-size: 12.5px; color: var(--text-3); margin-bottom: 28px; }
.bundle-savings {
  display: inline-block; font-size: 11.5px; font-weight: 600;
  color: var(--cyan); background: rgba(23,167,209,0.12);
  border: 1px solid rgba(23,167,209,0.3); border-radius: 20px;
  padding: 4px 12px; margin: -20px 0 24px;
}
.bundle-features { display: grid; gap: 13px; margin-bottom: 32px; flex: 1; }
.bundle-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-2); }
.bundle-features svg { width: 16px; height: 16px; stroke: var(--cyan); flex-shrink: 0; margin-top: 2px; }
/* Optional photo slot at the top of a bundle-card (currently used by the
   Offsite Package Options cards, imageUrl managed from the onsite_packages
   collection in Wix Data). Cards without a .bundle-media element are
   unaffected. */
.bundle-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -42px -32px 24px;
  background: var(--bg-panel);
}
.bundle-media img { width: 100%; height: 100%; object-fit: cover; }
.bundle-note { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Corporate CTA band
   ========================================================================== */
.corporate { padding: 100px 0; }
.corporate-panel {
  padding: 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.corporate-panel h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 18px; position: relative; z-index: 1; }
.corporate-panel p { color: var(--text-2); margin-bottom: 28px; max-width: 480px; position: relative; z-index: 1; }
.corporate-list { display: grid; gap: 14px; position: relative; z-index: 1; }
.corporate-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-2); }
.corporate-list svg { width: 18px; height: 18px; stroke: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { padding: 120px 0 100px; text-align: center; position: relative; }
.final-cta h2 { font-size: clamp(28px, 4.6vw, 48px); max-width: 780px; margin: 0 auto 20px; color: #fff; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 40px; font-size: 16px; }
.final-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { padding: 32px 28px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.review-stars svg { width: 15px; height: 15px; fill: var(--gold); }
.review-quote { font-size: 14.5px; color: var(--text-1); margin-bottom: 24px; line-height: 1.65; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.review-person b { display: block; font-size: 14px; }
.review-person span { font-size: 12.5px; color: var(--text-2); }

/* ==========================================================================
   Notable guests (sets.html) — photo gallery
   ========================================================================== */
.guests-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.guest-photo-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
}
.guest-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.guest-photo-card:hover img { transform: scale(1.06); }
.guest-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 16px 16px;
  background: linear-gradient(to top, rgba(12,3,33,0.92) 10%, rgba(12,3,33,0.55) 55%, transparent 100%);
}
.guest-caption b { display: block; font-size: 14.5px; color: #fff; font-weight: 600; }
.guest-caption span { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.4; display: block; margin-top: 3px; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: flex-start; }
.contact-info p { color: var(--text-2); margin: 16px 0 30px; max-width: 380px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail svg { width: 19px; height: 19px; stroke: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.contact-detail b { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-detail span { font-size: 13.5px; color: var(--text-2); }

.form-panel { padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
/* Spam honeypot: off-screen (not display:none) so basic bots that fill every
   visible-looking field still trip it, while screen readers skip it via
   aria-hidden and it's never in the tab order. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--text-2); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--surface-glass-bg);
  border: 1px solid var(--surface-glass-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2317A7D1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--cyan); background: var(--surface-glass-bg-strong); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 2px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  flex-shrink: 0;
}
.form-checkbox label { font-size: 13px; color: var(--text-2); font-weight: 500; }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--text-3); }
.form-status { margin-top: 18px; font-size: 13.5px; padding: 13px 16px; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(23,167,209,0.15); border: 1px solid rgba(23,167,209,0.4); }
.form-status.error { background: rgba(210,80,80,0.14); border: 1px solid rgba(210,80,80,0.4); }

/* ==========================================================================
   On-Site Production page
   ========================================================================== */
.shows-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.show-badge {
  padding: 13px 22px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-2);
}
.shows-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-3);
  max-width: 560px;
  margin: 30px auto 0;
}

.included-panel { padding: 48px; }
.included-price { text-align: center; margin-bottom: 40px; }
.included-price .price { font-family: 'Poppins', sans-serif; font-size: clamp(34px, 5vw, 44px); font-weight: 700; }
.included-price .unit { font-size: 14px; color: var(--text-2); display: block; margin-top: 6px; }
.included-price .btn { margin-top: 22px; }
.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.included-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); margin-bottom: 18px; }
.included-col ul { display: grid; gap: 13px; }
.included-col li { font-size: 14px; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; }
.included-col svg { width: 15px; height: 15px; stroke: var(--cyan); flex-shrink: 0; margin-top: 3px; }

.featured-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.featured-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--surface-glass-border); background: var(--bg-panel); }
.featured-card img { width: 100%; height: 100%; object-fit: cover; }
.featured-card span {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  font-size: 12.5px; font-weight: 600; color: #fff;
  padding: 8px 12px; border-radius: 100px;
  background: rgba(12, 3, 33, 0.55);
  text-align: center;
}

.coverage-panel { padding: 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.coverage-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.coverage-list span { padding: 9px 16px; border-radius: 100px; font-size: 13px; color: var(--text-2); }
.coverage-note { font-size: 13px; color: var(--text-3); }
.coverage-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep-2);
}
.coverage-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(23, 167, 209, 0.3); }
.coverage-ring.r1 { width: 38%; height: 38%; }
.coverage-ring.r2 { width: 62%; height: 62%; }
.coverage-ring.r3 { width: 86%; height: 86%; }
.coverage-center {
  position: relative;
  z-index: 2;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.blog-posts { display: grid; gap: 26px; }
.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
}
.post-media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-panel); }
/* contain, not cover: the real Wix blog covers are graphics with their own
   baked-in text/logos at whatever aspect ratio they were exported, so
   cropping to fill a fixed 4/3 box (the old object-fit: cover) was cutting
   off headlines and logos on any cover that didn't happen to match 4/3.
   contain always shows the whole image, letterboxed on the branded
   background above instead of cropped. */
.post-media img { width: 100%; height: 100%; object-fit: contain; }
.post-body { padding: 22px 24px 22px 0; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 11.5px; color: var(--text-3); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.post-meta .post-tag { color: var(--cyan); font-weight: 700; }
.post-card h3 { font-size: 19px; margin-bottom: 10px; }
.post-card p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; flex: 1; }
.post-readmore { font-size: 13px; font-weight: 600; color: var(--cyan); }

.blog-sidebar { display: grid; gap: 38px; }
.sidebar-block h4 { font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 18px; }
.sidebar-sets, .sidebar-podcasts { display: grid; gap: 12px; }
.sidebar-set-card, .sidebar-podcast-card {
  display: flex; gap: 14px; align-items: center;
  padding: 12px; border-radius: 14px;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  transition: border-color 0.3s, background 0.3s;
}
.sidebar-set-card:hover, .sidebar-podcast-card:hover { border-color: rgba(23,167,209,0.4); background: var(--surface-glass-bg-strong); cursor: pointer; }
.sidebar-set-card img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sidebar-set-card b, .sidebar-podcast-card b { display: block; font-size: 13.5px; margin-bottom: 2px; }
.sidebar-set-card span, .sidebar-podcast-card span { font-size: 12px; color: var(--text-2); }
.sidebar-thumb { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; position: relative; }
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-thumb .mini-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(12,3,33,0.35); }
.sidebar-thumb .mini-play svg { width: 13px; height: 13px; fill: #fff; }

.sidebar-cta { padding: 28px; text-align: center; }
.sidebar-cta h4 { margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: var(--text-2); margin-bottom: 20px; }

/* ==========================================================================
   Article (single blog post)
   ========================================================================== */
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--cyan); margin-bottom: 22px; }
.article-back svg { width: 15px; height: 15px; }
.article-meta { display: flex; gap: 10px; align-items: center; font-size: 11.5px; color: var(--text-3); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.article-meta .post-tag { color: var(--cyan); font-weight: 700; }
.article-title { font-size: clamp(26px, 4vw, 38px); line-height: 1.2; margin-bottom: 18px; color: #fff; }
.article-excerpt { font-size: 16px; color: var(--text-2); margin-bottom: 30px; }
.article-cover { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 34px; background: var(--bg-panel); }
/* Same reasoning as .post-media img: show the whole cover graphic instead
   of cropping it to force-fit a 16:9 box. */
.article-cover img { width: 100%; height: 100%; object-fit: contain; }
.article-body { font-size: 15.5px; line-height: 1.85; color: var(--text-2); }
.article-body p { margin-bottom: 22px; }
.article-body p:first-of-type { font-size: 17px; color: var(--text-1); }
.article-body h3 { font-size: 20px; color: var(--text-1); margin: 36px 0 14px; line-height: 1.3; }
.article-body h3:first-child { margin-top: 0; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 12px; }
.article-body strong { color: var(--text-1); }
.article-body .terms-tier { border: 1px solid var(--surface-glass-border); background: var(--surface-glass-bg); border-radius: var(--radius-md); padding: 20px 22px; margin: 0 0 22px; }
.article-body .terms-tier h4 { font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); margin: 0 0 8px; }
.article-body .terms-note { font-size: 13.5px; color: var(--text-3); border-top: 1px solid var(--surface-glass-border); margin-top: 40px; padding-top: 20px; }

.article-video-card {
  display: flex; gap: 18px; align-items: center;
  padding: 18px; border-radius: var(--radius-md);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  margin: 38px 0; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.article-video-card:hover { border-color: rgba(23,167,209,0.4); background: var(--surface-glass-bg-strong); }
.article-video-thumb { width: 96px; height: 96px; border-radius: 12px; overflow: hidden; flex-shrink: 0; position: relative; }
.article-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-video-thumb .mini-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(12,3,33,0.4); }
.article-video-thumb .mini-play svg { width: 20px; height: 20px; fill: #fff; }
.article-video-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.article-video-card h4 { font-size: 16px; margin-bottom: 4px; }
.article-video-card span { font-size: 13px; color: var(--text-2); }

.article-share { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--surface-glass-border); }
.article-share span { font-size: 13px; color: var(--text-2); }

.blog-sidebar.article-sidebar { position: sticky; top: 110px; }

@media (max-width: 760px) {
  .blog-sidebar.article-sidebar { position: static; }
  .article-video-card { flex-direction: column; align-items: flex-start; }
  .article-video-thumb { width: 100%; height: 180px; }
}

/* ==========================================================================
   Booking page
   ========================================================================== */
.booking-hero { padding: 150px 0 60px; text-align: center; }
.booking-hero h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 18px; color: #fff; }
.booking-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 16px; }

.booking-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-bottom: 70px; }
.booking-step { padding: 30px 26px; text-align: left; }
.booking-step .process-index { margin-bottom: 18px; }
.booking-step h4 { font-size: 16px; margin-bottom: 8px; }
.booking-step p { font-size: 13.5px; color: var(--text-2); }

.booking-form-panel { padding: 46px; max-width: 780px; margin: 0 auto; }
.booking-form-panel h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 10px; }
.booking-form-panel > p { color: var(--text-2); margin-bottom: 32px; }

/* ==========================================================================
   Lightbox video modal
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 2, 18, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner {
  width: 100%; max-width: 960px; max-height: 86vh; aspect-ratio: 16/9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: #000;
  transition: max-width 0.3s var(--ease), aspect-ratio 0.3s var(--ease);
}
/* object-fit: contain (not cover) so the video is never cropped, whatever
   its real dimensions turn out to be, letterboxing instead if the box and
   the source clip's ratio don't match exactly. */
.lightbox-inner video { width: 100%; height: 100%; object-fit: contain; background: #000; }

/* A pasted YouTube link plays through an embedded iframe instead of the
   <video> tag (YouTube doesn't expose a raw file URL). Only one of the two
   is shown at a time, toggled by main.js via the .is-youtube class. */
.lightbox-iframe { width: 100%; height: 100%; border: 0; background: #000; display: none; }
.lightbox.is-youtube .lightbox-iframe { display: block; }
.lightbox.is-youtube video { display: none; }

/* Vertical clips (short-form slideshow, data-vertical="true") open in a
   tall 9:16 box as a starting guess. Once the actual video file loads,
   main.js reads its real width/height and overrides this aspect-ratio
   inline so playback always matches the exact ratio of the uploaded clip,
   not an assumption. */
.lightbox-inner.is-vertical {
  max-width: 400px;
  aspect-ratio: 9/16;
}
.lightbox-close {
  position: absolute; top: -46px; right: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 16px; height: 16px; stroke: #fff; }
.lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  color: #fff;
}
/* Shown by main.js in place of the <video> element when a clip's file
   genuinely fails to load (e.g. not uploaded to assets/video/ yet),
   instead of leaving a silently blank/broken player. */
.lightbox-error {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-deep-2));
  color: var(--text-2);
  text-align: center;
  padding: 24px;
}
.lightbox-error.active { display: flex; }
.lightbox-error svg { width: 34px; height: 34px; color: var(--text-3); }
.lightbox-error p { font-size: 14px; line-height: 1.5; }

/* ==========================================================================
   Photo lightbox (simple single-image viewer, used by [data-gallery-image]
   triggers such as the "Why It Works" gallery thumbnails)
   ========================================================================== */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(8, 2, 20, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.photo-lightbox.active { opacity: 1; visibility: visible; }
.photo-lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-glass-border);
  background: var(--bg-panel);
}
.photo-lightbox-inner img { width: 100%; max-height: 78vh; object-fit: contain; display: block; background: var(--bg-deep-2); }
.photo-lightbox-caption {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--text-2);
  background: var(--bg-panel);
}
.photo-lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.photo-lightbox-close svg { width: 16px; height: 16px; stroke: #fff; }

/* ==========================================================================
   Set gallery modal (sets.html "Choose Your Set" cards)
   Clicking a set cover opens this instead of a video: a small photo
   gallery of the set plus a plain-language "What's Included" list, since
   the cards never had real walkthrough video to play.
   ========================================================================== */
.set-modal {
  position: fixed; inset: 0; z-index: 320;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 2, 18, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.set-modal.active { opacity: 1; visibility: visible; }
.set-modal-inner {
  width: 100%; max-width: 920px; max-height: 88vh;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.set-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.set-modal-close svg { width: 15px; height: 15px; stroke: #fff; }
.set-modal-media { position: relative; background: #000; display: flex; flex-direction: column; }
.set-modal-media-main { aspect-ratio: 4/3; overflow: hidden; }
.set-modal-media-main img { width: 100%; height: 100%; object-fit: cover; }
.set-modal-thumbs {
  display: flex; gap: 8px; padding: 10px;
  background: rgba(0,0,0,0.4);
  overflow-x: auto;
}
.set-modal-thumbs img {
  width: 62px; height: 46px; object-fit: cover; border-radius: 6px;
  cursor: pointer; flex-shrink: 0;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.set-modal-thumbs img:hover { opacity: 0.85; }
.set-modal-thumbs img.active { opacity: 1; border-color: var(--cyan); }
.set-modal-info { padding: 34px 32px; overflow-y: auto; }
.set-modal-info h3 { font-size: 22px; margin-bottom: 6px; }
.set-modal-price { font-size: 15px; font-weight: 700; color: var(--cyan); margin-bottom: 14px; }
.set-modal-info > p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 22px; }
.set-modal-info h4 {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-3); margin-bottom: 12px;
}
.set-modal-included { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.set-modal-included li {
  font-size: 13.5px; color: var(--text-1); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 9px;
}
.set-modal-included li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient-brand); margin-top: 6px; flex-shrink: 0;
}

/* ==========================================================================
   Real-time booking modal (date + live availability + checkout redirect)
   ========================================================================== */
.booking-modal {
  position: fixed; inset: 0; z-index: 320;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 2, 18, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.booking-modal.active { opacity: 1; visibility: visible; }
.booking-modal-inner {
  width: 100%; max-width: 520px;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.14);
  max-height: 86vh;
  overflow-y: auto;
}
.booking-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.booking-modal-close svg { width: 15px; height: 15px; stroke: #fff; }
.booking-modal-title { font-size: 22px; margin: 6px 0 4px; }
.booking-modal-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 18px; }

.booking-stepper { display: flex; align-items: center; margin-bottom: 22px; }
.booking-step-track { flex: 1; height: 1px; background: var(--surface-glass-border); margin: 0 6px; }
.booking-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.booking-step-dot span {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  color: var(--text-2);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.booking-step-dot small { font-size: 10px; color: var(--text-3); letter-spacing: 0.02em; }
.booking-step-dot.is-active span { border-color: var(--cyan); background: rgba(23,167,209,0.18); color: var(--cyan); }
.booking-step-dot.is-active small { color: var(--text-1); }
.booking-step-dot.is-done span { border-color: var(--cyan); background: var(--cyan); color: #061029; }

.booking-step-intro { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
.booking-addons-list { display: grid; gap: 10px; margin-bottom: 18px; }
.booking-addon-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.booking-addon-row:hover { border-color: rgba(23,167,209,0.4); }
.booking-addon-check { display: flex; align-items: center; gap: 10px; }
.booking-addon-check input { width: 16px; height: 16px; accent-color: var(--cyan); flex-shrink: 0; }
.booking-addon-name { font-size: 13.5px; color: var(--text-1); }
.booking-addon-price { font-size: 13px; font-weight: 600; color: var(--cyan); flex-shrink: 0; }

.booking-total-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(23,167,209,0.1);
  border: 1px solid rgba(23,167,209,0.25);
  font-size: 13.5px; color: var(--text-2);
}
.booking-total-row strong { font-size: 18px; color: var(--text-1); }

.booking-step-actions { display: flex; gap: 10px; align-items: center; }
.booking-step-actions .btn-block { flex: 1; }
.booking-step-actions [data-back-to] { flex-shrink: 0; }

.booking-review-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  padding: 18px; margin-bottom: 18px;
}
.booking-review-name { font-family: 'Poppins', sans-serif; font-size: 16px; margin-bottom: 4px; }
.booking-review-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin-bottom: 14px; }
.booking-review-rows { display: grid; gap: 8px; margin-bottom: 14px; }
.booking-review-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-2);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--surface-glass-border);
}
.booking-review-row:last-child { border-bottom: none; padding-bottom: 0; }
.booking-review-row span:last-child { color: var(--text-1); font-weight: 600; }
.booking-checkout-status { font-size: 12.5px; color: #ff8080; min-height: 16px; margin-top: 10px; text-align: center; }

.booking-modal-row { display: flex; gap: 10px; margin-bottom: 14px; }
.booking-date-input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.booking-modal-status { font-size: 13px; color: var(--text-2); margin-bottom: 12px; min-height: 18px; }
.booking-slots-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-bottom: 20px; }
.booking-slot-btn {
  padding: 11px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.booking-slot-btn:hover:not(:disabled) { border-color: var(--cyan); background: rgba(23,167,209,0.14); }
.booking-slot-btn:disabled { opacity: 0.45; cursor: default; }
.booking-slot-btn.is-loading, .booking-slot-btn.is-selected { border-color: var(--cyan); background: rgba(23,167,209,0.22); }
.booking-modal-note { font-size: 12px; color: var(--text-3); line-height: 1.5; }

.booking-contact-fields { display: grid; gap: 10px; margin-bottom: 16px; }
.booking-field-row { display: flex; gap: 10px; }
.booking-contact-fields input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.booking-contact-fields input::placeholder { color: var(--text-3); }
.booking-contact-fields input:focus { outline: none; border-color: var(--cyan); }

.booking-wallets-row { display: flex; gap: 10px; margin-bottom: 14px; }
.booking-wallets-row > div { flex: 1; min-height: 44px; border-radius: var(--radius-sm); overflow: hidden; }
.booking-wallets-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 16px;
  font-size: 11.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.booking-wallets-divider::before, .booking-wallets-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--surface-glass-border);
}

.booking-card-label { display: block; font-size: 12.5px; color: var(--text-2); margin-bottom: 8px; }
.booking-card-container {
  min-height: 90px;
  padding: 4px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass-bg);
}

.booking-checkout-busy .booking-wallets-row { pointer-events: none; opacity: 0.6; }

.booking-success-panel { text-align: center; padding: 24px 8px 8px; }
.booking-success-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
}
.booking-success-icon svg { width: 26px; height: 26px; }
.booking-success-panel h4 { font-family: 'Poppins', sans-serif; font-size: 20px; margin-bottom: 8px; }
.booking-success-detail { font-size: 13.5px; color: var(--text-2); line-height: 1.5; margin-bottom: 22px; }

@media (max-width: 480px) {
  .booking-field-row { flex-direction: column; }
  .booking-slots-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-modal-inner { padding: 28px 20px; }
  .guests-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { padding: 70px 0 30px; border-top: 1px solid var(--surface-glass-border); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-about p { color: rgba(255,255,255,0.62); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer-tour { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--cyan); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; stroke: #fff; }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding-top: 26px; border-top: 1px solid var(--surface-glass-border);
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Nav has 7 links + a CTA now, give it its own tightening tier and switch
   to the hamburger sooner than the rest of the layout. */
@media (max-width: 1180px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12.5px; }
  .logo-sub { display: none; }
}
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1024px) {
  .services-grid, .sets-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid, .booking-steps { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 40px 24px; }
  .process-grid::before { display: none; }
  .bundles-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-media { display: flex; flex-direction: column; aspect-ratio: auto; gap: 8px; }
  .philosophy-media-main { aspect-ratio: 16/10; }
  .philosophy-gallery { aspect-ratio: 16/10; }
  .corporate-panel { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .included-grid { grid-template-columns: 1fr; gap: 26px; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .coverage-panel { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 160px 1fr; }
  .guests-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding: 130px 0 70px; min-height: unset; }
  .hero-actions .btn { flex: 1 1 auto; }
  .movement { padding: 90px 0; }
  .services-grid, .sets-grid { grid-template-columns: 1fr; }
  .process-grid, .booking-steps { grid-template-columns: 1fr; }
  .bundles-grid, .reviews-grid, #bundles .bundles-grid { grid-template-columns: 1fr; }
  .corporate-panel { padding: 40px 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-panel, .booking-form-panel, .included-panel, .coverage-panel { padding: 28px 22px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-media { aspect-ratio: 16/9; }
  .post-body { padding: 20px; }
  .acc-panel-inner { padding-left: 6px; }
  .acc-header-left { gap: 14px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .reel-card { flex-basis: 240px; }
  .shortform-card { flex-basis: 150px; }
  .lightbox-close { top: -50px; right: 6px; }
  .set-modal-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .set-modal-media-main { aspect-ratio: 16/10; }
}
