/* ═══════════════════════════════════════════════════════════════
   CineCraft Vantage Studios — Master Stylesheet
   Palette pulled from My_web_img.jpg:
     • Warm Cream   : #F7F4EE / #EDE8DE
     • Terrazzo Sand: #C8B8A2
     • Dusty Sienna : #C47B5A / #B8634A
     • Aged Gold    : #C8992A / #F0C96B
     • Slate Stone  : #8A8580 / #6B6560
     • Deep Warm    : #2E2A25
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Colors */
  --cream-50:       #FDFCF9;
  --cream-100:      #F7F4EE;
  --cream-200:      #EDE8DE;
  --cream-300:      #DDD5C8;
  --sand:           #C8B8A2;
  --sienna-400:     #C47B5A;
  --sienna-500:     #B8634A;
  --gold-300:       #F0C96B;
  --gold-400:       #D4A830;
  --gold-500:       #C8992A;
  --gold-600:       #A67A1C;
  --slate-400:      #8A8580;
  --slate-600:      #6B6560;
  --deep:           #2E2A25;
  --deep-alpha:     rgba(46, 42, 37, 0.08);

  /* Glass */
  --glass-bg:       rgba(247, 244, 238, 0.75);
  --glass-border:   rgba(255, 255, 255, 0.80);
  --glass-shadow:   0 10px 25px rgba(0, 0, 0, 0.06);
  --glass-blur:     blur(12px);

  /* Gold glass CTA */
  --gold-glass-bg:  rgba(208, 168, 48, 0.22);
  --gold-glass-bd:  rgba(240, 201, 107, 0.70);

  /* Typography */
  --font-display:   'Outfit', 'Inter', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Radius */
  --r-pill: 9999px;
  --r-lg:   1.25rem;
  --r-xl:   2rem;

  /* Transition */
  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-snap:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms;
  --t-mid:    320ms;
  --t-slow:   500ms;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin:  0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: var(--deep);
  min-height: 100vh;
  overflow-x: hidden;
  /* cursor: none; — enable when custom cursor added */
}

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── 3. HIGH-PERFORMANCE STATIC BACKGROUND ──────────────────── */
/*
   Zero canvas buffers, zero JS image loading — pure CSS.
   background-attachment: fixed forces GPU compositing once
   and never repaints on scroll, giving zero CPU/GPU overhead
   on idle frames.
*/
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;

  background-image: url('My_web_img.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

  /* Prevent sub-pixel bleed at viewport edges */
  transform: translateZ(0);
  will-change: auto; /* don't promote to own layer unless animating */
}

/* Subtle warm vignette overlay — adds depth without touching the image */
.bg-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(247,244,238,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 0%   100%, rgba(46, 42, 37, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(46, 42, 37, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* ── 3b. BOLD & VIBRANT CURSOR GLOW SPOTLIGHT ────────────────── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  background: radial-gradient(circle,
    rgba(240, 201, 107, 0.45) 0%,
    rgba(230, 180, 80, 0.25) 35%,
    rgba(210, 160, 60, 0.10) 60%,
    transparent 75%
  );
  mix-blend-mode: multiply;
  filter: blur(15px);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

/* ── 4. SHARED GLASS PANEL PRIMITIVE ────────────────────────── */
.glass-panel {
  background:           var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter:      var(--glass-blur);
  border:               1px solid var(--glass-border);
  box-shadow:           var(--glass-shadow);

  /* GPU hint — only when actively transforming */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* ── 5. NAVBAR WRAPPER (fixed floating pill with dampening) ──── */
.navbar-wrapper {
  position: fixed;
  top:       var(--sp-6);
  left:      50%;
  transform: translateX(-50%) translate3d(var(--nav-px, 0px), var(--nav-py, 0px), 0);
  z-index:   50;
  width:     90%;
  max-width: 1100px;
  animation: navDampedFloat 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes navDampedFloat {
  0%, 100% {
    transform: translateX(-50%) translate3d(var(--nav-px, 0px), var(--nav-py, 0px), 0);
  }
  50% {
    transform: translateX(-50%) translate3d(var(--nav-px, 0px), calc(var(--nav-py, 0px) - 6px), 0);
  }
}

.navbar {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--sp-4);

  padding:         0.55rem var(--sp-6);
  border-radius:   var(--r-pill);

  /* 3D tilt surface */
  perspective: 800px;
  transition:
    transform      var(--t-mid)  var(--ease-luxury),
    box-shadow     var(--t-mid)  var(--ease-luxury),
    background     var(--t-fast) var(--ease-luxury);
}

/* Navbar hover — elevation lift */
.navbar:hover {
  box-shadow:
    var(--glass-shadow),
    0 20px 50px rgba(0, 0, 0, 0.10),
    0  0px 0px  1px rgba(255,255,255,0.90) inset;
  background: rgba(247, 244, 238, 0.88);
}

/* ── 5a. BRAND LOGO ──────────────────────────────────────────── */
.nav-brand {
  display:     flex;
  align-items: center;
  gap:         var(--sp-3);
  flex-shrink: 0;
  outline-offset: 4px;
}

.brand-orb {
  width:  44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(200, 153, 42, 0.45));
  transition: filter var(--t-mid) var(--ease-luxury),
              transform var(--t-mid) var(--ease-luxury);
}

.brand-orb-svg {
  width:  100%;
  height: 100%;
  overflow: visible;
}

.nav-brand:hover .brand-orb {
  filter: drop-shadow(0 6px 16px rgba(200, 153, 42, 0.65));
  transform: translateY(-1px) scale(1.06);
}

/* Continuous slow rotation on the orbit ring */
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.brand-orb-svg ellipse {
  transform-origin: 22px 33px;
  animation: orbitSpin 8s linear infinite;
}

.brand-text {
  display:        flex;
  flex-direction: column;
  line-height:    1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size:   1.05rem;
  letter-spacing: -0.02em;
  color: var(--deep);
  background: linear-gradient(135deg, var(--deep) 30%, var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-family:    var(--font-display);
  font-weight:    400;
  font-size:      0.62rem;
  letter-spacing:  0.12em;
  text-transform: uppercase;
  color:           var(--slate-600);
  -webkit-text-fill-color: var(--slate-600);
  background: none;
}

/* ── 5b. NAV LINKS ──────────────────────────────────────────── */
.nav-links {
  display:     flex;
  align-items: center;
  gap:         var(--sp-1);
}

.nav-link {
  font-family:    var(--font-display);
  font-weight:    500;
  font-size:      0.875rem;
  letter-spacing: 0.01em;
  color:          var(--slate-600);
  padding:        var(--sp-2) var(--sp-3);
  border-radius:  var(--r-pill);
  position:       relative;
  transition:
    color      var(--t-fast) var(--ease-luxury),
    background var(--t-fast) var(--ease-luxury);
  white-space: nowrap;
}

/* Hover state */
.nav-link::after {
  content:    '';
  position:   absolute;
  bottom:     6px;
  left:       50%;
  width:      0;
  height:     1.5px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--r-pill);
  transform:  translateX(-50%);
  transition: width var(--t-mid) var(--ease-luxury);
}

.nav-link:hover {
  color:      var(--deep);
  background: rgba(200, 153, 42, 0.06);
}

.nav-link:hover::after {
  width: 60%;
}

/* Active state */
.nav-link.active {
  color: var(--gold-600);
}

.nav-link.active::after {
  width: 60%;
}

/* ── 5c. CTA BUTTON — 3D Gold Glass ─────────────────────────── */
.btn-cta {
  position:    relative;
  display:     inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow:    hidden;
  border-radius: var(--r-pill);

  background:  var(--gold-glass-bg);
  border:      1px solid var(--gold-glass-bd);
  box-shadow:
    0 2px  8px  rgba(200, 153, 42, 0.20),
    0 0px  0px  1px rgba(255,255,255,0.30) inset,
    0 1px  0px  0px rgba(255,255,255,0.60) inset;

  transition:
    transform   var(--t-mid) var(--ease-luxury),
    box-shadow  var(--t-mid) var(--ease-luxury),
    background  var(--t-fast) var(--ease-luxury);

  cursor: pointer;
}

.btn-cta-inner {
  display:     flex;
  align-items: center;
  gap:         var(--sp-2);
  padding:     0.5rem 1.2rem;
  font-family:    var(--font-display);
  font-weight:    600;
  font-size:      0.875rem;
  letter-spacing: 0.02em;
  color:          var(--gold-600);
  position: relative;
  z-index:  1;
}

.btn-cta-icon {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Animated sheen sweep */
.btn-cta-shine {
  position: absolute;
  top:  -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.55) 50%,
    transparent 60%
  );
  transform: skewX(-20deg);
  transition: left var(--t-slow) var(--ease-luxury);
  pointer-events: none;
  z-index: 2;
}

.btn-cta:hover {
  background:  rgba(208, 168, 48, 0.35);
  box-shadow:
    0 6px 20px  rgba(200, 153, 42, 0.38),
    0 2px  6px  rgba(200, 153, 42, 0.20),
    0 0px  0px  1px rgba(255,255,255,0.50) inset,
    0 1px  0px  0px rgba(255,255,255,0.80) inset;
  transform: translateY(-2px) scale(1.02);
}

.btn-cta:hover .btn-cta-shine {
  left: 125%;
}

.btn-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 2px  8px  rgba(200, 153, 42, 0.20),
    0 0px  0px  1px rgba(255,255,255,0.30) inset;
}

/* ── 5d. MOBILE HAMBURGER ───────────────────────────────────── */
.nav-toggle {
  display:        none;
  flex-direction: column;
  gap:            5px;
  padding:        var(--sp-2);
  border:         none;
  background:     transparent;
  cursor:         pointer;
  border-radius:  var(--sp-2);
}

.toggle-bar {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--slate-600);
  border-radius: var(--r-pill);
  transition:    transform var(--t-mid) var(--ease-luxury),
                 opacity   var(--t-mid) var(--ease-luxury);
}

