:root {
  /* Colors */
  --gold: #fbbf24;
  --gold-light: #fef08a;
  --gold-dark: #b45309;
  --gold-glow: rgba(251, 191, 36, 0.45);
  --gold-glow-soft: rgba(251, 191, 36, 0.18);

  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 22px;

  --bg-primary: #000000;
  --bg-secondary: rgba(26, 15, 0, 0.6);
  --bg-tertiary: rgba(45, 27, 13, 0.4);

  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: rgba(255, 255, 255, 0.45);

  /* Layout */
  --nav-h: 90px;
  --max-w: 1280px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-gold: 0 10px 30px rgba(251, 191, 36, 0.4);
  --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.6);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-normal: 300ms ease;
  --t-slow: 500ms ease;
  --t-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;

  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 40px rgba(0, 0, 0, 0.2),
    0 0 80px rgba(255, 255, 255, 0.05);
}

/* Gold shimmer line — top accent */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--gold) 28%,
      rgba(251, 191, 36, 0.35) 65%,
      transparent 100%);
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
  transition: filter var(--t-normal), transform var(--t-normal);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.6));
  transform: scale(1.04);
}

/* ── Desktop Nav Links ── */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
  margin-right: 20px;
}

.navbar-link {
  display: inline-block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: color var(--t-normal), background var(--t-normal);
  position: relative;
}

.navbar-link:hover {
  color: #000;
  background: var(--gold);
  box-shadow: 0 4px 18px rgba(251, 191, 36, 0.35);
}

.navbar-link.active {
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

/* CTA Nav Button */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: all var(--t-normal);
  flex-shrink: 0;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

/* ── Hamburger ── */
.hamburger {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background var(--t-normal), border-color var(--t-normal);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Drawer ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 110px 0 40px 44px;
  transition: right .42s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.nav-drawer.active {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: background var(--t-normal), transform var(--t-normal);
}

.drawer-close:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer ul li {
  margin-bottom: 6px;
}

.nav-drawer ul li a {
  display: inline-block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--t-normal), padding-left var(--t-normal);
  position: relative;
}

.nav-drawer ul li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: width var(--t-normal);
}

.nav-drawer ul li a:hover {
  color: var(--gold);
  padding-left: 14px;
}

.nav-drawer ul li a:hover::before {
  width: 10px;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

/* ── MUTE / UNMUTE BUTTON ── */
.hero-mute-btn {
  position: absolute;
  bottom: 90px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(251, 191, 36, 0.35);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  outline: none;
}

.hero-mute-btn:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
}

.hero-mute-btn:active {
  transform: scale(0.97);
}

.hero-mute-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.2s;
}

.hero-mute-btn .icon-unmute {
  display: none;
}

.hero-mute-btn.muted .icon-mute {
  display: none;
}

.hero-mute-btn.muted .icon-unmute {
  display: block;
}

/* ── HERO OVERLAY ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 35%,
      rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(120deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(251, 191, 36, 0.04) 100%);
}

/* Decorative corner ornament */
.hero-ornament {
  position: absolute;
  z-index: 2;
  top: var(--nav-h);
  right: 60px;
  margin-top: 40px;
  width: 160px;
  height: 160px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-ornament svg {
  width: 100%;
  height: 100%;
}

/* Particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 12%;
  animation-delay: 0s;
  animation-duration: 9s;
}

.particle:nth-child(2) {
  left: 28%;
  animation-delay: 1.5s;
  animation-duration: 7s;
}

.particle:nth-child(3) {
  left: 45%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.particle:nth-child(4) {
  left: 63%;
  animation-delay: 0.8s;
  animation-duration: 8s;
}

.particle:nth-child(5) {
  left: 78%;
  animation-delay: 2.2s;
  animation-duration: 6s;
}

.particle:nth-child(6) {
  left: 90%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.particle:nth-child(7) {
  left: 35%;
  animation-delay: 5s;
  animation-duration: 7.5s;
}

.particle:nth-child(8) {
  left: 55%;
  animation-delay: 1s;
  animation-duration: 11s;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--nav-h);
  max-width: 820px;
  animation: hero-enter 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-description {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  transition: all var(--t-normal);
  cursor: pointer;
  border: none;
}

.btn-lg {
  padding: 15px 40px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px var(--gold-glow);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

/* ════════════════════════════════
   4-CORNER SPOTLIGHTS
════════════════════════════════ */
.corner-lights {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.corner-light {
  position: absolute;
  width: 0;
  height: 0;
}

.corner-light.tl {
  top: 0;
  left: 0;
  background: conic-gradient(from 315deg at 0% 0%, transparent 0deg, rgba(251, 191, 36, 0.10) 18deg, rgba(251, 191, 36, 0.03) 36deg, transparent 36deg);
  width: 100%;
  height: 100%;
  transform-origin: top left;
}

.corner-light.tr {
  top: 0;
  right: 0;
  background: conic-gradient(from 225deg at 100% 0%, transparent 0deg, rgba(251, 191, 36, 0.10) 18deg, rgba(251, 191, 36, 0.03) 36deg, transparent 36deg);
  width: 100%;
  height: 100%;
  transform-origin: top right;
}

.corner-light.bl {
  bottom: 0;
  left: 0;
  background: conic-gradient(from 45deg at 0% 100%, transparent 0deg, rgba(251, 191, 36, 0.10) 18deg, rgba(251, 191, 36, 0.03) 36deg, transparent 36deg);
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
}

.corner-light.br {
  bottom: 0;
  right: 0;
  background: conic-gradient(from 135deg at 100% 100%, transparent 0deg, rgba(251, 191, 36, 0.10) 18deg, rgba(251, 191, 36, 0.03) 36deg, transparent 36deg);
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
}

#spotlightCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fade-bob 2.5s ease-in-out infinite;
  text-decoration: none;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  animation: line-grow 2.5s ease-in-out infinite;
}

@keyframes line-grow {

  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.4;
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top;
  }
}

