/*
Theme Name: Dayton Venue
Theme URI: https://daytoneventsja.com
Author: Dayton Events
Description: Luxury event venue theme for Dayton Events, Kingston Jamaica
Version: 4.0
*/

/* ===========================
   ELEMENTOR VISIBILITY FIX
=========================== */
.elementor-invisible,
[data-settings*="entrance_animation"],
.elementor-section,
.elementor-column,
.elementor-widget {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transform: none !important;
  transform: none !important;
  animation-name: none !important;
}

/* ===========================
   HERO SECTION — Elementor
=========================== */

/* Full-screen hero */
.elementor-element-hero0001 {
  position: relative;
  min-height: 100vh !important;
  overflow: hidden;
}

/* All hero content above particles */
.elementor-element-hero0001 .elementor-container {
  position: relative;
  z-index: 2;
}

/* Soft fade at the bottom into next section */
.elementor-element-hero0001::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--black));
  z-index: 3;
  pointer-events: none;
}

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  /* Gold palette — richer, warmer */
  --gold:          #D4A843;
  --gold-light:    #F0CC70;
  --gold-lighter:  #FAE8A8;
  --gold-dark:     #A07820;
  --gold-glow:     rgba(212, 168, 67, 0.35);
  --gold-glow-sm:  rgba(212, 168, 67, 0.18);

  /* Backgrounds — warmer darks, not pure black */
  --black:         #0C0A07;
  --black-warm:    #110E08;
  --black-mid:     #181410;
  --black-card:    #1A1610;
  --navy:          #0B1520;
  --navy-warm:     #0F1C2E;
  --navy-card:     #121D2C;

  /* Text */
  --white:         #FFFFFF;
  --white-warm:    #FDF8F0;
  --cream:         #F5EDD8;
  --grey:          #7A7568;
  --grey-light:    #C8C0B0;
  --grey-mid:      #A09880;

  /* Accent — deep champagne for extra pop */
  --champagne:     #F5E0A0;
  --amber:         #E8A030;

  /* Typography */
  --font-heading: 'Roboto';
  --font-body:    'Roboto';

  /* Motion */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    0.25s;
  --t-mid:     0.45s;
  --t-slow:    0.8s;

  /* Shadows */
  --shadow-gold:   0 0 60px rgba(212, 168, 67, 0.25);
  --shadow-gold-sm:0 0 24px rgba(212, 168, 67, 0.18);
  --shadow-deep:   0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Roboto;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5 {
  font-family: Roboto;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white-warm);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold-light);
  font-style: italic;
}

.section-title .glow {
  color: var(--gold-light);
  font-style: italic;
  text-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(212,168,67,0.1);
}

.section-body {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.95;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.container--narrow { max-width: 860px; }

section { padding: 120px 0; }

.gold-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
  position: relative;
}

.gold-line::before {
  content: '✦';
  position: absolute;
  left: -12px;
  top: -7px;
  font-size: 0.5rem;
  color: var(--gold);
}

.gold-line--center { margin-left: auto; margin-right: auto; }
.gold-line--center::before { display: none; }

/* ===========================
   SHIMMER ANIMATION (buttons, borders)
=========================== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}

@keyframes float-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===========================
   NAVIGATION
=========================== */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  /* Always above everything — Elementor sections, videos, particles, overlays */
  z-index: 99999;
  padding: 28px 0;
  transition: padding var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
  /* Solid bg from the start so nothing bleeds through before scroll */
  background: linear-gradient(180deg, rgba(12,10,7,0.85) 0%, transparent 100%);
}

.site-nav.scrolled {
  background: rgba(12, 10, 7, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo sizing — WordPress outputs an <a> wrapping <img> */
.nav-logo a,
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img,
.custom-logo {
  height: var(--logo-height, 70px) !important;
  width: auto !important;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--t-mid) var(--ease);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #fff !important;
  padding: 10px 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em;
  transition: all var(--t-mid) var(--ease) !important;
  box-shadow: 0 0 20px var(--gold-glow-sm);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 0 40px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.3) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.nav-logo-text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold); letter-spacing: 0.1em; }