/* ── 6. MAIN CONTENT LAYER ──────────────────────────────────── */
#main-content {
  position: relative;
  z-index:  1;
}

/* ── 7. HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  min-height:      100vh;
  display:         flex;
  align-items:     center;
  justify-content: flex-start;
  padding-top:     clamp(6rem, 14vh, 10rem);
  padding-bottom:  var(--sp-16);
  padding-left:    clamp(var(--sp-6), 7vw, 7rem);
  padding-right:   var(--sp-8);
  position:        relative;
  overflow:        hidden;
}

/* ── 7a. HERO GLASS CARD ─────────────────────────────────────── */
.hero-glass-card {
  position:      relative;
  max-width:     560px;
  width:         100%;
  border-radius: var(--r-xl);
  padding:       var(--sp-12) var(--sp-12);
  overflow:      hidden;
  animation:     heroFloat 7.5s ease-in-out infinite;
  will-change:   transform;
  transform-origin: center center;

  /* Box shadow transitions */
  transition:
    box-shadow var(--t-mid) var(--ease-luxury);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  }
  50% {
    transform: translate3d(var(--px, 0px), calc(var(--py, 0px) - 18px), 0) perspective(1000px) rotateX(calc(var(--rx, 0deg) + 0.8deg)) rotateY(calc(var(--ry, 0deg) + 0.8deg));
  }
}

.hero-glass-card:hover {
  box-shadow:
    var(--glass-shadow),
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 0   0 1px rgba(255,255,255,0.90) inset;
}

.hero-card-inner {
  position:  relative;
  z-index:   1;
  transform: translateZ(28px); /* depth pop for 3D tilt */
}

/* Decorative inner glass rim ring */
.card-rim {
  position:      absolute;
  inset:         -1px;
  border-radius: inherit;
  border:        1px solid rgba(255,255,255,0.65);
  pointer-events: none;
  z-index:       3;
}

/* ── 7b. HERO TEXT — base rules (extended in §14) ────────────── */
/* hero-eyebrow, hero-title, hero-title-gradient
   all defined under §14 at bottom to avoid cascade conflicts. */

/* ── 7c. HERO BUTTONS — defined under §14d at bottom ─────────── */
/* btn-hero-book, btn-hero-view defined in Phase 2 block (§14d) */

/* ── 8. FLOATING DECORATIVE ORBS (parallax targets) ─────────── */
.float-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
  filter: blur(0);
}

.float-orb--gold {
  width:  140px;
  height: 140px;
  right:  12%;
  top:    20%;
  background: radial-gradient(circle at 35% 30%,
    #FFF8E7 0%, #F0C96B 35%, #C8992A 70%, #7A5A0A 100%);
  box-shadow:
    0 20px 60px rgba(200, 153, 42, 0.35),
    0  8px 24px rgba(200, 153, 42, 0.20);
  opacity: 0.85;
}

.float-orb--gold::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 40%;
  height: 28%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.72) 0%, transparent 80%);
  border-radius: 50%;
}

.float-orb--stone {
  width:  90px;
  height: 90px;
  right:  28%;
  top:    58%;
  background: radial-gradient(circle at 38% 32%,
    #E8E2D8 0%, #C8B8A2 45%, #8A8580 100%);
  box-shadow: 0 12px 35px rgba(138, 133, 128, 0.28);
  opacity: 0.7;
}

.float-orb--terracotta {
  width:  65px;
  height: 65px;
  right:  7%;
  top:    62%;
  background: radial-gradient(circle at 35% 28%,
    #E8C4AE 0%, #C47B5A 50%, #8B4A35 100%);
  box-shadow: 0 10px 28px rgba(196, 123, 90, 0.35);
  opacity: 0.75;
}

/* Specular highlight on all orbs */
.float-orb::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 35%;
  height: 25%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.65) 0%, transparent 80%);
  border-radius: 50%;
}

/* ── Organic Idle CSS Bobbing (Multi-rhythm 15px–25px Y-axis motion) ── */
@keyframes floatSlow {
  0%, 100% {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--px, 0px), calc(var(--py, 0px) - 25px), 0) rotate(2deg);
  }
}

@keyframes floatMedium {
  0%, 100% {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--px, 0px), calc(var(--py, 0px) - 20px), 0) rotate(-1.5deg);
  }
}

@keyframes floatFast {
  0%, 100% {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--px, 0px), calc(var(--py, 0px) - 15px), 0) rotate(2.5deg);
  }
}

.float-orb--gold       { animation: floatSlow 8s ease-in-out infinite; }
.float-orb--stone      { animation: floatMedium 6s ease-in-out infinite 0.6s; }
.float-orb--terracotta { animation: floatFast 4.5s ease-in-out infinite 1.2s; }

/* ── 9. SECTION ANCHORS ──────────────────────────────────────── */
.section-anchor {
  height: 1px;
  scroll-margin-top: 100px;
}

/* ── 10. PARALLAX LAYER BASE ─────────────────────────────────── */
.parallax-layer {
  /* Transform applied by JS — no CSS transition here to avoid
     fighting with LERP animation frames */
  will-change: transform;
}

/* ── 11. RESPONSIVE BREAKPOINTS ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links   { display: none; flex-direction: column; gap: var(--sp-2); }
  .nav-toggle  { display: flex; }

  /* Open state */
  .nav-links.open {
    display:    flex;
    position:   absolute;
    top:        calc(100% + var(--sp-3));
    left:       0; right: 0;
    background: rgba(247, 244, 238, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-6);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
  }

  /* Toggle animation */
  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.5rem var(--sp-4);
  }

  .brand-tagline { display: none; }

  .hero-glass-card {
    padding: var(--sp-8) var(--sp-6);
    max-width: 100%;
  }

  .hero-section {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
    align-items: flex-end;
    padding-bottom: var(--sp-16);
  }

  .float-orb { display: none; }
}