@keyframes fade-bob {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── Stats bar ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(251, 191, 36, 0.12);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.stat-item {
  flex: 1;
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid rgba(251, 191, 36, 0.1);
  transition: background var(--t-normal);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(251, 191, 36, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {

  .navbar-menu,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    /* ← pushes hamburger to far right */
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 18px;
  }

  .logo-img {
    height: 72px;
  }

  .hamburger {
    width: 38px;
    height: 38px;
  }

  .hero-mute-btn {
    bottom: 24px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .hero-mute-btn svg {
    width: 15px;
    height: 15px;
  }

  .hero-stats {
    display: none;
  }

  .hero-ornament {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .btn-lg {
    padding: 13px 28px;
    font-size: 10px;
  }
}

/* ── Drawer overlay ── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  backdrop-filter: blur(2px);
}

.drawer-overlay.active {
  display: block;
}

/* ── Stats bar over hero bottom ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(251, 191, 36, 0.12);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.stat-item {
  flex: 1;
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid rgba(251, 191, 36, 0.1);
  transition: background var(--t-normal);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(251, 191, 36, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {

  .navbar-menu,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 18px;
  }

  .hero-stats {
    display: none;
  }

  .hero-ornament {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .btn-lg {
    padding: 13px 28px;
    font-size: 10px;
  }
}

/* ─── Overlay when drawer open ─── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  backdrop-filter: blur(2px);
}

.drawer-overlay.active {
  display: block;
}


/* ─────────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────────── */
.why-section {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background: layered depth ── */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* vignette edges */
    radial-gradient(ellipse 100% 100% at 50% 50%,
      transparent 30%,
      rgba(0, 0, 0, 0.82) 100%),
    /* warm gold pulse from center-bottom */
    radial-gradient(ellipse 80% 55% at 50% 100%,
      rgba(251, 191, 36, 0.13) 0%,
      transparent 65%),
    /* top ambient */
    radial-gradient(ellipse 60% 40% at 50% 0%,
      rgba(251, 191, 36, 0.06) 0%,
      transparent 60%),
    /* base bg */
    linear-gradient(160deg, #1a0f00 0%, #0a0700 40%, #0f0a00 100%);
}

/* ── Noise grain texture overlay ── */
.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Decorative horizontal rule lines ── */
.why-section .line-top,
.why-section .line-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(251, 191, 36, 0.22) 20%,
      rgba(251, 191, 36, 0.5) 50%,
      rgba(251, 191, 36, 0.22) 80%,
      transparent 100%);
}

.why-section .line-top {
  top: 0;
}

.why-section .line-bottom {
  bottom: 0;
}

/* ── Corner ornaments ── */
.corner {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.corner-tl {
  top: 18px;
  left: 28px;
  border-top: 1.5px solid rgba(251, 191, 36, 0.4);
  border-left: 1.5px solid rgba(251, 191, 36, 0.4);
}

.corner-tr {
  top: 18px;
  right: 28px;
  border-top: 1.5px solid rgba(251, 191, 36, 0.4);
  border-right: 1.5px solid rgba(251, 191, 36, 0.4);
}

.corner-bl {
  bottom: 18px;
  left: 28px;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.4);
  border-left: 1.5px solid rgba(251, 191, 36, 0.4);
}

.corner-br {
  bottom: 18px;
  right: 28px;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.4);
  border-right: 1.5px solid rgba(251, 191, 36, 0.4);
}

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* tiny label above title */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fbbf24);
}