/* ── Stacked nav layout ── */
.site-nav--stacked { padding: 16px 0; }
.site-nav--stacked .nav-inner { justify-content: center; position: relative; }
.site-nav--stacked .nav-stacked { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; width: 100%; }
.site-nav--stacked .nav-logo--stacked { display: flex; justify-content: center; align-items: center; width: 100%; }
.site-nav--stacked .nav-logo--stacked .custom-logo-link,
.site-nav--stacked .nav-logo--stacked a { display: inline-flex; justify-content: center; }
.site-nav--stacked .nav-links { justify-content: center; flex-wrap: wrap; gap: 2rem; width: 100%; }
.site-nav--stacked .nav-hamburger { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.site-nav--stacked.scrolled { padding: 10px 0; }
.site-nav--stacked.scrolled .nav-stacked { gap: 6px; }

/* ── Hero two-column layout ── */
.de-hero-inner { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1300px; margin: 0 auto; gap: 4rem; min-height: 100vh; padding: 140px 0 80px; }
.de-hero-inner .de-hero-content { flex: 1; max-width: 560px; }
.de-hero-content { position: relative; z-index: 3; }

/* ── Hero video shape ── */
.de-hero-visual { flex: 0 0 440px; position: relative; }
.de-hero-shape {
  width: 440px; height: 520px;
  position: relative;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  overflow: hidden;
  border-radius: 4px;
}
.de-hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.de-shape-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}
/* Gold border on the shape */
.de-hero-shape::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  box-shadow: inset 0 0 0 2px rgba(212,168,67,0.4);
  clip-path: inherit;
  pointer-events: none;
}

/* ── Decorative rings (shown when no video) ── */
.de-shape-rings { position: relative; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(11,21,32,0.95) 0%, rgba(12,10,7,0.7) 100%); display: flex; align-items: center; justify-content: center; }
.de-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(212,168,67,0.25); }
.de-ring-1 { width: 200px; height: 200px; animation: de-ring-spin 8s linear infinite; }
.de-ring-2 { width: 300px; height: 300px; border-style: dashed; animation: de-ring-spin 14s linear infinite reverse; }
.de-ring-3 { width: 380px; height: 380px; animation: de-ring-spin 20s linear infinite; opacity: 0.4; }
@keyframes de-ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.de-ring-label { position: relative; z-index: 2; text-align: center; color: rgba(212,168,67,0.5); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.de-ring-label small { display: block; margin-top: 6px; font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }

@media (max-width: 900px) {
  .de-hero-inner { flex-direction: column; padding: 120px 0 60px; gap: 3rem; }
  .de-hero-visual { flex: none; width: 100%; }
  .de-hero-shape { width: 100%; height: 260px; clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%); }
  .de-ring-1 { width: 120px; height: 120px; }
  .de-ring-2 { width: 180px; height: 180px; }
  .de-ring-3 { width: 230px; height: 230px; }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--t-mid) var(--ease);
  display: block;
}

/* ===========================
   HERO — Cinematic
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Layered warm gradient bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 80% at 65% 45%, rgba(212, 168, 67, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(15, 28, 46, 0.9) 0%, transparent 60%),
    linear-gradient(160deg, #0C0A07 0%, #0F1520 45%, #180E04 100%);
}

/* Animated particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
  8%   { opacity: 0.8; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

/* Gold orb glow behind headline */
.hero-glow {
  position: absolute;
  top: 38%; left: 58%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, rgba(212, 168, 67, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 3;
  width: 90%; max-width: 1300px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 22px;
  border: 1px solid rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.06);
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: hero-fade 0.9s 0.2s var(--ease-out) forwards;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(36px);
  animation: hero-fade 1s 0.4s var(--ease-out) forwards;
}

.hero-title .line-1 {
  color: var(--white-warm);
  display: block;
}

.hero-title .line-2 {
  color: var(--gold-light);
  font-style: italic;
  display: block;
  text-shadow: 0 0 60px rgba(212,168,67,0.3), 0 0 120px rgba(212,168,67,0.1);
}

.hero-title .line-3 {
  color: var(--cream);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.06em;
  margin-top: 0.4em;
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--grey-light);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade 1s 0.6s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 1s 0.8s var(--ease-out) forwards;
}

/* Urgency pill */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--champagne);
  letter-spacing: 0.08em;
  margin-top: 2.5rem;
  opacity: 0;
  animation: hero-fade 1s 1.1s var(--ease-out) forwards;
}

.hero-urgency::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E84040;
  box-shadow: 0 0 8px rgba(232, 64, 64, 0.7);
  animation: blink 1.5s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: hero-fade 1s 1.4s var(--ease-out) forwards;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
}

.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50%       { transform: scaleY(0.4) translateY(10px); opacity: 0.3; }
}

/* ===========================
   SOCIAL PROOF BAR
=========================== */
.proof-bar {
  background: linear-gradient(90deg, var(--black-warm), var(--black-mid), var(--black-warm));
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  padding: 18px 0;
  overflow: hidden;
}

.proof-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}

.proof-item span { color: var(--gold-light); font-weight: 600; }