/* ── 12. FOCUS ACCESSIBLE STYLES ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--r-pill);
}

/* ── 13. REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   14. HERO SECTION — REFINEMENTS (Phase 2)
   ═══════════════════════════════════════════════════════════════ */

/* ── 14a. Eyebrow badge with live dot ───────────────────────── */
.hero-eyebrow {
  font-family:    var(--font-display);
  font-weight:    500;
  font-size:      0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold-500);
  margin-bottom:  var(--sp-4);
  display:        flex;
  align-items:    center;
  gap:            var(--sp-3);
}

.eyebrow-dot {
  display:       block;
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    var(--gold-400);
  box-shadow:    0 0 0 0 rgba(200,153,42,0.6);
  animation:     pulseDot 2.4s ease-out infinite;
  flex-shrink:   0;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0   rgba(200,153,42,0.55); }
  60%  { box-shadow: 0 0 0 8px rgba(200,153,42,0);    }
  100% { box-shadow: 0 0 0 0   rgba(200,153,42,0);    }
}

/* ── 14b. Hero title — no italics, charcoal + gradient span ─── */
.hero-title {
  font-family:    var(--font-display);
  font-weight:    800;
  font-size:      clamp(2.6rem, 5.5vw, 4rem);
  line-height:    1.04;
  letter-spacing: -0.035em;
  color:          #1A1817;
  margin-bottom:  var(--sp-4);
  text-shadow:    0 2px 12px rgba(26,24,23,0.08),
                  0 1px 2px  rgba(26,24,23,0.04);
}

.hero-title-gradient {
  display:    block;
  background: linear-gradient(118deg,
    #A67A1C 0%,
    #C8992A 30%,
    #F0C96B 60%,
    #C47B5A 88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
  background-size:         200% auto;
  animation: gradShift 6s ease-in-out infinite alternate;
}

@keyframes gradShift {
  0%   { background-position: 0%   50%; }
  100% { background-position: 100% 50%; }
}

/* ── 14c. Hero subtitle ─────────────────────────────────────── */
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size:   1rem;
  line-height: 1.70;
  color:       var(--slate-600);
  max-width:   40ch;
  margin-bottom: var(--sp-8);
}

/* ── 14d. Hero CTA buttons ──────────────────────────────────── */
.hero-actions {
  display:     flex;
  align-items: center;
  gap:         var(--sp-4);
  flex-wrap:   wrap;
  margin-bottom: var(--sp-8);
}

/* Primary — 3D gold glass pill (Book Campaign) */
.btn-hero-book {
  position:      relative;
  display:       inline-flex;
  align-items:   center;
  overflow:      hidden;
  border-radius: var(--r-pill);
  background:    rgba(208, 168, 48, 0.25);
  border:        1px solid rgba(240, 201, 107, 0.75);
  box-shadow:
    0 4px 18px  rgba(200, 153, 42, 0.35),
    0 1px  0px  0px rgba(255,255,255,0.75) inset,
    0 0px  0px  1px rgba(255,255,255,0.25) inset;
  transition:
    transform   var(--t-mid) var(--ease-luxury),
    box-shadow  var(--t-mid) var(--ease-luxury),
    background  var(--t-fast) var(--ease-luxury);
  cursor: pointer;
}

.btn-hero-book-inner {
  position:    relative;
  z-index:     1;
  display:     flex;
  align-items: center;
  gap:         var(--sp-2);
  padding:     0.75rem 1.75rem;
  font-family:    var(--font-display);
  font-weight:    700;
  font-size:      0.9rem;
  letter-spacing: 0.03em;
  color:          var(--gold-600);
}

/* Specular top rim — simulated 3D depth */
.btn-hero-book::before {
  content:   '';
  position:  absolute;
  top:       0; left: 15%;
  width:     70%; height: 1px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--r-pill);
}

/* Animated sweep sheen */
.btn-hero-book-shine {
  position: absolute;
  top: -60%; left: -80%;
  width: 55%; height: 220%;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255,255,255,0.60) 50%,
    transparent 65%
  );
  transform:  skewX(-18deg);
  transition: left var(--t-slow) var(--ease-luxury);
  pointer-events: none;
  z-index: 2;
}

.btn-hero-book:hover {
  background:  rgba(208, 168, 48, 0.42);
  box-shadow:
    0 8px 28px  rgba(200, 153, 42, 0.50),
    0 3px  8px  rgba(200, 153, 42, 0.25),
    0 1px  0px  0px rgba(255,255,255,0.90) inset,
    0 0px  0px  1px rgba(255,255,255,0.40) inset;
  transform: translateY(-3px) scale(1.02);
}

.btn-hero-book:hover .btn-hero-book-shine {
  left: 130%;
}

.btn-hero-book:active {
  transform: translateY(0) scale(0.98);
}

/* Secondary — Frosted cream glass pill (View Our Work) */
.btn-hero-view {
  display:       inline-flex;
  align-items:   center;
  gap:           var(--sp-2);
  padding:       0.73rem 1.6rem;
  border-radius: var(--r-pill);
  border:        1px solid rgba(247,244,238,0.70);
  background:    rgba(247, 244, 238, 0.48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter:         blur(8px);
  color:         var(--slate-600);
  font-family:    var(--font-display);
  font-weight:    500;
  font-size:      0.9rem;
  box-shadow:
    0 4px 14px  rgba(0,0,0,0.06),
    0 1px  0px  0px rgba(255,255,255,0.80) inset;
  transition:
    transform   var(--t-mid)  var(--ease-luxury),
    box-shadow  var(--t-mid)  var(--ease-luxury),
    background  var(--t-fast) var(--ease-luxury),
    border-color var(--t-fast) var(--ease-luxury),
    color        var(--t-fast) var(--ease-luxury);
}

.btn-view-arrow {
  transition: transform var(--t-mid) var(--ease-luxury);
  flex-shrink: 0;
}

.btn-hero-view:hover {
  background:   rgba(247, 244, 238, 0.80);
  border-color: rgba(200, 153, 42, 0.50);
  color:        var(--deep);
  transform:    translateY(-2px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.10),
    0  1px  0px rgba(255,255,255,0.90) inset;
}

.btn-hero-view:hover .btn-view-arrow {
  transform: translateX(5px);
}

/* ── 14e. Hero stats strip ──────────────────────────────────── */
.hero-stats {
  display:     flex;
  align-items: center;
  gap:         var(--sp-6);
  padding-top: var(--sp-6);
  border-top:  1px solid rgba(46,42,37,0.10);
}

.hero-stat {
  display:        flex;
  flex-direction: column;
  gap:            2px;
}

.hero-stat-num {
  font-family:    var(--font-display);
  font-weight:    700;
  font-size:      1.4rem;
  letter-spacing: -0.03em;
  color:          #1A1817;
  line-height:    1;
}

.hero-stat-label {
  font-family:    var(--font-body);
  font-weight:    400;
  font-size:      0.70rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--slate-400);
}