.eyebrow::after {
  background: linear-gradient(90deg, #fbbf24, transparent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 20px;
}

.section-title em {
  color: #fbbf24;
  font-style: italic;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.2px;
}

/* ─────────────────────────────────────────
   CARDS GRID
───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ─────────────────────────────────────────
   CARD BASE
───────────────────────────────────────── */
.card {
  position: relative;
  border-radius: 24px;
  padding: 48px 36px 44px;
  background: rgba(30, 18, 4, 0.6);
  border: 1px solid rgba(251, 191, 36, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

/* inner glow layer */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
      rgba(251, 191, 36, 0.07) 0%,
      transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* bottom edge shimmer */
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(251, 191, 36, 0.35),
      transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 191, 36, 0.32);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(251, 191, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

/* ── FEATURED (center) card ── */
.card.featured {
  background: rgba(40, 24, 4, 0.78);
  border-color: rgba(251, 191, 36, 0.28);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(251, 191, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.card.featured::before {
  opacity: 1;
}

.card.featured:hover {
  transform: translateY(-14px);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(251, 191, 36, 0.12);
}

/* ── NUMBER badge (top-right) ── */
.card-number {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: rgba(251, 191, 36, 0.06);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}

.card:hover .card-number,
.card.featured .card-number {
  color: rgba(251, 191, 36, 0.1);
}

/* ─────────────────────────────────────────
   ICON BLOCK
───────────────────────────────────────── */
.icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Default: glass gold */
.icon-wrap.gold {
  background: linear-gradient(145deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.icon-wrap.gold svg {
  color: #000;
}

/* Outlined variant */
.icon-wrap.outline {
  background: rgba(251, 191, 36, 0.08);
  border: 1.5px solid rgba(251, 191, 36, 0.3);
}

.icon-wrap.outline svg {
  color: #fbbf24;
}

.card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.12);
}

/* ─────────────────────────────────────────
   CARD TEXT
───────────────────────────────────────── */
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.card.featured .card-title {
  font-size: clamp(24px, 2.5vw, 32px);
}

.card-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
  letter-spacing: 0.2px;
}

.card:hover .card-desc,
.card.featured .card-desc {
  color: rgba(255, 255, 255, 0.68);
}

/* ── Divider line ── */
.card-divider {
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, #fbbf24, transparent);
  border-radius: 2px;
  margin: 22px 0;
  transition: width 0.4s ease;
}

.card:hover .card-divider {
  width: 60px;
}

/* ── Feature pill tags ── */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.tag::before {
  content: "✦";
  font-size: 8px;
  color: #fbbf24;
}

.card:hover .tag {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

/* ─────────────────────────────────────────
   BOTTOM STAT BAR
───────────────────────────────────────── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 20px;
  background: rgba(20, 12, 2, 0.5);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.stat-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(251, 191, 36, 0.08);
  transition: background 0.3s;
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(251, 191, 36, 0.04);
}

.stat-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(251, 191, 36, 0.7);
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card.featured {
    transform: translateY(0);
  }

  .stat-bar {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(251, 191, 36, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 80px 20px 90px;
  }

  .corner {
    display: none;
  }
}


/* ─────────────────────────────────────────
 venue-section  SECTION
───────────────────────────────────────── */
.venue-section {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Layered background ── */
.venue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(251, 191, 36, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(251, 191, 36, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #120c00 0%, #080500 50%, #0e0800 100%);
}

/* ── Grain texture ── */
.venue-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── Section top/bottom shimmer lines ── */
.venue-section .s-line {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3) 30%, rgba(251, 191, 36, 0.6) 50%, rgba(251, 191, 36, 0.3) 70%, transparent);
}

.venue-section .s-line-top {
  top: 0;
}

.venue-section .s-line-bottom {
  bottom: 0;
}

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
}

.eyebrow::before {
  background: linear-gradient(90deg, transparent, #fbbf24);
}

.eyebrow::after {
  background: linear-gradient(90deg, #fbbf24, transparent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}

.section-title em {
  color: #fbbf24;
  font-style: italic;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   MAIN VENUE CARD
───────────────────────────────────────── */
.venue-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: rgba(22, 13, 2, 0.75);
  border: 1px solid rgba(251, 191, 36, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 80px rgba(251, 191, 36, 0.05);
  transition: border-color 0.5s, box-shadow 0.5s;
}

.venue-card:hover {
  border-color: rgba(251, 191, 36, 0.28);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(251, 191, 36, 0.08);
}

/* ── Gold corner brackets on card ── */
.venue-card .c {
  position: absolute;
  z-index: 10;
  width: 22px;
  height: 22px;
}

.venue-card .c-tl {
  top: 14px;
  left: 14px;
  border-top: 1.5px solid rgba(251, 191, 36, 0.5);
  border-left: 1.5px solid rgba(251, 191, 36, 0.5);
}

.venue-card .c-tr {
  top: 14px;
  right: 14px;
  border-top: 1.5px solid rgba(251, 191, 36, 0.5);
  border-right: 1.5px solid rgba(251, 191, 36, 0.5);
}

.venue-card .c-bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.5);
  border-left: 1.5px solid rgba(251, 191, 36, 0.5);
}

.venue-card .c-br {
  bottom: 14px;
  right: 14px;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.5);
  border-right: 1.5px solid rgba(251, 191, 36, 0.5);
}

/* ─────────────────────────────────────────
   LEFT: IMAGE PANEL
───────────────────────────────────────── */
.venue-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.venue-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.venue-card:hover .venue-image-panel img {
  transform: scale(1.05);
}

/* Image overlays */
.venue-image-panel .img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(22, 13, 2, 0.85) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.45) 100%);
}

/* ── Floating badge ── */
.venue-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
}

.venue-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ── Floating stats chips on image ── */
.image-chips {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(10, 6, 0, 0.75);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.3s, border-color 0.3s;
}

.chip:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fff;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.7);
}