.proof-sep {
  width: 4px; height: 4px;
  background: var(--gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 17px 38px;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,168,67,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s var(--ease);
}

.btn--gold:hover {
  box-shadow: 0 6px 40px rgba(212,168,67,0.55), 0 2px 12px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.btn--gold:hover::after {
  background-position: 200% center;
}

.btn--gold span, .btn--gold svg { position: relative; z-index: 1; }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(212,168,67,0.35);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212,168,67,0.07);
  box-shadow: 0 0 24px var(--gold-glow-sm);
}

/* ===========================
   ABOUT
=========================== */
.about {
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(15, 28, 46, 0.8) 0%, transparent 60%),
    var(--black-warm);
  position: relative;
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.12em;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.15);
}

.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.about-image-frame:hover img { transform: scale(1.04); }

/* Glowing corner accents */
.about-image-frame::before,
.about-image-frame::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.about-image-frame::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
  box-shadow: -3px -3px 12px rgba(212,168,67,0.3);
}

.about-image-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
  box-shadow: 3px 3px 12px rgba(212,168,67,0.3);
}

.about-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,7,0.7) 100%);
  pointer-events: none;
}

.about-badge-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--black-card), var(--navy-card));
  border: 1px solid rgba(212,168,67,0.3);
  padding: 20px 24px;
  text-align: center;
  z-index: 3;
  min-width: 140px;
  box-shadow: var(--shadow-card), 0 0 30px var(--gold-glow-sm);
}

.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  text-shadow: 0 0 24px rgba(212,168,67,0.4);
}

.about-badge-float .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: block;
  margin-top: 4px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.stat-item {
  padding: 22px 20px;
  border: 1px solid rgba(212,168,67,0.12);
  background: rgba(212,168,67,0.03);
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--t-mid) var(--ease);
}

.stat-item:hover::before { width: 100%; }
.stat-item:hover { border-color: rgba(212,168,67,0.3); background: rgba(212,168,67,0.06); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(212,168,67,0.3);
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

.about-text .section-body { max-width: 100%; margin-bottom: 1.2rem; }

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

.about-feature-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
}

/* ===========================
   VENUES
=========================== */
.venues {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 28, 46, 0.6) 0%, transparent 60%),
    var(--black);
}

.venues-header { text-align: center; margin-bottom: 72px; }
.venues-header .section-body { margin: 0 auto; }

/* Tabs */
.venue-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  border: 1px solid rgba(212,168,67,0.2);
  width: fit-content;
  margin-left: auto; margin-right: auto;
}

.venue-tab {
  padding: 14px 36px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--t-mid) var(--ease);
  border: none;
  background: transparent;
  border-right: 1px solid rgba(212,168,67,0.2);
  position: relative;
}

.venue-tab:last-child { border-right: none; }

.venue-tab.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}

.venue-tab:not(.active):hover {
  color: var(--gold-light);
  background: rgba(212,168,67,0.06);
}

/* Indoor card */
.venue-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(212,168,67,0.12);
  overflow: hidden;
  animation: float-up 0.5s var(--ease-out) forwards;
  box-shadow: var(--shadow-deep);
}

.venue-card.active { display: grid; }

.venue-card-image {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.venue-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.venue-card:hover .venue-card-image img { transform: scale(1.05); }

.venue-card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(12,10,7,0.65) 100%);
}

.venue-card-placeholder {
  width: 100%; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-warm), var(--black-mid));
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(212,168,67,0.35);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.venue-card-body {
  padding: 60px 56px;
  background: linear-gradient(160deg, var(--black-card), var(--black-mid));
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(212,168,67,0.08);
}

.venue-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.63rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.venue-type-badge::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
}

.venue-card-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white-warm);
  margin-bottom: 1rem;
}

.venue-card-desc {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.venue-includes { margin-bottom: 2.5rem; }

.venue-includes-title {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.venue-includes-list { display: flex; flex-direction: column; gap: 10px; }

.venue-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.venue-includes-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.56rem;
  margin-top: 5px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--gold));
}

/* ===========================
   OUTDOOR TIERS — Dramatic
=========================== */
.outdoor-tiers { display: none; animation: float-up 0.5s var(--ease-out) forwards; }
.outdoor-tiers.active { display: block; }

.tiers-intro {
  text-align: center;
  margin-bottom: 48px;
}

.tiers-intro p {
  font-size: 0.92rem;
  color: var(--grey-light);
  max-width: 480px;
  margin: 0 auto;
}

/* Tier chain diagram */
.tier-chain-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.tcd-item {
  text-align: center;
  padding: 18px 32px;
  border: 1px solid rgba(212,168,67,0.2);
  transition: all var(--t-mid) var(--ease);
  cursor: default;
}

.tcd-item.active,
.tcd-item:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
}