.hero-stat-divider {
  width:     1px;
  height:    32px;
  background: rgba(46,42,37,0.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   15. SERVICE SECTION — Shared Layout
   ═══════════════════════════════════════════════════════════════ */
.service-section {
  position:  relative;
  z-index:   1;
  padding:   var(--sp-24) 0 var(--sp-16);
  overflow:  hidden;
  scroll-margin-top: 5.5rem;
}

/* Subtle section backdrop — warm wash behind carousel */
.service-section::before {
  content:  '';
  position: absolute;
  inset:    0;
  background: linear-gradient(
    180deg,
    rgba(247,244,238,0.00) 0%,
    rgba(247,244,238,0.70) 18%,
    rgba(247,244,238,0.82) 70%,
    rgba(247,244,238,0.00) 100%
  );
  pointer-events: none;
}

/* ── 15a. Section header ────────────────────────────────────── */
.service-header {
  position:  relative;
  z-index:   2;
  max-width: 900px;
  margin:    0 auto var(--sp-12);
  padding:   0 clamp(var(--sp-6), 6vw, 6rem);
  text-align: center;
}

.service-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            var(--sp-2);
  padding:        0.35rem 1rem;
  border-radius:  var(--r-pill);
  background:     rgba(200, 153, 42, 0.12);
  border:         1px solid rgba(200, 153, 42, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter:         blur(8px);
  font-family:    var(--font-display);
  font-weight:    600;
  font-size:      0.70rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--gold-600);
  margin-bottom:  var(--sp-6);
}

.badge-num {
  font-weight: 800;
  color:       var(--gold-500);
}

.badge-sep {
  color: rgba(200,153,42,0.45);
  font-weight: 300;
}

.service-headline {
  font-family:    var(--font-display);
  font-weight:    800;
  font-size:      clamp(1.9rem, 4vw, 3rem);
  line-height:    1.10;
  letter-spacing: -0.03em;
  color:          #1A1817;
  text-shadow:    0 2px 10px rgba(26,24,23,0.06);
  margin-bottom:  var(--sp-4);
}

.service-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size:   1rem;
  line-height: 1.70;
  color:       var(--slate-600);
  max-width:   52ch;
  margin:      0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   16. CAROUSEL — 16:9 Horizontal Video Carousel
   ═══════════════════════════════════════════════════════════════ */

/* Stage — perspective container + arrow anchors */
.carousel-stage {
  position:   relative;
  z-index:    2;
  display:    flex;
  align-items: center;
  justify-content: center;
  /* Extra side padding to show flanking card edges */
  padding:    0 clamp(4rem, 8vw, 7rem);
  perspective: 1400px;
  perspective-origin: 50% 50%;
  /* Height constraint prevents layout shift while cards transform */
  min-height: clamp(280px, 36vw, 520px);
}

/* Track — contains all cards side by side, no overflow clip at track level */
.carousel-track {
  position: relative;
  width:    100%;
  height:   clamp(260px, 34vw, 500px);
  display:  flex;
  align-items: center;
  justify-content: center;
}

/* ── 16a. Individual carousel cards ────────────────────────── */
.carousel-card {
  position:  absolute;
  /* 16:9 active card dimensions */
  width:     clamp(500px, 52vw, 800px);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow:  hidden;
  cursor:    pointer;

  /* Transition drives the slide animation — driven by JS class changes */
  transition:
    transform   550ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity     400ms cubic-bezier(0.23, 1, 0.32, 1),
    filter      400ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow  400ms cubic-bezier(0.23, 1, 0.32, 1),
    z-index     0ms  step-end;

  /* Default — hidden off-stage */
  opacity:   0;
  pointer-events: none;
  transform: scale(0.78) translateX(0) translateZ(-200px);
  z-index:   10;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* Active center card */
.carousel-card[data-pos="active"] {
  opacity:        1;
  pointer-events: auto;
  transform:      scale(1) translateX(0) translateZ(0);
  z-index:        30;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.22),
    0  4px 16px rgba(0,0,0,0.10),
    0  0px  0px 1px rgba(255,255,255,0.40) inset;
}

/* Immediate left flanking card */
.carousel-card[data-pos="prev"] {
  opacity:        0.72;
  pointer-events: auto;
  transform:
    translateX(clamp(-380px, -40vw, -240px))
    scale(0.78)
    perspective(1000px)
    rotateY(20deg)
    translateZ(-80px);
  z-index:        20;
  filter:         brightness(0.82);
  box-shadow:     0 10px 30px rgba(0,0,0,0.14);
}

/* Immediate right flanking card */
.carousel-card[data-pos="next"] {
  opacity:        0.72;
  pointer-events: auto;
  transform:
    translateX(clamp(240px, 40vw, 380px))
    scale(0.78)
    perspective(1000px)
    rotateY(-20deg)
    translateZ(-80px);
  z-index:        20;
  filter:         brightness(0.82);
  box-shadow:     0 10px 30px rgba(0,0,0,0.14);
}

/* Far left — barely visible peeking edge */
.carousel-card[data-pos="far-prev"] {
  opacity:        0.30;
  pointer-events: none;
  transform:
    translateX(clamp(-620px, -65vw, -400px))
    scale(0.62)
    perspective(1000px)
    rotateY(28deg)
    translateZ(-160px);
  z-index:        10;
  filter:         brightness(0.65);
}

/* Far right — barely visible peeking edge */
.carousel-card[data-pos="far-next"] {
  opacity:        0.30;
  pointer-events: none;
  transform:
    translateX(clamp(400px, 65vw, 620px))
    scale(0.62)
    perspective(1000px)
    rotateY(-28deg)
    translateZ(-160px);
  z-index:        10;
  filter:         brightness(0.65);
}

/* Flanking cards cursor affordance */
.carousel-card[data-pos="prev"],
.carousel-card[data-pos="next"] {
  cursor: pointer;
}

/* Hover lift on flanking cards */
.carousel-card[data-pos="prev"]:hover {
  opacity: 0.88;
  filter:  brightness(0.92);
}
.carousel-card[data-pos="next"]:hover {
  opacity: 0.88;
  filter:  brightness(0.92);
}

/* ── 16b. Card inner + video ────────────────────────────────── */
.carousel-card-inner {
  position: relative;
  width:    100%;
  height:   100%;
}

.carousel-video {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  display:     block;
  border-radius: inherit;
  /* No GPU promotion until playing — JS sets will-change on play */
}

/* ── 16c. Card overlay (gradient + meta text) ───────────────── */
.carousel-card-overlay {
  position:    absolute;
  inset:       0;
  border-radius: inherit;
  background:  linear-gradient(
    to top,
    rgba(20,16,12,0.75)  0%,
    rgba(20,16,12,0.22) 38%,
    transparent          65%
  );
  display:     flex;
  align-items: flex-end;
  padding:     clamp(var(--sp-4), 3%, 1.5rem);
  opacity:     0;
  transition:  opacity var(--t-mid) var(--ease-luxury);
}

.carousel-card[data-pos="active"] .carousel-card-overlay {
  opacity: 1;
}

.carousel-card-meta {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-1);
}

.card-tag {
  font-family:    var(--font-display);
  font-weight:    500;
  font-size:      0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--gold-300);
}

.card-title {
  font-family:    var(--font-display);
  font-weight:    700;
  font-size:      clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: -0.02em;
  color:          #FDFCF9;
  line-height:    1.1;
}

/* ── 16d. Card glass rim ────────────────────────────────────── */
.carousel-card-rim {
  position:  absolute;
  inset:     0;
  border-radius: inherit;
  border:    1px solid rgba(255,255,255,0.22);
  pointer-events: none;
  z-index:   3;
  transition: border-color var(--t-mid) var(--ease-luxury);
}

.carousel-card[data-pos="active"] .carousel-card-rim {
  border-color: rgba(255,255,255,0.45);
}

/* ── 16e. Navigation arrows ─────────────────────────────────── */
.carousel-arrow {
  position:    absolute;
  top:         50%;
  transform:   translateY(-50%);
  z-index:     40;

  width:       48px;
  height:      48px;
  border-radius: 50%;
  border:      1px solid rgba(255,255,255,0.72);
  background:  rgba(247, 244, 238, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter:         blur(12px);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.10),
    0 1px  0   rgba(255,255,255,0.80) inset;

  display:     flex;
  align-items: center;
  justify-content: center;
  cursor:      pointer;
  color:       var(--slate-600);

  transition:
    transform   var(--t-mid) var(--ease-luxury),
    box-shadow  var(--t-mid) var(--ease-luxury),
    background  var(--t-fast) var(--ease-luxury),
    color       var(--t-fast) var(--ease-luxury);
}