/* ─────────────────────────────────────────
   RIGHT: INFO PANEL
───────────────────────────────────────── */
.venue-info-panel {
  padding: 56px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Subtle vertical gold line on left edge of info panel */
.venue-info-panel::before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.25), transparent);
}

/* ── Venue number ── */
.venue-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: rgba(251, 191, 36, 0.05);
  position: absolute;
  top: 20px;
  right: 32px;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}

.venue-card:hover .venue-number {
  color: rgba(251, 191, 36, 0.08);
}

/* ── Title ── */
.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.venue-name em {
  color: #fbbf24;
  font-style: italic;
}

.venue-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.7);
  margin-bottom: 20px;
}

.venue-type::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(251, 191, 36, 0.5);
}

/* ── Gold divider ── */
.divider {
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, #fbbf24, transparent);
  border-radius: 2px;
  margin: 20px 0 22px;
  transition: width 0.4s ease;
}

.venue-card:hover .divider {
  width: 80px;
}

/* ── Description ── */
.venue-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 400px;
}

.venue-card:hover .venue-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 38px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: rgba(251, 191, 36, 0.04);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  cursor: default;
}

.feature-item:hover {
  background: rgba(251, 191, 36, 0.09);
  border-color: rgba(251, 191, 36, 0.28);
  color: #fff;
  transform: translateX(4px);
}

.feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.feature-item:hover .feature-icon {
  background: rgba(251, 191, 36, 0.18);
}

.feature-icon svg {
  color: #fbbf24;
}

/* ── CTA ── */
.venue-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.45);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.venue-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.venue-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(251, 191, 36, 0.6);
}

.venue-cta:hover::before {
  opacity: 1;
}

.venue-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.venue-cta svg {
  transition: transform 0.3s;
}

.venue-cta:hover svg {
  transform: translateX(4px);
}

/* ── More venues strip ── */
.more-venues {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.more-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.venue-thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.15);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.thumb:hover {
  border-color: rgba(251, 191, 36, 0.5);
  transform: scale(1.08);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.thumb:hover img {
  filter: brightness(1);
}

.thumb-add {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px dashed rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 191, 36, 0.4);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 300;
}