.tcd-item span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.tcd-item small {
  font-size: 0.62rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

.tcd-arrow {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  padding: 0 12px;
}

/* Tier grid */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.tier-card {
  background: linear-gradient(160deg, var(--black-card) 0%, var(--black-mid) 100%);
  padding: 52px 44px;
  position: relative;
  transition: all var(--t-mid) var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,168,67,0.08);
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--t-mid) var(--ease);
}

.tier-card:hover::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.tier-card.featured {
  background: linear-gradient(160deg, var(--navy-card) 0%, rgba(15,28,46,0.9) 100%);
  border-color: rgba(212,168,67,0.25);
  box-shadow: 0 0 60px rgba(212,168,67,0.08);
}

.tier-card.featured::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.tier-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.35);
  padding: 5px 14px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.tier-card.featured .tier-badge {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 0 16px rgba(212,168,67,0.3);
}

.tier-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
}

.tier-tagline {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tier-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,168,67,0.2), transparent);
  margin-bottom: 1.5rem;
}

.tier-includes-prev {
  font-size: 0.72rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 1.2rem;
  padding: 8px 12px;
  background: rgba(212,168,67,0.04);
  border-left: 2px solid var(--gold-dark);
}

.tier-includes-prev strong { color: var(--gold-light); font-style: normal; }

.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--grey-light);
}

.tier-feature-icon {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--gold));
}

.tier-feature.inherited {
  color: var(--grey);
  font-size: 0.78rem;
}

.tier-feature.inherited .tier-feature-icon { color: rgba(212,168,67,0.35); filter: none; }

/* ===========================
   EVENT TYPES
=========================== */
.events-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(15,28,46,0.5) 0%, transparent 60%),
    var(--black-warm);
}

.events-header { text-align: center; margin-bottom: 64px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.event-card {
  background: linear-gradient(160deg, var(--black-card), var(--black-mid));
  padding: 52px 40px;
  text-align: center;
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.06);
}

.event-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, transparent, rgba(212,168,67,0.04));
  transition: height var(--t-mid) var(--ease);
}

.event-card:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.event-card:hover::after { height: 100%; }

.event-icon { font-size: 2.2rem; margin-bottom: 1.5rem; display: block; }

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white-warm);
  margin-bottom: 0.75rem;
}

.event-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.85;
}

/* ===========================
   GALLERY
=========================== */
.gallery { background: var(--black-mid); }
.gallery-header { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 290px);
  gap: 3px;
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-item {
  overflow: hidden;
  background: var(--navy-warm);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(12,10,7,0.5);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.5);
  padding: 9px 22px;
  backdrop-filter: blur(4px);
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(212,168,67,0.25);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy-warm), var(--black-card));
}

/* ===========================
   BOOKING
=========================== */
.booking {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(15,28,46,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(12,10,7,1) 0%, transparent 60%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.booking-header { text-align: center; margin-bottom: 56px; }
.booking-header .section-body { margin: 0 auto; text-align: center; }

.booking-slots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.slot-pill {
  padding: 10px 24px;
  border: 1px solid rgba(212,168,67,0.25);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  background: rgba(212,168,67,0.04);
  transition: all var(--t-mid) var(--ease);
}

.slot-pill:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow-sm);
}

.booking-widget {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(212,168,67,0.15);
  background: rgba(255,255,255,0.02);
  padding: 60px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep), 0 0 80px rgba(212,168,67,0.05);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(15,28,46,0.8) 0%, transparent 55%),
    var(--black-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-body { max-width: 100%; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-item-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(212,168,67,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
  background: rgba(212,168,67,0.04);
  transition: all var(--t-mid) var(--ease);
}

.contact-item:hover .contact-item-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-sm);
}

.contact-item-text strong {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item-text span { font-size: 0.9rem; color: var(--grey-light); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.18);
  color: var(--white-warm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--t-mid) var(--ease);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,168,67,0.04);
  box-shadow: 0 0 20px var(--gold-glow-sm);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); color: var(--white); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  border-top: 1px solid rgba(212,168,67,0.1);
  padding: 72px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 32px;
}

.footer-brand img,
.footer-brand .custom-logo { height: 70px !important; width: auto !important; margin-bottom: 1.5rem; }

.footer-brand p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.85;
  max-width: 100%;
}
.footer-social { display: flex; gap: 12px; margin-top: 1.5rem; }

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: all var(--t-mid) var(--ease);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212,168,67,0.08);
  box-shadow: 0 0 16px var(--gold-glow-sm);
}

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: Roboto;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 14px;
  color: #fff !important;
  transition: color var(--t-fast) var(--ease);
  font-family: Roboto !important;
}