.carousel-arrow--prev { left:  clamp(0.5rem, 1.5vw, 1.5rem); }
.carousel-arrow--next { right: clamp(0.5rem, 1.5vw, 1.5rem); }

.carousel-arrow:hover {
  background: rgba(247, 244, 238, 0.95);
  color:      var(--deep);
  transform:  translateY(-50%) scale(1.10);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.16),
    0 1px  0   rgba(255,255,255,0.90) inset;
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor:  not-allowed;
}

/* ── 16f. Dot indicators ────────────────────────────────────── */
.carousel-dots {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             var(--sp-2);
  margin-top:      var(--sp-8);
  position:        relative;
  z-index:         2;
}

.carousel-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  border:        none;
  background:    rgba(200,153,42,0.30);
  cursor:        pointer;
  padding:       0;
  transition:
    background    var(--t-mid) var(--ease-luxury),
    transform     var(--t-mid) var(--ease-luxury),
    width         var(--t-mid) var(--ease-luxury),
    border-radius var(--t-mid) var(--ease-luxury);
}

.carousel-dot.active {
  background:    var(--gold-500);
  width:         24px;
  border-radius: var(--r-pill);
  transform:     none;
}

.carousel-dot:hover:not(.active) {
  background: rgba(200,153,42,0.55);
  transform:  scale(1.25);
}

/* ── 16g. Active video play icon pulse ──────────────────────── */
@keyframes videoPlayPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%       { opacity: 1.0; transform: scale(1.04); }
}

/* ── 16h. Carousel responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .carousel-stage {
    padding: 0 2rem;
    min-height: clamp(220px, 50vw, 400px);
  }

  .carousel-track {
    height: clamp(200px, 48vw, 380px);
  }

  .carousel-card {
    width: clamp(300px, 80vw, 600px);
  }

  .carousel-card[data-pos="prev"] {
    transform:
      translateX(clamp(-280px, -48vw, -160px))
      scale(0.72)
      perspective(800px)
      rotateY(18deg)
      translateZ(-60px);
  }

  .carousel-card[data-pos="next"] {
    transform:
      translateX(clamp(160px, 48vw, 280px))
      scale(0.72)
      perspective(800px)
      rotateY(-18deg)
      translateZ(-60px);
  }

  .carousel-card[data-pos="far-prev"],
  .carousel-card[data-pos="far-next"] {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .carousel-stage {
    padding: 0 1rem;
  }

  .carousel-card {
    width: min(92vw, 420px);
  }

  .carousel-card[data-pos="prev"],
  .carousel-card[data-pos="next"] {
    opacity: 0.38;
    filter:  brightness(0.70);
  }

  .service-header {
    padding: 0 var(--sp-6);
  }

  .hero-stats {
    gap: var(--sp-4);
  }

  .hero-stat-num { font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════════════════════════
   17. SERVICE 02 — ARCHITECTURAL REAL ESTATE
   ═══════════════════════════════════════════════════════════════ */

/* ── 17a. Scene Selector Tabs (3D Frosted Glass Pill Dock) ─── */
.scene-tab-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 var(--sp-4);
}

.scene-dock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.45rem;
  border-radius: var(--r-pill);
  background: rgba(247, 244, 238, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 30px rgba(46, 42, 37, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Scene Tab Pill Button */
.scene-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.015em;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(247, 244, 238, 0.50);
  color: var(--deep);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 2px 8px rgba(46, 42, 37, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    background 220ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1),
    color 220ms cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  outline-offset: 3px;
}

/* Inactive State: Smooth hover elevation */
.scene-pill:hover:not(.active) {
  transform: translateY(-2px);
  background: rgba(247, 244, 238, 0.75);
  border-color: rgba(255, 255, 255, 0.90);
  box-shadow:
    0 8px 20px rgba(46, 42, 37, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  color: #1A1817;
}

/* Active State: Soft gold glass fill + inner rim highlight + warm glow */
.scene-pill.active {
  background: rgba(240, 201, 107, 0.35);
  border: 1px solid rgba(240, 201, 107, 0.75);
  color: #1A1817;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 20px rgba(200, 153, 42, 0.28),
    0 0 16px rgba(240, 201, 107, 0.30);
  cursor: default;
}

/* Micro indicator dot inside pills */
.scene-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(46, 42, 37, 0.35);
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
  flex-shrink: 0;
}

.scene-pill:hover:not(.active) .scene-pill-dot {
  background: var(--gold-500);
}

.scene-pill.active .scene-pill-dot {
  background: var(--gold-600);
  box-shadow: 0 0 8px rgba(200, 153, 42, 0.9);
  transform: scale(1.25);
}

/* ── 17b. Main 16:9 Viewport & Single Video Asset ───────────── */
.viewport-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--sp-6);
}

.real-estate-viewport {
  position: relative;
  width: clamp(600px, 65vw, 960px);
  max-width: 92vw;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.70);
  background: rgba(247, 244, 238, 0.40);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    opacity 200ms ease,
    box-shadow var(--t-mid) var(--ease-luxury),
    transform var(--t-mid) var(--ease-luxury);
}

/* 3D Glass Bevel Rim */
.viewport-glass-rim {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(0, 0, 0, 0.08) inset;
  z-index: 3;
}

/* Video configuration: 100% width & height, object-fit cover, border-radius 24px */
.real-estate-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  opacity: 1;
  /* 200ms smooth crossfade for cinematic scene cuts */
  transition: opacity 200ms ease;
  background: #1A1817;
}

/* Soft opacity dip on scene switch (dynamic cinematic cut) */
.real-estate-viewport.is-switching .real-estate-video,
.real-estate-video.is-switching {
  opacity: 0.8;
}

/* ── 17c. Luxury Viewport Meta Pill ─────────────────────────── */
.viewport-meta-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(26, 24, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.30) inset;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--t-fast) ease;
}

.meta-badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1.0; transform: scale(1.35); }
}

.meta-badge-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F7F4EE;
}