.thumb-add:hover {
  border-color: rgba(251, 191, 36, 0.5);
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.06);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  .venue-card {
    grid-template-columns: 1fr;
  }

  .venue-image-panel {
    min-height: 320px;
  }

  .venue-info-panel {
    padding: 40px 36px;
  }

  .venue-info-panel::before {
    display: none;
  }

  .venue-image-panel .img-overlay {
    background:
      linear-gradient(to bottom, transparent 50%, rgba(22, 13, 2, 0.85) 100%);
  }
}

@media (max-width: 600px) {
  .venue-section {
    padding: 80px 20px 90px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .venue-info-panel {
    padding: 32px 24px;
  }

  .more-venues {
    display: none;
  }
}

/* ─────────────────────────────────────────
   ev-services-section
───────────────────────────────────────── */
.ev-services-section {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  overflow: hidden;
  isolation: isolate;
}

/* Multi-layer background */
.ev-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(251, 191, 36, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(251, 191, 36, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 90% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    linear-gradient(170deg, #110c00 0%, #080500 45%, #0d0800 100%);
}

/* Grain */
.ev-services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.ev-s-line {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.28) 30%, rgba(251, 191, 36, 0.55) 50%, rgba(251, 191, 36, 0.28) 70%, transparent);
}

.ev-s-line-top {
  top: 0;
}

.ev-s-line-bottom {
  bottom: 0;
}

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.ev-container {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.ev-section-header {
  text-align: center;
  margin-bottom: 72px;
}

.ev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.ev-eyebrow::before,
.ev-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
}

.ev-eyebrow::before {
  background: linear-gradient(90deg, transparent, #fbbf24);
}

.ev-eyebrow::after {
  background: linear-gradient(90deg, #fbbf24, transparent);
}

.ev-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.ev-section-title em {
  color: #fbbf24;
  font-style: italic;
}

.ev-section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CARDS GRID
───────────────────────────────────────── */
.ev-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─────────────────────────────────────────
   SERVICE CARD
───────────────────────────────────────── */
.ev-svc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(24, 15, 3, 0.65);
  border: 1px solid rgba(251, 191, 36, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s,
    box-shadow 0.45s;
}

/* Ambient glow on hover */
.ev-svc-card:hover {
  transform: translateY(-12px);
  border-color: rgba(251, 191, 36, 0.32);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(251, 191, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Inner radial glow — top */
.ev-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 100% 70% at 50% 0%,
      rgba(251, 191, 36, 0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s;
}

.ev-svc-card:hover::before {
  opacity: 1;
}

/* Bottom shimmer edge */
.ev-svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.45), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-svc-card:hover::after {
  transform: scaleX(1);
}

/* ── Icon area ── */
.ev-icon-area {
  position: relative;
  padding: 48px 36px 36px;
  display: flex;
  align-items: flex-start;
}

/* Card number ghost */
.ev-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}

.ev-svc-card:hover .ev-card-num {
  color: rgba(251, 191, 36, 0.1);
}

/* Icon ring */
.ev-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: rgba(251, 191, 36, 0.06);
  border: 1.5px solid rgba(251, 191, 36, 0.18);
}

.ev-icon-ring svg {
  transition: filter 0.35s;
}

.ev-svc-card:hover .ev-icon-ring {
  transform: rotate(-8deg) scale(1.1);
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.4);
}

.ev-svc-card:hover .ev-icon-ring svg {
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.7));
}

/* ── Card body ── */
.ev-card-body {
  padding: 0 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ev-card-divider {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, #fbbf24, transparent);
  border-radius: 2px;
  margin-bottom: 18px;
  transition: width 0.4s ease;
}

.ev-svc-card:hover .ev-card-divider {
  width: 54px;
}

.ev-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s;
}

.ev-svc-card:hover .ev-card-title {
  color: #fef3c7;
}

.ev-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  flex: 1;
  transition: color 0.35s;
}

.ev-svc-card:hover .ev-card-desc {
  color: rgba(255, 255, 255, 0.68);
}

/* Learn more link */
.ev-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.5);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
}

.ev-card-link svg {
  transition: transform 0.3s;
}

.ev-svc-card:hover .ev-card-link {
  color: #fbbf24;
  gap: 10px;
}

.ev-svc-card:hover .ev-card-link svg {
  transform: translateX(4px);
}