.footer-col ul li a:hover { font-size: 14px;
  color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.76rem; color: #fff;text-align:center }
.footer-bottom a { color: var(--gold); }


/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ===========================
   MOBILE NAV OVERLAY
=========================== */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(12,10,7,0.98);
  z-index: 99998; /* just below site-nav */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  backdrop-filter: blur(20px);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white-warm);
  transition: color var(--t-fast) var(--ease);
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.6rem;
  color: var(--grey);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--t-fast);
}

.mobile-nav-close:hover { color: var(--gold); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { order: -1; }
  .about-image-frame { aspect-ratio: 16/9; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tiers-grid { grid-template-columns: 1fr; gap: 2px; }
  .venue-card { grid-template-columns: 1fr; }
  .venue-card-image { min-height: 340px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 220px; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-widget { padding: 32px 24px; }
  .venue-tabs { flex-wrap: wrap; width: 100%; }
  .venue-tab { flex: 1; text-align: center; padding: 12px 16px; }
  .tier-chain-diagram { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .tcd-arrow { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===========================
   WP ADMIN BAR
=========================== */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-nav { top: 46px; } }

/* ===========================
   AMELIA OVERRIDES
=========================== */
#amelia-app-booking,
.amelia-container {
  --am-c-primary: #D4A843 !important;
  --am-c-primary-op: rgba(212, 168, 67, 0.18) !important;
  font-family: var(--font-body) !important;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===========================
   FRONT PAGE — de- prefixed
   (no conflicts with Elementor)
=========================== */

/* Shared */
.de-container { width: 90%; max-width: 1300px; margin: 0 auto; }
.de-section { padding: 120px 0; }
.de-eyebrow { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.de-gold-line { width: 56px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 2rem; }
.de-gold-line-center { margin-left: auto; margin-right: auto; }
.de-heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; color: var(--white-warm); margin-bottom: 1.5rem; line-height: 1.1; }
.de-heading em { color: var(--gold-light); font-style: italic; text-shadow: 0 0 40px var(--gold-glow); }
.de-body { font-size: 1rem; color: var(--grey-light); line-height: 1.95; margin-bottom: 1rem; }
.de-body-center { max-width: 560px; margin-left: auto; margin-right: auto; text-align: center; }
.de-section-header { text-align: center; margin-bottom: 72px; }
.de-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 6px var(--gold); flex-shrink: 0; display: inline-block; }

/* Buttons */
.de-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; padding: 17px 38px; cursor: pointer; border: none; outline: none; text-decoration: none; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.de-btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); color: var(--black); box-shadow: 0 4px 24px rgba(212,168,67,0.3); }
.de-btn-gold:hover { box-shadow: 0 6px 40px rgba(212,168,67,0.55); transform: translateY(-3px); color: var(--black); }
.de-btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(212,168,67,0.35); }
.de-btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(212,168,67,0.07); }
.de-btn-full { width: 100%; justify-content: center; }

/* Scroll reveal */
.de-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0,0,0.2,1), transform 0.9s cubic-bezier(0,0,0.2,1); }
.de-reveal.de-revealed { opacity: 1; transform: translateY(0); }
.de-reveal-d2 { transition-delay: 0.2s; }

/* ── HERO ── */
.de-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: radial-gradient(ellipse 80% 80% at 65% 45%, rgba(212,168,67,0.10) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 20% 80%, rgba(15,28,46,0.9) 0%, transparent 60%), linear-gradient(160deg, #0C0A07 0%, #0F1520 45%, #180E04 100%); }

/* particles */
.de-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.de-particles--global { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 99; overflow: hidden; transition: opacity 0.6s ease; pointer-events: none; }
.de-particle { position: absolute; border-radius: 50%; background: var(--gold); opacity: 0; animation: de-float linear infinite; }
@keyframes de-float { 0% { transform: translateY(110vh) scale(0.5); opacity: 0; } 8% { opacity: 0.8; } 85% { opacity: 0.2; } 100% { transform: translateY(-80px) scale(1.2); opacity: 0; } }

/* orb glow */
.de-orb { position: absolute; top: 40%; left: 55%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(212,168,67,0.22) 0%, rgba(212,168,67,0.10) 30%, rgba(212,168,67,0.03) 60%, transparent 75%); transform: translate(-50%,-50%); z-index: 2; pointer-events: none; animation: de-orb-pulse 6s ease-in-out infinite; }
.de-orb--global { position: fixed; top: 40%; left: 55%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(212,168,67,0.22) 0%, rgba(212,168,67,0.10) 30%, rgba(212,168,67,0.03) 60%, transparent 75%); transform: translate(-50%,-50%); z-index: 98; pointer-events: none; animation: de-orb-pulse 6s ease-in-out infinite; transition: opacity 0.6s ease; }
@keyframes de-orb-pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.8} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:1} }