/* ── 17d. Responsive Adjustments ───────────────────────────── */
@media (max-width: 680px) {
  .scene-dock {
    width: 100%;
    justify-content: flex-start;
    padding: 0.3rem 0.35rem;
  }

  .scene-pill {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }

  .viewport-stage {
    padding: 0 var(--sp-4);
  }

  .real-estate-viewport {
    border-radius: 20px;
    padding: 6px;
  }

  .real-estate-video {
    border-radius: 16px;
  }

  .viewport-glass-rim {
    border-radius: 20px;
  }

  .viewport-meta-badge {
    bottom: 14px;
    left: 14px;
    padding: 0.3rem 0.75rem;
  }

  .meta-badge-text {
    font-size: 0.65rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   18. SERVICE 03 — AI UGC CAMPAIGN ENGINE
   ═══════════════════════════════════════════════════════════════ */

.ugc-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 7.5rem;
}

.ugc-section .service-badge {
  background: rgba(200, 153, 42, 0.16);
  border: 1px solid rgba(240, 201, 107, 0.55);
  box-shadow:
    0 2px 10px rgba(200, 153, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* ── 18a. Centered Avatar Selector Dock (3D Frosted Pill) ───── */
.ugc-dock-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--sp-4);
  margin-bottom: 2.5rem;
}

.ugc-dock {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 auto;
  width: fit-content;
  padding: 6px;
  border-radius: 999px;
  background: rgba(238, 232, 220, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 30px rgba(46, 42, 37, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* 3D Sliding Indicator Glider */
.ugc-dock-glider {
  position: absolute;
  top: 6px;
  left: 0;
  border-radius: 999px;
  background: rgba(180, 140, 60, 0.85);
  border: 1px solid rgba(240, 201, 107, 0.9);
  box-shadow:
    0 4px 18px rgba(180, 140, 60, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.23, 1, 0.32, 1),
    width 320ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 200ms ease;
}

/* Specular light highlight on the glider */
.ugc-dock-glider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

/* Avatar Pill Switcher Button */
.ugc-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #7A5A0A;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  outline-offset: 3px;
  transition:
    color 220ms ease,
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Inactive Tab: Translucent warm brown text + subtle scale on hover */
.ugc-pill:not(.active):hover {
  color: #5C4307;
  transform: translateY(-1px) scale(1.04);
}

/* Active Tab: Crisp white text */
.ugc-pill.active {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  cursor: default;
}

/* ── 18b. UGC Stage & Ambient Decorative Backdrop ───────────── */
.ugc-stage {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ugc-ambient-backdrop {
  position: absolute;
  inset: -60px 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Subtle glowing ambient orbs */
.ugc-ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ugc-orb-gold {
  top: 10%;
  left: 15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(240, 201, 107, 0.28) 0%, rgba(200, 153, 42, 0.12) 50%, transparent 70%);
  filter: blur(40px);
  animation: ugcFloatOrb1 12s ease-in-out infinite alternate;
}

.ugc-orb-terra {
  bottom: 8%;
  right: 12%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(196, 123, 90, 0.24) 0%, rgba(184, 99, 74, 0.10) 50%, transparent 70%);
  filter: blur(45px);
  animation: ugcFloatOrb2 14s ease-in-out infinite alternate;
}

.ugc-orb-sand {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 184, 162, 0.20) 0%, transparent 70%);
  filter: blur(50px);
}

/* Planetary / orbital rings behind cards */
.ugc-ambient-rings {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(600px, 85vw, 1050px);
  height: auto;
  pointer-events: none;
  opacity: 0.65;
  filter: drop-shadow(0 4px 14px rgba(200, 153, 42, 0.12));
}

@keyframes ugcFloatOrb1 {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-24px) scale(1.08); }
}

@keyframes ugcFloatOrb2 {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(28px) scale(1.06); }
}

/* ── 18c. 4-Card Vertical 9:16 Glass Grid ───────────────────── */
.ugc-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  box-sizing: border-box;
}

/* Rounded 9:16 Glass Viewports */
.ugc-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: rgba(247, 243, 235, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform 320ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 320ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 320ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ugc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 48px rgba(46, 42, 37, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.ugc-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 6px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Card Video: 100% cover with 200ms soft crossfade */
.ugc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: #1A1817;
  opacity: 1;
  transition: opacity 200ms ease;
}

.ugc-video.is-switching {
  opacity: 0;
}

/* 3D Glass Bevel Rim */
.ugc-card-glass-rim {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(0, 0, 0, 0.08) inset;
  z-index: 3;
}

/* ── 18d. Minimalist Floating Video Metadata (100% Visible Video) ─ */
.ugc-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  user-select: none;
}

.ugc-card-tag {
  font-family: var(--font-display);
  background: rgba(200, 153, 42, 0.35);
  color: #FFF8E7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
}

.ugc-tag-svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.ugc-card-title {
  font-family: var(--font-display);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0.35rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.ugc-card-indicator {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.78rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.ugc-indicator-pulse {
  width: 10px;
  height: 10px;
  background: #C8992A;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(200, 153, 42, 0.8);
  animation: badgePulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

.ugc-indicator-text {
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ── 18e. Responsive Media Queries ──────────────────────────── */
@media (max-width: 1024px) {
  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 660px;
    gap: 1.25rem;
  }
}

@media (max-width: 560px) {
  .ugc-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 1.5rem;
  }

  .ugc-dock {
    padding: 4px;
    gap: 0.2rem;
  }

  .ugc-pill {
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
  }

  .ugc-ambient-rings {
    width: 95vw;
  }
}

/* ═══════════════════════════════════════════════════════════════
   19. PRICING SECTION — Warm Cream Glass Aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ── 19a. Pricing Section Outer Layout ──────────────────────── */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
  scroll-margin-top: 7rem;
}

/* Warm wash backdrop */
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247,244,238,0.00) 0%,
    rgba(247,244,238,0.72) 15%,
    rgba(247,244,238,0.85) 70%,
    rgba(247,244,238,0.00) 100%
  );
  pointer-events: none;
}

/* ── 19b. Pricing Header ─────────────────────────────────────── */
.pricing-header {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(var(--sp-6), 6vw, 6rem);
  text-align: center;
}

/* Category Badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(200, 153, 42, 0.14);
  border: 1px solid rgba(200, 153, 42, 0.40);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 2px 10px rgba(200, 153, 42, 0.10),
    0 1px 0 rgba(255,255,255,0.85) inset;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-6);
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1A1817;
  text-shadow: 0 2px 10px rgba(26,24,23,0.05);
  margin-bottom: var(--sp-4);
}

/* Accentuate "how you shoot" in warm gold serif italics */
.pricing-accent-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #C8992A;
  background: linear-gradient(118deg, #B5811F 0%, #C8992A 35%, #F0C96B 70%, #B5811F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.12em;
}

.pricing-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.70;
  color: var(--slate-600);
  max-width: 58ch;
  margin: 0 auto;
}