/* ── Active/featured card ── */
.ev-svc-card.ev-active {
  background: rgba(35, 21, 3, 0.8);
  border-color: rgba(251, 191, 36, 0.28);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(251, 191, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ev-svc-card.ev-active::before {
  opacity: 1;
}

.ev-svc-card.ev-active .ev-icon-ring {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.45);
}

.ev-svc-card.ev-active .ev-icon-ring svg {
  color: #000 !important;
}

.ev-svc-card.ev-active .ev-card-link {
  color: #fbbf24;
}

.ev-section-cta {
  text-align: center;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ev-cta-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ev-cta-line::before,
.ev-cta-line::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.25));
}

.ev-cta-line::after {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.25), transparent);
}

.ev-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(251, 191, 36, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.ev-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.ev-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 50px rgba(251, 191, 36, 0.6);
}

.ev-cta-btn:hover::before {
  opacity: 1;
}

.ev-cta-btn svg {
  transition: transform 0.3s;
}

.ev-cta-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .ev-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ev-services-section {
    padding: 80px 20px 90px;
  }

  .ev-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── ev-gallery-section Section ── */
.ev-gallery-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070400;
}

/* Deep layered background */
.ev-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(251, 191, 36, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(180, 100, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0e0800 0%, #060400 50%, #0a0600 100%);
}

/* Grain overlay */
.ev-gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* Decorative vertical line */
.ev-gallery-vline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.12) 30%, rgba(251, 191, 36, 0.22) 50%, rgba(251, 191, 36, 0.12) 70%, transparent);
  z-index: 1;
}

/* Horizontal lines */
.ev-gallery-hline {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.25) 30%, rgba(251, 191, 36, 0.5) 50%, rgba(251, 191, 36, 0.25) 70%, transparent);
}

.ev-gallery-hline--top {
  top: 0;
}

.ev-gallery-hline--bottom {
  bottom: 0;
}

/* Floating orb */
.ev-gallery-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 65%);
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: ev-orb-pulse 6s ease-in-out infinite;
}

@keyframes ev-orb-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

/* ── Layout ── */
.ev-gallery-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── LEFT: Text ── */
.ev-gallery-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow badge */
.ev-gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  width: fit-content;
}

.ev-gallery-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  color: #fbbf24;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.ev-gallery-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  animation: ev-dot-blink 2s ease-in-out infinite;
}

@keyframes ev-dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.ev-gallery-badge-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.6), transparent);
}

/* Heading */
.ev-gallery-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.ev-gallery-heading em {
  font-style: italic;
  color: #fbbf24;
  display: block;
}

/* Divider */
.ev-gallery-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, rgba(251, 191, 36, 0.2));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Description */
.ev-gallery-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 52px;
}



/* CTA group */
.ev-gallery-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ev-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4), 0 0 0 0 rgba(251, 191, 36, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.ev-gallery-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.ev-gallery-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 55px rgba(251, 191, 36, 0.55), 0 0 0 6px rgba(251, 191, 36, 0.08);
}

.ev-gallery-btn:hover::before {
  opacity: 1;
}

.ev-gallery-btn svg {
  transition: transform 0.3s;
}

.ev-gallery-btn:hover svg {
  transform: translateX(5px);
}

.ev-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
}

.ev-gallery-link:hover {
  color: rgba(255, 255, 255, 0.7);
  gap: 12px;
}

/* ── RIGHT: Mosaic ── */
.ev-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px 220px;
  gap: 14px;
  position: relative;
}

.ev-gallery-tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(251, 191, 36, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.45s;
  cursor: pointer;
}

.ev-gallery-tile:hover {
  transform: scale(1.03);
  border-color: rgba(251, 191, 36, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.08);
  z-index: 3;
}

/* Tile spanning */
.ev-gallery-tile--tall {
  grid-row: span 2;
}

.ev-gallery-tile--wide {
  grid-column: span 2;
}

/* Tile fallback backgrounds */
.ev-gallery-tile--1 {
  background: linear-gradient(135deg, #1a0f00 0%, #2d1a02 50%, #1a0f00 100%);
}

.ev-gallery-tile--2 {
  background: linear-gradient(135deg, #120a00 0%, #251500 50%, #120a00 100%);
}

.ev-gallery-tile--3 {
  background: linear-gradient(135deg, #0e0600 0%, #1e1000 50%, #0e0600 100%);
}

.ev-gallery-tile--4 {
  background: linear-gradient(135deg, #160c00 0%, #2a1800 50%, #160c00 100%);
}

/* Real image inside tile */
.ev-gallery-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
  filter: brightness(0.72) saturate(0.85);
  display: block;
}

.ev-gallery-tile:hover .ev-gallery-tile-img {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(1.1);
}

/* Tile inner decorations */
.ev-gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(251, 191, 36, 0.07) 0%, transparent 60%);
  z-index: 1;
}

.ev-gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

/* Tile label */
.ev-gallery-tile-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.ev-gallery-tile:hover .ev-gallery-tile-label {
  color: #fbbf24;
}

/* Tile icon */
.ev-gallery-tile-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}