/* content */
.de-hero-content { position: relative; z-index: 3; width: 90%; max-width: 1300px; margin: 0 auto; }

.de-badge { display: inline-flex; align-items: center; gap: 12px; padding: 9px 22px; border: 1px solid rgba(212,168,67,0.4); background: rgba(212,168,67,0.06); font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 2rem; opacity: 0; transform: translateY(24px); animation: de-fadein 0.9s 0.2s forwards; }
.de-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 8px var(--gold); animation: de-blink 2s ease-in-out infinite; }
@keyframes de-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.de-hero-title { font-family: var(--font-heading); font-size: clamp(4rem,10vw,9.5rem); font-weight: 300; line-height: 0.92; letter-spacing: -0.01em; margin-bottom: 2rem; opacity: 0; transform: translateY(36px); animation: de-fadein 1s 0.4s forwards; }
.de-line1 { color: var(--white-warm); display: block; }
.de-line2 { color: var(--gold-light); font-style: italic; display: block; text-shadow: 0 0 60px rgba(212,168,67,0.3); }
.de-line3 { color: var(--cream); display: block; font-size: 0.52em; letter-spacing: 0.06em; margin-top: 0.4em; font-style: normal; font-family: var(--font-body); font-weight: 300; }

.de-hero-sub { font-size: clamp(1rem,1.8vw,1.15rem); color: var(--grey-light); max-width: 480px; line-height: 1.9; margin-bottom: 2.5rem; opacity: 0; transform: translateY(24px); animation: de-fadein 1s 0.6s forwards; }

.de-hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: de-fadein 1s 0.8s forwards; }

.de-urgency { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.7rem; color: var(--champagne); letter-spacing: 0.08em; margin-top: 2rem; opacity: 0; animation: de-fadein 1s 1.1s forwards; }
.de-urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: #E84040; box-shadow: 0 0 8px rgba(232,64,64,0.7); animation: de-blink 1.5s ease-in-out infinite; flex-shrink: 0; }

.de-scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: de-fadein 1s 1.4s forwards; }
.de-scroll-hint span { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--grey); }
.de-scroll-line { width: 1px; height: 56px; background: linear-gradient(180deg, var(--gold), transparent); animation: de-scroll-pulse 2.5s ease-in-out infinite; }
@keyframes de-scroll-pulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.4);opacity:0.3} }

@keyframes de-fadein { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ── PROOF BAR ── */
.de-proof-bar { background: var(--black-warm); border-top: 1px solid rgba(212,168,67,0.12); border-bottom: 1px solid rgba(212,168,67,0.12); padding: 18px 0; overflow: hidden; }
.de-proof-track { display: flex; width: max-content; animation: de-marquee 32s linear infinite; }
@keyframes de-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.de-proof-item { padding: 0 48px; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-mid); white-space: nowrap; }

/* ── ABOUT ── */
.de-about { background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(15,28,46,0.8) 0%, transparent 60%), var(--black-warm); position: relative; overflow: hidden; }
.de-watermark { position: absolute; font-family: var(--font-heading); font-size: 18vw; font-weight: 700; color: rgba(212,168,67,0.025); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; user-select: none; }
.de-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }

.de-img-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid rgba(212,168,67,0.15); }
.de-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.de-img-frame::before, .de-img-frame::after { content: ''; position: absolute; width: 40px; height: 40px; border-color: var(--gold); border-style: solid; z-index: 2; }
.de-img-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; box-shadow: -3px -3px 12px rgba(212,168,67,0.3); }
.de-img-frame::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; box-shadow: 3px 3px 12px rgba(212,168,67,0.3); }
.de-img-placeholder { width: 100%; height: 100%; min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-warm), var(--black-card)); color: rgba(212,168,67,0.35); font-family: var(--font-heading); letter-spacing: 0.2em; text-transform: uppercase; text-align: center; gap: 8px; }
.de-img-placeholder small { font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.6; }

.de-float-badge { position: absolute; bottom: -24px; right: -24px; background: linear-gradient(135deg, var(--black-card), var(--navy-card)); border: 1px solid rgba(212,168,67,0.3); padding: 20px 24px; text-align: center; z-index: 3; min-width: 140px; box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow-sm); }
.de-float-num { font-family: var(--font-heading); font-size: 2.8rem; color: var(--gold-light); line-height: 1; display: block; text-shadow: 0 0 24px rgba(212,168,67,0.4); }
.de-float-lbl { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-mid); display: block; margin-top: 4px; }