/* ── 19c. 3D Frosted Pill Switcher Dock ───────────────────────── */
.pricing-category-dock {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2rem auto 3rem;
  width: fit-content;
  max-width: 95vw;
  padding: 6px;
  border-radius: 999px;
  background: rgba(238, 232, 220, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 30px rgba(46, 42, 37, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

/* Sliding warm gold pill active glider */
.pricing-category-glider {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: rgba(180, 140, 60, 0.85);
  background: linear-gradient(135deg, rgba(195, 148, 55, 0.95) 0%, rgba(175, 128, 42, 0.92) 100%);
  border: 1px solid rgba(255, 240, 180, 0.65);
  box-shadow:
    0 4px 18px rgba(180, 140, 60, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  pointer-events: none;
  z-index: 1;
  transition:
    transform 340ms cubic-bezier(0.23, 1, 0.32, 1),
    width 340ms cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-category-glider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.pricing-category-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.90rem;
  letter-spacing: 0.015em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #5C4A28;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  transition:
    color 220ms ease,
    transform 180ms ease;
  outline-offset: 3px;
}

.pricing-category-pill.active {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(80, 48, 0, 0.35);
  cursor: default;
}

.pricing-category-pill:not(.active):hover {
  color: #1A1817;
  transform: translateY(-1px);
}

/* ── 19d. 4-Card Cream Glass Grid ────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 clamp(var(--sp-4), 4vw, 3rem);
  position: relative;
  z-index: 2;
  perspective: 1200px;
  align-items: stretch;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pricing-grid.is-transitioning {
  opacity: 0.35;
  transform: translateY(6px);
}

/* ── 19e. Soft Rounded Square Cards ──────────────────────────── */
.pricing-card {
  position: relative;
  border-radius: 28px;
  background: rgba(247, 243, 235, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.03);
  padding: 2rem 1.5rem;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.pricing-card:hover {
  box-shadow:
    0 22px 50px rgba(46, 42, 37, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

/* Specular light glare overlay */
.pricing-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    320px circle at var(--glare-x, 50%) var(--glare-y, 0%),
    rgba(255, 248, 225, 0.65) 0%,
    rgba(220, 175, 65, 0.22) 35%,
    transparent 75%
  );
  transition: opacity 0.25s ease;
}

.pricing-card:hover .pricing-card-glare {
  opacity: 1;
}

/* Card inner rim */
.pricing-card-rim {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.90) inset,
    0 -1px 0 rgba(0, 0, 0, 0.03) inset;
}

.pricing-card-rim--gold {
  border-color: rgba(240, 201, 107, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 245, 215, 0.90) inset,
    0 0 14px rgba(200, 153, 42, 0.15);
}

/* Card 3: Most Popular / Featured Card Accent */
.pricing-card--featured {
  border: 1.5px solid rgba(200, 153, 42, 0.60);
  box-shadow:
    0 18px 45px rgba(200, 153, 42, 0.16),
    0 6px 18px rgba(0, 0, 0, 0.04);
  background: rgba(254, 250, 242, 0.82);
}

.pricing-card--featured:hover {
  box-shadow:
    0 26px 60px rgba(200, 153, 42, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Floating badge on top border */
.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200, 153, 42, 0.95) 0%, rgba(180, 130, 40, 0.95) 100%);
  border: 1px solid rgba(255, 245, 200, 0.85);
  box-shadow:
    0 4px 16px rgba(180, 140, 60, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(80, 50, 0, 0.25);
}

.pricing-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  animation: badgePulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

/* Card inner content layout */
.pricing-card-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
}

.pricing-tier-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1817;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0.2rem;
}

.pricing-currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #5C4A28;
}

.pricing-currency--gold {
  color: var(--gold-500);
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 2.8vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1A1817;
}

.pricing-amount--gold {
  background: linear-gradient(118deg, #A67A1C 0%, #C8992A 40%, #F0C96B 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-unit-rate {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(46, 42, 37, 0.08);
}

/* Features list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4A443D;
}

.pricing-feature--gold {
  color: #382F24;
  font-weight: 500;
}

.pricing-feature .feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 42, 37, 0.06);
  border: 1px solid rgba(46, 42, 37, 0.12);
  color: var(--slate-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature--gold .feature-check--gold {
  background: rgba(200, 153, 42, 0.15);
  border-color: rgba(200, 153, 42, 0.35);
  color: var(--gold-600);
}

/* Action button wrap */
.pricing-action-wrap {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Frosted "Select Package" button */
.pricing-select-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(238, 232, 220, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #5C4A28;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.pricing-select-btn:hover {
  transform: translateY(-2px);
  background: rgba(238, 232, 220, 0.95);
  color: #1A1817;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.pricing-select-btn--gold {
  background: rgba(200, 153, 42, 0.22);
  border-color: rgba(240, 201, 107, 0.75);
  color: #926915;
  box-shadow:
    0 4px 18px rgba(200, 153, 42, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.pricing-select-btn--gold:hover {
  background: rgba(200, 153, 42, 0.35);
  color: #6D4C0A;
  box-shadow:
    0 8px 28px rgba(200, 153, 42, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.pricing-select-btn:active {
  transform: translateY(0) scale(0.98);
}

.pricing-btn-text {
  position: relative;
  z-index: 1;
}

.pricing-btn-shine {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 65%
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.pricing-select-btn:hover .pricing-btn-shine {
  left: 130%;
}

/* ── 19f. Pricing Responsive ─────────────────────────────────── */
@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 1.5rem;
    padding: 0 var(--sp-4);
  }

  .pricing-category-dock {
    padding: 4px;
    gap: 4px;
  }

  .pricing-category-pill {
    padding: 0.62rem 1rem;
    font-size: 0.80rem;
  }

  .pricing-headline {
    font-size: 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   20. CAMPAIGN BOOKING CTA & FORM SECTION
   ═══════════════════════════════════════════════════════════════ */

/* ── 20a. Section outer ────────────────────────────────────────── */
.booking-section {
  position: relative;
  z-index: 1;
  padding: 0 clamp(var(--sp-6), 6vw, 6rem) var(--sp-24);
  scroll-margin-top: 5.5rem;
  perspective: 1000px;
}

/* ── 20b. Booking glass card ─────────────────────────────────── */
.booking-glass-card {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 0;
  padding: 3.5rem 2.5rem;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 231, 0.75) 0%,
    rgba(240, 201, 107, 0.22) 100%
  );
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.90);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.booking-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.booking-orb--gold {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle,
    rgba(240, 201, 107, 0.22) 0%,
    rgba(200, 153, 42, 0.10) 50%,
    transparent 70%
  );
  filter: blur(40px);
}

.booking-orb--cream {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle,
    rgba(247, 244, 238, 0.60) 0%,
    transparent 70%
  );
  filter: blur(35px);
}

.booking-card-rim {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.70);
  pointer-events: none;
  z-index: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.90) inset,
    0 -1px 0 rgba(200,153,42,0.06) inset;
}

/* ── 20c. Booking content layout ─────────────────────────────── */
.booking-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── 20d. Booking copy (left) ────────────────────────────────── */
.booking-badge {
  margin-bottom: var(--sp-6);
}

.booking-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #1A1817;
  text-shadow: 0 2px 10px rgba(26,24,23,0.06);
  margin-bottom: var(--sp-4);
}

.booking-headline-gradient {
  display: block;
  background: linear-gradient(118deg,
    #A67A1C 0%,
    #C8992A 30%,
    #F0C96B 60%,
    #C47B5A 88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradShift 6s ease-in-out infinite alternate;
}

.booking-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.70;
  color: var(--slate-600);
  margin-bottom: var(--sp-8);
}

/* Trust indicators */
.booking-trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--slate-600);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(200,153,42,0.6);
  animation: pulseDot 2.4s ease-out infinite;
  flex-shrink: 0;
}

/* ── 20e. Booking form (right) ───────────────────────────────── */
.booking-form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Selected Plan Banner */
.selected-plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.4rem;
  margin-bottom: var(--sp-4);
  border-radius: 16px;
  background: rgba(255, 248, 235, 0.88);
  border: 1.5px solid rgba(200, 153, 42, 0.50);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 24px rgba(200, 153, 42, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  animation: bannerSlideIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes bannerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.selected-plan-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.selected-plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 153, 42, 0.18);
  border: 1px solid rgba(200, 153, 42, 0.45);
  color: var(--gold-600);
  font-size: 1rem;
  flex-shrink: 0;
}

.selected-plan-text {
  display: flex;
  flex-direction: column;
}

.selected-plan-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.selected-plan-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: #1A1817;
  line-height: 1.25;
}

.selected-plan-clear {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 153, 42, 0.35);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-600);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.selected-plan-clear:hover {
  background: rgba(200, 153, 42, 0.20);
  border-color: rgba(200, 153, 42, 0.60);
  color: #1A1817;
  transform: translateY(-1px);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.form-input {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 153, 42, 0.30);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #1A1815;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  width: 100%;
  outline: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(107, 101, 96, 0.60);
  font-style: italic;
}

/* Gold halo focus state */
.form-input:focus {
  border-color: rgba(200, 153, 42, 0.70);
  box-shadow:
    0 0 0 3px rgba(240, 201, 107, 0.20),
    0 2px 8px rgba(200, 153, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Custom dropdown wrapper */
.form-select-wrapper {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.form-select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ── 20f. Submit Button — 3D Gold Glass Pill ─────────────────── */
.booking-submit {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid rgba(240, 201, 107, 0.75);
  background: rgba(208, 168, 48, 0.26);
  box-shadow:
    0 6px 22px rgba(200, 153, 42, 0.38),
    0 2px 6px rgba(200, 153, 42, 0.20),
    0 1px 0 rgba(255,255,255,0.75) inset;
  transition:
    transform var(--t-mid) var(--ease-luxury),
    box-shadow var(--t-mid) var(--ease-luxury),
    background var(--t-fast) var(--ease-luxury);
  margin-top: var(--sp-2);
}

.booking-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: rgba(255,255,255,0.80);
  border-radius: var(--r-pill);
}

.booking-submit-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--gold-600);
}

.booking-submit-shine {
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255,255,255,0.60) 50%,
    transparent 65%
  );
  transform: skewX(-18deg);
  transition: left var(--t-slow) var(--ease-luxury);
  pointer-events: none;
  z-index: 2;
}