.ev-gallery-tile:hover .ev-gallery-tile-icon {
  transform: translate(-50%, -55%) scale(1.15);
  background: rgba(251, 191, 36, 0.15);
}

/* Floating count badge */
.ev-gallery-count {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 4;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.5);
  animation: ev-count-float 4s ease-in-out infinite;
}

@keyframes ev-count-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.ev-gallery-count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.ev-gallery-count-text {
  font-family: 'Outfit', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

/* Corner accent */
.ev-gallery-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
}

.ev-gallery-corner::before,
.ev-gallery-corner::after {
  content: "";
  position: absolute;
  background: rgba(251, 191, 36, 0.25);
}

.ev-gallery-corner::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 40px;
}

.ev-gallery-corner::after {
  top: 0;
  right: 0;
  width: 40px;
  height: 1px;
}

/* Load animation */
@keyframes ev-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ev-gallery-badge {
  animation: ev-fade-up 0.7s ease both;
}

.ev-gallery-heading {
  animation: ev-fade-up 0.7s 0.1s ease both;
}

.ev-gallery-divider {
  animation: ev-fade-up 0.7s 0.18s ease both;
}

.ev-gallery-desc {
  animation: ev-fade-up 0.7s 0.22s ease both;
}

.ev-gallery-cta {
  animation: ev-fade-up 0.7s 0.3s ease both;
}

.ev-gallery-mosaic {
  animation: ev-fade-up 0.8s 0.2s ease both;
}

/* Responsive */
@media (max-width: 1024px) {
  .ev-gallery-inner {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 60px;
  }

  .ev-gallery-vline {
    display: none;
  }

  .ev-gallery-heading {
    font-size: clamp(40px, 8vw, 64px);
  }
}

@media (max-width: 600px) {
  .ev-gallery-inner {
    padding: 70px 24px;
  }

  .ev-gallery-mosaic {
    grid-template-rows: 160px 120px 160px;
    gap: 10px;
  }

  .ev-gallery-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

:root {
  --gold: #d97706;
  --gold-light: #fbbf24;
  --gold-pale: #fef3c7;
  --ink: #111009;
  --ink-soft: #3a2e1a;
  --muted: #8a7c6a;
  --border: rgba(180, 140, 60, 0.15);
  --white: #ffffff;
  --off-white: #fafaf8;
}

#burst-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ── Footer ── */
.ev-footer {
  position: relative;
  background: var(--white);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.ev-footer-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(251, 191, 36, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(217, 119, 6, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 60%);
  animation: mesh-drift 12s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.04) translate(-8px, -6px);
  }
}

.ev-footer-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, transparent);
}

.ev-footer-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 700;
  color: rgba(217, 119, 6, 0.032);
  letter-spacing: -10px;
  bottom: -30px;
  right: 40px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

/* ── Review Strip ── */
.ev-review-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
  padding: 52px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ev-review-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 4px 28px rgba(180, 140, 60, 0.09), 0 1px 4px rgba(0, 0, 0, 0.04);
  min-width: 290px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  animation: fade-up 0.65s ease both;
}

.ev-review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.ev-review-card:nth-child(2) {
  animation-delay: 0.22s;
}

.ev-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.ev-review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 52px rgba(180, 140, 60, 0.16);
}

.ev-review-card:hover::before {
  opacity: 1;
}