.de-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.de-stat { padding: 22px 20px; border: 1px solid rgba(212,168,67,0.12); background: rgba(212,168,67,0.03); transition: all 0.4s; }
.de-stat:hover { border-color: rgba(212,168,67,0.3); background: rgba(212,168,67,0.06); }
.de-stat-n { font-family: var(--font-heading); font-size: 2.6rem; color: var(--gold-light); line-height: 1; display: block; text-shadow: 0 0 20px rgba(212,168,67,0.3); }
.de-stat-l { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }

.de-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 2rem; }
.de-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--grey-light); }

/* ── VENUES ── */
.de-venues { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15,28,46,0.6) 0%, transparent 60%), var(--black); padding-bottom: 160px; }

.de-tabs { display: flex; justify-content: center; border: 1px solid rgba(212,168,67,0.2); width: fit-content; margin: 0 auto 56px; }
.de-tab { padding: 14px 36px; font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); cursor: pointer; border: none; background: transparent; border-right: 1px solid rgba(212,168,67,0.2); transition: all 0.4s; }
.de-tab:last-child { border-right: none; }
.de-tab-active { background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important; color: var(--black) !important; }
.de-tab:not(.de-tab-active):hover { color: var(--gold-light); background: rgba(212,168,67,0.06); }

.de-venue-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(212,168,67,0.12); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); animation: de-fadein 0.5s forwards; }
.de-venue-img { position: relative; overflow: hidden; min-height: 540px; }
.de-venue-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.de-venue-card:hover .de-venue-img img { transform: scale(1.05); }
.de-venue-img-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 40%, rgba(12,10,7,0.65) 100%); }
.de-venue-body { padding: 60px 56px; background: linear-gradient(160deg, var(--black-card), var(--black-mid)); display: flex; flex-direction: column; justify-content: center; }
.de-venue-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.63rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.de-venue-tag::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.de-venue-title { font-family: var(--font-heading); font-size: clamp(2rem,3vw,2.8rem); color: var(--white-warm); margin-bottom: 1rem; font-weight: 300; }
.de-includes { margin-bottom: 2.5rem; }
.de-includes-label { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; }
.de-includes-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.de-includes-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--grey-light); }
.de-includes-list li::before { content: '✦'; color: var(--gold); font-size: 0.56rem; margin-top: 5px; flex-shrink: 0; filter: drop-shadow(0 0 4px var(--gold)); }

.de-tiers-intro { text-align: center; font-size: 0.92rem; color: var(--grey-light); max-width: 480px; margin: 0 auto 48px; line-height: 1.85; }
.de-tier-diagram { display: flex; justify-content: center; align-items: center; margin-bottom: 56px; flex-wrap: wrap; gap: 8px; }
.de-tcd { text-align: center; padding: 18px 32px; border: 1px solid rgba(212,168,67,0.2); font-family: var(--font-body); }
.de-tcd span { display: block; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.de-tcd small { font-size: 0.62rem; color: var(--grey); }
.de-tcd-active { border-color: var(--gold); background: rgba(212,168,67,0.06); }
.de-tcd-arrow { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--gold-dark); padding: 0 8px; }

.de-tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.de-tier-img { width: calc(100% + 88px); margin: -52px -44px 32px; height: 200px; overflow: hidden; }
.de-tier-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.de-tier-card:hover .de-tier-img img { transform: scale(1.05); }
.de-tier-card { background: linear-gradient(160deg, var(--black-card), var(--black-mid)); padding: 52px 44px; border: 1px solid rgba(212,168,67,0.08); display: flex; flex-direction: column; position: relative; transition: all 0.4s; overflow: hidden; }
.de-tier-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.4s; }
.de-tier-card:hover::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.de-tier-featured { background: linear-gradient(160deg, var(--navy-card), rgba(15,28,46,0.9)) !important; border-color: rgba(212,168,67,0.25) !important; box-shadow: 0 0 60px rgba(212,168,67,0.08); }
.de-tier-featured::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)) !important; }
.de-tier-badge { display: inline-block; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,168,67,0.35); padding: 5px 14px; margin-bottom: 1.5rem; width: fit-content; }
.de-tier-badge-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black) !important; border-color: transparent !important; box-shadow: 0 0 16px rgba(212,168,67,0.3); }
.de-tier-title { font-family: var(--font-heading); font-size: 2rem; color: var(--white-warm); margin-bottom: 0.5rem; font-weight: 300; }
.de-tier-sub { font-size: 0.82rem; color: var(--grey); margin-bottom: 2rem; line-height: 1.7; }
.de-tier-divider { height: 1px; background: linear-gradient(90deg, rgba(212,168,67,0.2), transparent); margin-bottom: 1.5rem; }
.de-tier-inherits { font-size: 0.72rem; color: var(--grey); font-style: italic; margin-bottom: 1.2rem; padding: 8px 12px; background: rgba(212,168,67,0.04); border-left: 2px solid var(--gold-dark); }
.de-tier-inherits strong { color: var(--gold-light); font-style: normal; }
.de-tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; flex: 1; }
.de-tier-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.84rem; color: var(--grey-light); }
.de-tier-features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 5px; flex-shrink: 0; filter: drop-shadow(0 0 4px var(--gold)); }
.de-tier-features li.de-inherited { color: var(--grey); font-size: 0.78rem; }
.de-tier-features li.de-inherited::before { color: rgba(212,168,67,0.3); filter: none; }