.booking-submit:hover {
  background: rgba(208, 168, 48, 0.42);
  box-shadow:
    0 10px 32px rgba(200, 153, 42, 0.50),
    0 3px 8px rgba(200, 153, 42, 0.22),
    0 1px 0 rgba(255,255,255,0.90) inset;
  transform: translateY(-2px) scale(1.01);
}

.booking-submit:hover .booking-submit-shine {
  left: 130%;
}

.booking-submit:active {
  transform: translateY(0) scale(0.98);
}

/* ── 20g. Inquiry Confirmation Card ──────────────────────────── */

/* Outer wrapper — collapsed by default, revealed via .is-visible or removal of [hidden] */
#formSuccessMessage,
#formSuccess {
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

#formSuccessMessage:empty,
#formSuccess[hidden] {
  display: none;
}

#formSuccess:not([hidden]),
#formSuccess.is-visible,
#formSuccessMessage.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inquiry Confirmation Card */
.inquiry-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #f7efe2 0%, #ebdac2 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 24px 28px;
  max-width: 540px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.inquiry-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.inquiry-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #4a3510; /* Deep bronze */
  letter-spacing: -0.01em;
}

.inquiry-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #2b2b2b; /* Dark charcoal for maximum readability */
}

.inquiry-highlight {
  color: #4a3510;
  font-weight: 700;
}

@media (max-width: 480px) {
  .inquiry-card {
    padding: 18px 20px;
    gap: 12px;
  }
  .inquiry-title {
    font-size: 18px;
  }
  .inquiry-text {
    font-size: 14px;
  }
}

/* ── 20h. Booking Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-glass-card {
    padding: 2.5rem 1.75rem;
    margin-top: 3rem;
  }
}

@media (max-width: 640px) {
  .booking-section {
    padding: 0 var(--sp-4) var(--sp-16);
  }

  .booking-glass-card {
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

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

/* ═══════════════════════════════════════════════════════════════
   21. SITE FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* ── 21a. Footer outer ──────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 clamp(var(--sp-6), 6vw, 6rem);
  padding-bottom: var(--sp-8);
  perspective: 1000px;
}

/* ── 21b. Footer glass strip ────────────────────────────────── */
.footer-glass-strip {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(247, 244, 238, 0.70);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.05),
    0 1px 0 rgba(255,255,255,0.90) inset;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

/* Top shimmer line */
.footer-shimmer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 201, 107, 0.60) 35%,
    rgba(200, 153, 42, 0.80) 50%,
    rgba(240, 201, 107, 0.60) 65%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── 21c. Footer inner 3-column grid ────────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-8);
  padding: 2.75rem 2.5rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ── 21d. Brand column ──────────────────────────────────────── */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
  transition: opacity var(--t-mid) var(--ease-luxury);
}

.footer-brand:hover {
  opacity: 0.80;
}

.footer-brand-orb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(200, 153, 42, 0.40));
}

.footer-orb-svg {
  width: 100%;
  height: 100%;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--deep) 30%, var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-600);
  -webkit-text-fill-color: var(--slate-600);
  background: none;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--slate-600);
  max-width: 32ch;
}

/* ── 21e. Nav column ────────────────────────────────────────── */
.footer-nav-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-1);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--slate-600);
  padding: var(--sp-1) 0;
  position: relative;
  display: inline-block;
  transition: color var(--t-fast) var(--ease-luxury);
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--r-pill);
  transition: width var(--t-mid) var(--ease-luxury);
}

.footer-nav-link:hover {
  color: var(--gold-600);
}

.footer-nav-link:hover::after {
  width: 100%;
}

/* ── 21f. Legal / copyright column ──────────────────────────── */
.footer-col--legal {
  text-align: right;
  align-items: flex-end;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.footer-legal-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: var(--sp-1);
}

/* ── 21g. Footer Contact Capsule ────────────────────────────── */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-top: var(--sp-3);
  gap: 0.35rem;
}

.footer-contact-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  user-select: none;
}

.footer-contact-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-pill);
  background: rgba(255, 248, 231, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 201, 107, 0.60);
  color: #1A1A1A;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(200, 153, 42, 0.18),
    0 2px 6px rgba(46, 42, 37, 0.06),
    0 6px 16px rgba(200, 153, 42, 0.22),
    0 0 20px rgba(240, 201, 107, 0.35),
    0 0 36px rgba(200, 153, 42, 0.18);
  transition: transform 0.3s var(--ease-luxury),
              box-shadow 0.3s var(--ease-luxury),
              border-color 0.3s var(--ease-luxury),
              background 0.3s var(--ease-luxury),
              color 0.3s var(--ease-luxury);
  will-change: transform, box-shadow;
}

.footer-contact-capsule:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 107, 0.95);
  background: rgba(255, 248, 231, 0.95);
  color: #1A1A1A;
  box-shadow:
    inset 0 1.5px 3px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(200, 153, 42, 0.25),
    0 4px 10px rgba(46, 42, 37, 0.08),
    0 10px 24px rgba(200, 153, 42, 0.32),
    0 0 28px rgba(240, 201, 107, 0.60),
    0 0 52px rgba(200, 153, 42, 0.30);
}

.footer-contact-capsule:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.footer-contact-capsule:active {
  transform: translateY(0);
}

/* ── 21h. Footer Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8) var(--sp-6);
    padding: 2rem 1.5rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-col--legal {
    text-align: left;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}

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

  .site-footer {
    padding: 0 var(--sp-4) var(--sp-6);
  }

  .footer-glass-strip {
    border-radius: 18px;
  }
}

/* ── 22. MOBILE RESPONSIVE GRID & TOUCH SAFETY ──────────────── */
@media (max-width: 768px) {
  /* Force pricing and UGC grids to single column */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .ugc-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  /* Disable 3D transforms on booking and footer cards on touch screens */
  .booking-card,
  .booking-glass-card,
  .footer-glass-panel,
  .footer-glass-strip {
    transform: none !important;
  }
}





/* ══════════════════════════════════════════════════════════════
   23. CONFIRMATION MODAL
   Gold / Dark Glass — matches CineCraft Vantage aesthetic
   ══════════════════════════════════════════════════════════════ */

/* ── 23a. Overlay backdrop ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;

  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* JS adds this class to open */
.modal-overlay.modal-is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── 23b. Glass card ───────────────────────────────────────── */
.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 2.5rem 2.25rem 2rem;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;

  /* Glass surface */
  background: rgba(18, 14, 8, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.22);

  /* 3D depth layers */
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 215, 0, 0.06);

  /* enter animation */
  transform: translateY(24px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              opacity  0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.modal-is-open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Subtle top-edge shimmer line */
.modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 215, 0, 0.5) 40%,
    rgba(255, 215, 0, 0.5) 60%,
    transparent);
  border-radius: 99px;
}

/* ── 23c. Gold checkmark icon ring ────────────────────────── */
.modal-icon-ring {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 40% 35%,
    rgba(255, 215, 0, 0.18) 0%,
    rgba(255, 215, 0, 0.06) 70%);
  border: 1.5px solid rgba(255, 215, 0, 0.45);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.modal-check-svg {
  color: #ffd700;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.55));
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.55s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-is-open .modal-check-svg {
  stroke-dashoffset: 0;
}

/* ── 23d. Typography ───────────────────────────────────────── */
.modal-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(1.3rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}

.modal-body {
  margin: 0 0 2rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Gold highlight for the injected service + package text */
.modal-body .modal-highlight {
  color: #ffd700;
  font-weight: 600;
}

/* ── 23e. Close button ─────────────────────────────────────── */
.modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 2.25rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0a0804;
  background: linear-gradient(135deg, #ffd700 0%, #c8992a 100%);
  box-shadow:
    0 4px 16px rgba(255, 215, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  filter: brightness(1.08);
}

.modal-close-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ── 23f. Responsive ───────────────────────────────────────── */
@media (max-width: 480px) {
  .modal-card {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 20px;
  }

  .modal-icon-ring {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
}