.ev-review-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-review-platform {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.ev-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.ev-review-stars svg {
  animation: star-pop 0.45s ease both;
}

.ev-review-stars svg:nth-child(1) {
  animation-delay: .1s
}

.ev-review-stars svg:nth-child(2) {
  animation-delay: .18s
}

.ev-review-stars svg:nth-child(3) {
  animation-delay: .26s
}

.ev-review-stars svg:nth-child(4) {
  animation-delay: .34s
}

.ev-review-stars svg:nth-child(5) {
  animation-delay: .42s
}

@keyframes star-pop {
  from {
    opacity: 0;
    transform: scale(0.2) rotate(-20deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.ev-review-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.ev-review-score span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
}

.ev-review-count {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── Main Grid ── */
.ev-footer-main {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 60px 56px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 56px;
}

/* Brand */
.ev-footer-brand {
  animation: fade-up 0.65s 0.3s ease both;
}

.ev-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  text-decoration: none;
}

.ev-footer-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.38);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.ev-footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.ev-footer-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.ev-footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 30px;
}

.ev-footer-tagline em {
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Socials */
.ev-footer-socials {
  display: flex;
  gap: 10px;
}

.ev-footer-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.ev-footer-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.ev-footer-social:hover {
  transform: translateY(-5px) scale(1.12);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.28);
  color: #000;
}

.ev-footer-social:hover::before {
  opacity: 1;
}

.ev-footer-social svg {
  position: relative;
  z-index: 1;
}

/* Nav cols */
.ev-footer-col {
  animation: fade-up 0.65s ease both;
}

.ev-footer-col:nth-child(2) {
  animation-delay: .38s
}

.ev-footer-col:nth-child(3) {
  animation-delay: .46s
}

.ev-footer-col:nth-child(4) {
  animation-delay: .54s
}

.ev-footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ev-footer-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  max-width: 36px;
}

.ev-footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ev-footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  transition: color 0.25s, gap 0.25s;
  position: relative;
}

.ev-footer-nav a::before {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 2px;
  margin-right: 0;
  transition: width 0.3s ease, margin-right 0.3s;
}

.ev-footer-nav a:hover {
  color: var(--ink);
}

.ev-footer-nav a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* Contact */
.ev-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ev-footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gold-pale);
  border: 1px solid rgba(217, 119, 6, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s;
}

.ev-footer-contact-item:hover .ev-footer-contact-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--gold-light);
}

.ev-footer-contact-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.ev-footer-contact-text strong {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}

.ev-footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.ev-footer-contact-text a:hover {
  color: var(--gold);
}

/* Bottom bar */
.ev-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  margin: 0 60px;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ev-footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.ev-footer-copy strong {
  font-weight: 600;
  color: var(--ink-soft);
}

.ev-footer-legal {
  display: flex;
  gap: 24px;
}

.ev-footer-legal a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.ev-footer-legal a:hover {
  color: var(--gold);
}

/* Designed by credit */
.ev-footer-designed-by {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.ev-footer-designed-by span {
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll top btn */
.ev-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.42);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: scroll-appear 0.5s 1.4s ease forwards;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

@keyframes scroll-appear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ev-scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 14px 36px rgba(217, 119, 6, 0.55);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .ev-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 56px 40px;
  }

  .ev-review-strip {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .ev-footer-main {
    grid-template-columns: 1fr;
    padding: 44px 24px;
  }

  .ev-review-strip {
    padding: 30px 20px;
    flex-direction: column;
  }

  .ev-review-card {
    min-width: 100%;
  }

  .ev-footer-bottom {
    margin: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Venue Slider Styles */
.venue-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.venue-slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.venue-slider-track::-webkit-scrollbar {
  height: 6px;
}

.venue-slider-track::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.venue-slider-track::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.venue-slider-track::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.venue-slider-track>.venue-card {
  grid-template-columns: 1fr;
  flex: 0 0 calc(85% - 30px);
  max-width: calc(85% - 30px);
  margin-bottom: 0;
  scroll-snap-align: start;
}

.venue-slider-track>.venue-card .venue-image-panel {
  min-height: 240px;
}

.venue-slider-track>.venue-card .venue-image-panel .img-overlay {
  background: linear-gradient(to bottom, transparent 40%, rgba(22, 13, 2, 0.95) 100%);
}

.venue-slider-track>.venue-card .venue-info-panel::before {
  display: none;
}

.venue-slider-track>.venue-card .venue-info-panel {
  padding: 30px 24px;
}

.venue-slider-track>.venue-card .venue-name {
  font-size: 26px;
}

.venue-slider-track>.venue-card .venue-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.venue-slider-track>.venue-card .features-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue-slider-track>.venue-card .more-venues {
  display: none;
}

@media (min-width: 768px) {
  .venue-slider-track>.venue-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (min-width: 1100px) {
  .venue-slider-track>.venue-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

.venue-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #111827;
  transition: all 0.2s ease;
}

.venue-slider-btn:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.venue-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.venue-slider-btn.prev-btn {
  left: 10px;
}

.venue-slider-btn.next-btn {
  right: 10px;
}