/* ── EVENTS ── */
.de-events { background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(15,28,46,0.5) 0%, transparent 60%), var(--black-warm); }
.de-events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.de-event-card { background: linear-gradient(160deg, var(--black-card), var(--black-mid)); padding: 52px 40px; text-align: center; border: 1px solid rgba(212,168,67,0.06); transition: all 0.4s; }
.de-event-card:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.de-event-icon { font-size: 2.2rem; display: block; margin-bottom: 1.5rem; }
.de-event-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white-warm); margin-bottom: 0.75rem; font-weight: 300; }
.de-event-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.85; }

/* ── GALLERY ── */
.de-gallery { background: var(--black-mid); }
.de-gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,290px); gap: 3px; margin-top: 56px; }
.de-gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.de-gallery-item:nth-child(2) { grid-column: span 4; }
.de-gallery-item:nth-child(3) { grid-column: span 3; }
.de-gallery-item:nth-child(4) { grid-column: span 3; }
.de-gallery-item:nth-child(5) { grid-column: span 4; }
.de-gallery-item { overflow: hidden; background: var(--navy-warm); position: relative; cursor: pointer; }
.de-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.de-gallery-item:hover img { transform: scale(1.1); }
.de-gallery-overlay { position: absolute; inset: 0; background: rgba(12,10,7,0.5); opacity: 0; transition: opacity 0.4s; display: flex; align-items: center; justify-content: center; }
.de-gallery-item:hover .de-gallery-overlay { opacity: 1; }
.de-gallery-overlay span { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(212,168,67,0.5); padding: 9px 22px; }

/* ── BOOKING ── */
.de-booking { background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(15,28,46,0.9) 0%, transparent 60%), var(--navy); position: relative; }
.de-slots { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.de-slot { padding: 10px 24px; border: 1px solid rgba(212,168,67,0.25); font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--gold-light); background: rgba(212,168,67,0.04); }
.de-booking-widget { max-width: 960px; margin: 0 auto; border: 1px solid rgba(212,168,67,0.15); background: rgba(255,255,255,0.02); padding: 60px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }

/* ── CONTACT ── */
.de-contact { background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(15,28,46,0.8) 0%, transparent 55%), var(--black-warm); }
.de-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.de-contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 2.5rem; }
.de-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.de-contact-icon { width: 42px; height: 42px; border: 1px solid rgba(212,168,67,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; background: rgba(212,168,67,0.04); font-size: 0.9rem; }
.de-contact-item div strong { display: block; font-family: var(--font-body); font-size: 0.63rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.de-contact-item div span { font-size: 0.9rem; color: var(--grey-light); }
.de-form { display: flex; flex-direction: column; gap: 20px; }
.de-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.de-form-group { display: flex; flex-direction: column; gap: 8px; }
.de-form-group label { font-family: var(--font-body); font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey); }
.de-form-group input, .de-form-group select, .de-form-group textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,168,67,0.18); color: var(--white-warm); padding: 14px 18px; font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: all 0.4s; -webkit-appearance: none; }
.de-form-group input:focus, .de-form-group select:focus, .de-form-group textarea:focus { border-color: var(--gold); background: rgba(212,168,67,0.04); box-shadow: 0 0 20px var(--gold-glow-sm); }
.de-form-group textarea { resize: vertical; min-height: 120px; }
.de-form-group select option { background: var(--navy); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .de-about-grid { grid-template-columns: 1fr; gap: 60px; }
  .de-about-visual { order: -1; }
  .de-img-frame { aspect-ratio: 16/9; }
  .de-venue-card { grid-template-columns: 1fr; }
  .de-venue-img { min-height: 340px; }
  .de-tiers-grid { grid-template-columns: 1fr; }
  .de-events-grid { grid-template-columns: 1fr 1fr; }
  .de-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .de-section { padding: 80px 0; }
  .de-features { grid-template-columns: 1fr; }
  .de-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .de-gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 220px; }
  .de-events-grid { grid-template-columns: 1fr; }
  .de-form-row { grid-template-columns: 1fr; }
  .de-booking-widget { padding: 32px 20px; }
  .de-hero-actions { flex-direction: column; align-items: flex-start; }
  .de-tcd-arrow { display: none; }
}
