/* =========================================================
   THE HEAVEN GARDEN LAWNS — Stylesheet
   Design system: deep burgundy + plum + champagne gold on warm ivory
   ========================================================= */

:root{
  --burgundy: #6d1a34;
  --burgundy-dark: #4c1024;
  --plum: #3a1730;
  --plum-dark: #24101f;
  --gold: #b8935a;
  --gold-light: #d9bd8c;
  --ivory: #faf6ee;
  --ivory-deep: #f2ead9;
  --charcoal: #2a211d;
  --charcoal-soft: #55483f;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Jost', 'Inter', sans-serif;

  --container: 1200px;
  --radius: 3px;
  --shadow-soft: 0 10px 40px rgba(42,33,29,0.10);
  --shadow-hover: 0 18px 50px rgba(42,33,29,0.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 86px; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-dark);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.2px;
}
h2{ font-size: clamp(2.1rem, 4vw, 3rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); }
p{ margin:0; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section{ padding: 100px 0; }
.section-alt{ background: var(--ivory-deep); }
.section-dark{ background: linear-gradient(160deg, var(--plum-dark), var(--burgundy-dark)); color: var(--ivory); }
.section-dark h2, .section-dark h3{ color: var(--ivory); }

.eyebrow{
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  display:block;
}
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--charcoal-soft); margin-top: 16px; font-size: 1.05rem; }
.section-dark .section-head p{ color: rgba(250,246,238,0.75); }

.rule{
  width: 56px; height: 2px; background: var(--gold);
  margin: 18px 0;
}
.center .rule{ margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-primary{ background: var(--gold); color: var(--plum-dark); }
.btn-primary:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline{ border-color: rgba(250,246,238,0.5); color: var(--ivory); }
.btn-outline:hover{ background: rgba(250,246,238,0.12); transform: translateY(-2px); }
.btn-ghost{ border-color: var(--plum); color: var(--plum-dark); }
.btn-ghost:hover{ background: var(--plum); color: var(--ivory); transform: translateY(-2px); }
.btn-sm{ padding: 11px 22px; font-size: 0.85rem; }
.btn-wide{ width:100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* =============== NAVIGATION =============== */
.navbar{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  background: rgba(250,246,238,0.0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s;
  padding: 22px 0;
}
.navbar.scrolled{
  background: rgba(250,246,238,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(42,33,29,0.08);
  padding: 12px 0;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-mark{ font-family: var(--font-display); font-size: 1.5rem; font-weight:600; color: var(--ivory); transition:color .4s; }
.navbar.scrolled .brand-mark{ color: var(--plum-dark); }
.brand-sub{ font-size: 0.62rem; letter-spacing:0.18em; color: var(--gold-light); margin-top:2px; }
.navbar.scrolled .brand-sub{ color: var(--gold); }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size: 0.92rem; color: var(--ivory); position:relative; padding: 4px 0;
  transition: color .3s;
}
.navbar.scrolled .nav-links a{ color: var(--charcoal); }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:16px; }

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; z-index:520; }
.hamburger span{ width:24px; height:2px; background: var(--ivory); transition: all .3s; }
.navbar.scrolled .hamburger span{ background: var(--charcoal); }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset:0; background: var(--plum-dark); z-index: 510;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px;
  transform: translateY(-100%); transition: transform .45s var(--ease);
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{ font-family: var(--font-display); font-size: 1.6rem; color: var(--ivory); }
.mobile-nav .btn{ margin-top:10px; }

/* =============== HERO =============== */
.hero{
  position: relative; min-height: 100svh; display:flex; align-items:center;
  color: var(--ivory); overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center 35%; }
.hero-media::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(36,16,31,0.72) 0%, rgba(36,16,31,0.55) 45%, rgba(36,16,31,0.85) 100%);
}
.hero-content{ position:relative; z-index:2; padding-top: 90px; max-width: 760px; }
.hero-content .eyebrow{ color: var(--gold-light); font-size:0.85rem; }
.hero-content h1{
  color: var(--ivory); font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight:600;
}
.hero-tagline{
  font-family: var(--font-display); font-style: italic; color: var(--gold-light);
  font-size: clamp(1.2rem, 2vw, 1.6rem); margin-top:14px;
}
.hero-desc{ margin-top:22px; font-size:1.08rem; color: rgba(250,246,238,0.85); max-width: 560px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:38px; }
.hero-scroll{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:2;
  color: rgba(250,246,238,0.75); font-size:0.75rem; letter-spacing:0.12em;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.hero-scroll .line{ width:1px; height:34px; background: rgba(250,246,238,0.5); overflow:hidden; }
.hero-scroll .line::after{
  content:''; display:block; width:100%; height:40%; background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{ 0%{ transform: translateY(-100%);} 100%{ transform: translateY(250%);} }

/* =============== STATS =============== */
.stats-strip{ background: var(--plum-dark); color: var(--ivory); padding: 64px 0; }
.stats-grid{
  display:grid; grid-template-columns: repeat(6,1fr); gap:20px; text-align:center;
}
.stat-num{ font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.6rem); color: var(--gold-light); font-weight:600; }
.stat-label{ font-size:0.78rem; letter-spacing:0.04em; color: rgba(250,246,238,0.75); margin-top:6px; }

/* =============== VENUE / ABOUT =============== */
.venue-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:70px; align-items:center; }
.venue-copy p{ color: var(--charcoal-soft); margin-top:18px; }
.venue-media{ position:relative; }
.venue-media img{ border-radius: var(--radius); box-shadow: var(--shadow-soft); width:100%; height: 520px; object-fit:cover; }
.venue-media .accent-frame{
  position:absolute; top:22px; left:-22px; right:22px; bottom:-22px;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index:-1;
}
.spec-list{ margin-top:30px; display:grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.spec-list li{ display:flex; justify-content:space-between; border-bottom:1px solid rgba(42,33,29,0.12); padding-bottom:10px; font-size:0.95rem; }
.spec-list li b{ color: var(--plum-dark); font-weight:600; }

.venue-split{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top:70px; }
.venue-card{ position:relative; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); }
.venue-card img{ height:280px; width:100%; object-fit:cover; transition: transform .6s var(--ease); }
.venue-card:hover img{ transform: scale(1.06); }
.venue-card-label{
  position:absolute; left:0; right:0; bottom:0; padding: 20px;
  background: linear-gradient(0deg, rgba(36,16,31,0.85), transparent);
  color: var(--ivory);
}
.venue-card-label h4{ font-family: var(--font-display); font-size:1.15rem; color: var(--ivory); font-weight:600; }
.venue-card-label span{ font-size:0.8rem; color: var(--gold-light); }

/* =============== EVENTS =============== */
.events-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.event-card{
  background: var(--white); border: 1px solid rgba(42,33,29,0.08); border-radius: var(--radius);
  padding: 30px 24px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.event-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.event-icon{ width:42px; height:42px; color: var(--burgundy); margin-bottom:18px; }
.event-icon svg{ width:100%; height:100%; }
.event-card h4{ font-family: var(--font-display); font-size:1.15rem; font-weight:600; color: var(--plum-dark); }

/* =============== WHY CHOOSE US =============== */
.why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.why-card{
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  opacity:0; transform: translateY(24px);
}
.why-card.in-view{ opacity:1; transform: translateY(0); }
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon{ width:36px; height:36px; color: var(--gold); margin-bottom:16px; }
.why-icon svg{ width:100%; height:100%; }
.why-card h4{ font-size:1.05rem; font-family: var(--font-display); font-weight:600; color: var(--plum-dark); margin-bottom:8px; }
.why-card p{ font-size:0.92rem; color: var(--charcoal-soft); }

/* =============== PRICING =============== */
.pricing-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 30px; max-width: 860px; margin: 0 auto; }
.price-card{
  background: var(--white); border-radius: var(--radius); padding: 44px 36px; text-align:center;
  box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold);
}
.price-card.featured{ background: linear-gradient(160deg, var(--plum-dark), var(--burgundy-dark)); color: var(--ivory); }
.price-card.featured h3, .price-card.featured .price-tag{ color: var(--ivory); }
.price-tag{ font-family: var(--font-display); font-size: 2.6rem; color: var(--plum-dark); margin: 14px 0 4px; font-weight:600; }
.price-card .duration{ font-size:0.85rem; color: var(--gold); letter-spacing:0.05em; }
.price-card.featured .duration{ color: var(--gold-light); }
.price-card ul{ margin: 24px 0 0; text-align:left; display:flex; flex-direction:column; gap:10px; font-size:0.92rem; }
.price-card.featured ul{ color: rgba(250,246,238,0.85); }
.price-card ul li{ display:flex; gap:10px; align-items:flex-start; }
.custom-package{ text-align:center; margin-top: 50px; }
.custom-package p{ color: var(--charcoal-soft); margin-bottom:20px; }

/* =============== GALLERY =============== */
.gallery-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px;
}
.gallery-item{ position:relative; overflow:hidden; border-radius: var(--radius); cursor:pointer; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{
  content:''; position:absolute; inset:0; background: rgba(36,16,31,0.0); transition: background .35s;
}
.gallery-item:hover::after{ background: rgba(36,16,31,0.18); }
.gallery-item.tall{ grid-row: span 2; }
.gallery-item.wide{ grid-column: span 2; }

.lightbox{
  position: fixed; inset:0; background: rgba(20,10,17,0.94); z-index: 900;
  display:none; align-items:center; justify-content:center; padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 90vw; max-height: 84vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; background: rgba(250,246,238,0.08); border: 1px solid rgba(250,246,238,0.25); color: var(--ivory);
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  transition: background .3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background: rgba(250,246,238,0.2); }
.lightbox-close{ top:26px; right:26px; }
.lightbox-prev{ left:26px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:26px; top:50%; transform:translateY(-50%); }

/* =============== REVIEWS =============== */
.reviews-featured{
  max-width: 780px; margin: 0 auto 60px; text-align:center; position:relative;
}
.quote-mark{ font-family: var(--font-display); font-size: 4.5rem; color: var(--gold); line-height:1; }
.reviews-featured blockquote{ font-family: var(--font-display); font-size: 1.5rem; font-style:italic; color: var(--plum-dark); margin: 10px 0 20px; }
.reviews-featured cite{ font-style:normal; color: var(--gold); font-size:0.9rem; letter-spacing:0.03em; }

.reviews-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card{
  background: var(--white); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-soft); position:relative;
}
.review-card .rq{ font-family: var(--font-display); font-size:2.2rem; color: var(--gold-light); line-height:0.4; display:block; margin-bottom:10px; }
.review-card p{ font-size: 0.95rem; color: var(--charcoal-soft); min-height: 72px; }
.review-foot{ margin-top:16px; display:flex; justify-content:space-between; align-items:baseline; border-top:1px solid rgba(42,33,29,0.08); padding-top:12px; }
.review-foot b{ font-family: var(--font-display); color: var(--plum-dark); font-size:1rem; }
.review-tag{ font-size: 0.72rem; letter-spacing:0.04em; color: var(--gold); text-transform: none; }

.reviews-toggle{ text-align:center; margin-top: 40px; }

/* =============== PRICING/RULES =============== */
.rules-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px 46px; }
.rule-item{ display:flex; gap:14px; padding: 14px 0; border-bottom: 1px solid rgba(250,246,238,0.12); }
.rule-num{ font-family: var(--font-display); color: var(--gold); font-size:1rem; min-width: 26px; }
.rule-item p{ font-size:0.92rem; color: rgba(250,246,238,0.85); }
.timing-strip{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-bottom: 50px; }
.timing-card{ background: rgba(250,246,238,0.06); border:1px solid rgba(250,246,238,0.15); border-radius: var(--radius); padding: 24px; text-align:center; }
.timing-card h4{ color: var(--gold-light); font-size:0.85rem; letter-spacing:0.05em; margin-bottom:10px; }
.timing-card span{ font-family: var(--font-display); font-size:1.3rem; color: var(--ivory); }

/* =============== LOCATION =============== */
.location-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
.location-info p{ color: var(--charcoal-soft); margin: 18px 0 28px; }
.location-pin{ display:flex; gap:14px; align-items:flex-start; margin-bottom: 26px; }
.location-pin svg{ width:26px; height:26px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.map-frame{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); height: 420px; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* =============== ENQUIRY FORM =============== */
.enquiry-wrap{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.enquiry-side p{ color: var(--charcoal-soft); margin-top:16px; }
.enquiry-contacts{ margin-top: 30px; display:flex; flex-direction:column; gap:16px; }
.enquiry-contacts a{ display:flex; align-items:center; gap:12px; font-size:0.95rem; }
.enquiry-contacts svg{ width:20px; height:20px; color: var(--gold); }

.form-card{ background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:0.82rem; letter-spacing:0.02em; color: var(--charcoal-soft); margin-bottom:8px; }
.field input, .field select{
  width:100%; padding: 13px 14px; border: 1px solid rgba(42,33,29,0.18); border-radius: var(--radius);
  background: var(--ivory); font-size: 0.95rem; color: var(--charcoal); transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,90,0.15); outline:none; }
.field .error-msg{ display:none; color: var(--burgundy); font-size:0.78rem; margin-top:6px; }
.field.invalid input, .field.invalid select{ border-color: var(--burgundy); }
.field.invalid .error-msg{ display:block; }
.form-status{ margin-top: 16px; font-size:0.92rem; padding: 14px 16px; border-radius: var(--radius); display:none; }
.form-status.show{ display:block; }
.form-status.success{ background: rgba(45,120,80,0.1); color:#2d5c3f; display:block; }
.form-status.error{ background: rgba(109,26,52,0.08); color: var(--burgundy); display:block; }
.form-status.loading{ background: rgba(184,147,90,0.12); color: var(--gold); display:block; }

/* =============== FINAL CTA =============== */
.final-cta{ text-align:center; }
.final-cta h2{ max-width: 720px; margin: 0 auto; }
.final-cta p{ max-width: 560px; margin: 20px auto 36px; color: rgba(250,246,238,0.8); }
.final-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =============== FOOTER =============== */
.footer{ background: var(--plum-dark); color: rgba(250,246,238,0.8); padding: 70px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(250,246,238,0.1); }
.footer-brand .brand-mark{ color: var(--ivory); font-size:1.6rem; }
.footer-brand p{ margin-top:14px; font-size:0.9rem; max-width: 320px; }
.footer h5{ color: var(--gold-light); font-size:0.82rem; letter-spacing:0.06em; margin-bottom: 18px; }
.footer-links li{ margin-bottom: 10px; font-size:0.9rem; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-contact li{ margin-bottom: 12px; font-size:0.9rem; display:flex; gap:10px; }
.footer-contact svg{ width:17px; height:17px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.footer-bottom{ padding: 22px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:0.8rem; }
.credit-line{ text-align:center; padding: 14px 0 22px; font-size: 0.74rem; color: rgba(250,246,238,0.35); border-top: 1px solid rgba(250,246,238,0.06); }
.credit-line a{ color: rgba(250,246,238,0.45); }
.credit-line a:hover{ color: var(--gold-light); }

/* =============== FLOATING BUTTONS =============== */
.whatsapp-float{
  position: fixed; left: 24px; bottom: 24px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.whatsapp-float svg{ width:28px; height:28px; }
.whatsapp-float::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  border: 2px solid #25D366; animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing{
  0%{ transform: scale(1); opacity:0.7; }
  100%{ transform: scale(1.9); opacity:0; }
}

.ai-widget{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
}
.ai-float{
  position: relative; width:60px; height:60px; border-radius:50%;
  border:none; padding:0; background:transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  animation: aiBreathe 4.2s ease-in-out infinite;
}
.ai-float-img{ position:absolute; inset:0; border-radius:50%; overflow:hidden; border:2px solid var(--gold-light); }
.ai-float-img img{ width:100%; height:100%; object-fit:cover; }
.ai-float::after{
  content:''; position:absolute; inset:-5px; border-radius:50%;
  border: 2px solid var(--gold-light); opacity:0; pointer-events:none;
}
.ai-float.pulse::after{ animation: aiPulseRing 1.3s ease-out; }
@keyframes aiBreathe{
  0%,100%{ box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
  50%{ box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 14px 4px rgba(184,147,90,0.32); }
}
@keyframes aiPulseRing{
  0%{ transform: scale(1); opacity:0.75; }
  100%{ transform: scale(1.4); opacity:0; }
}

.ai-bubble{
  background: var(--white); color: var(--charcoal);
  padding: 12px 34px 12px 16px; border-radius: 14px; border-bottom-right-radius:4px;
  box-shadow: var(--shadow-soft); font-size: 0.85rem; max-width: 230px;
  position:relative; opacity:0; transform: translateY(8px) scale(0.96);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events:none; border: 1px solid rgba(184,147,90,0.25);
}
.ai-bubble.show{ opacity:1; transform: translateY(0) scale(1); pointer-events:all; }
.bubble-close{
  position:absolute; top:6px; right:8px; width:18px; height:18px; border-radius:50%;
  background: transparent; border:none; color: var(--charcoal-soft); font-size:15px; line-height:1;
  display:flex; align-items:center; justify-content:center; padding:0;
}
.bubble-close:hover{ color: var(--burgundy); }

.ai-panel{
  position: fixed; right: 24px; bottom: 96px; z-index: 401;
  width: 340px; max-width: calc(100vw - 48px); max-height: 60vh;
  background: var(--white); border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  display:flex; flex-direction:column; overflow:hidden;
  transform: translateY(16px) scale(0.97); opacity:0; pointer-events:none; transition: all .3s var(--ease);
}
.ai-panel.open{ transform: translateY(0) scale(1); opacity:1; pointer-events:all; }
.ai-head{ background: linear-gradient(140deg, var(--plum-dark), var(--burgundy-dark)); color:var(--ivory); padding: 16px 18px; display:flex; align-items:center; gap:12px; }
.ai-avatar{ width:34px; height:34px; border-radius:50%; overflow:hidden; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ai-avatar img{ width:100%; height:100%; object-fit:cover; }
.ai-head-text b{ font-size:0.9rem; display:block; }
.ai-head-text span{ font-size:0.72rem; color: var(--gold-light); }
.ai-body{ flex:1; overflow-y:auto; padding: 16px; display:flex; flex-direction:column; gap:10px; font-size:0.86rem; }
.ai-msg{ max-width:85%; padding: 10px 14px; border-radius: 12px; line-height:1.5; }
.ai-msg.bot{ background: var(--ivory-deep); color: var(--charcoal); align-self:flex-start; border-bottom-left-radius:2px; }
.ai-msg.user{ background: var(--gold); color: var(--plum-dark); align-self:flex-end; border-bottom-right-radius:2px; }
.ai-suggestions{ display:flex; flex-wrap:wrap; gap:8px; padding: 0 16px 14px; }
.ai-chip{ font-size:0.76rem; padding: 7px 12px; border-radius: 20px; border:1px solid rgba(42,33,29,0.15); color: var(--charcoal-soft); background:var(--white); }
.ai-chip:hover{ border-color: var(--gold); color: var(--burgundy); }

/* Custom cursor spotlight (desktop only) */
.cursor-glow{
  position: fixed; top:0; left:0; width: 260px; height:260px; border-radius:50%;
  pointer-events:none; z-index: 350; opacity:0;
  background: radial-gradient(circle, rgba(184,147,90,0.20) 0%, rgba(184,147,90,0.06) 45%, transparent 72%);
  transform: translate(-50%,-50%); transition: opacity .4s;
  will-change: transform;
}

/* =============== LANGUAGE SWITCHER =============== */
.lang-switch{ position:relative; }
.lang-btn{
  display:flex; align-items:center; gap:5px; background:transparent; border:1px solid rgba(250,246,238,0.35);
  color: var(--ivory); font-size:0.78rem; letter-spacing:0.04em; padding:7px 12px; border-radius:20px;
  transition: border-color .3s, color .3s, background .3s;
}
.navbar.scrolled .lang-btn{ color: var(--charcoal); border-color: rgba(42,33,29,0.2); }
.lang-btn:hover{ border-color: var(--gold); color: var(--gold); }
.lang-btn svg{ transition: transform .25s; }
.lang-btn[aria-expanded="true"] svg{ transform: rotate(180deg); }
.lang-menu{
  position:absolute; top: calc(100% + 8px); right:0; min-width:130px;
  background: var(--white); border-radius:8px; box-shadow: var(--shadow-hover);
  padding:6px; opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:600;
}
.lang-menu.open{ opacity:1; visibility:visible; transform: translateY(0); }
.lang-menu li{
  padding:9px 12px; border-radius:5px; font-size:0.85rem; color: var(--charcoal); cursor:pointer;
  transition: background .2s, color .2s;
}
.lang-menu li:hover{ background: var(--ivory-deep); color: var(--burgundy); }
.lang-menu li.active{ color: var(--gold); font-weight:600; }
.lang-switch-mobile{ margin-top:6px; }
.lang-switch-mobile .lang-btn{ color: var(--ivory); border-color: rgba(250,246,238,0.35); }
.lang-switch-mobile .lang-menu{ right:auto; left:50%; transform: translateX(-50%) translateY(-6px); }
.lang-switch-mobile .lang-menu.open{ transform: translateX(-50%) translateY(0); }

/* =============== OPENING PRELOADER =============== */
.preloader{
  position: fixed; inset:0; z-index: 900;
  background: linear-gradient(160deg, var(--plum-dark), var(--burgundy-dark));
  display:flex; align-items:center; justify-content:center;
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner{ text-align:center; }
.preloader-mark{
  display:flex; align-items:center; justify-content:center;
  width:72px; height:72px; margin:0 auto 18px; border-radius:50%;
  border:1px solid var(--gold); color: var(--gold-light);
  font-family: var(--font-display); font-size:1.9rem;
  opacity:0; transform: scale(0.85);
  animation: preMark 1s ease forwards 0.1s;
}
.preloader-line{ width:0; height:1px; background: var(--gold); margin:0 auto 16px; animation: preLine 0.9s ease forwards 0.5s; }
.preloader-title{
  font-family: var(--font-display); font-style:italic; color: var(--ivory);
  letter-spacing:0.04em; font-size:1rem; opacity:0;
  animation: preFade 0.8s ease forwards 1s;
}
@keyframes preMark{ to{ opacity:1; transform: scale(1); } }
@keyframes preLine{ to{ width:110px; } }
@keyframes preFade{ from{ opacity:0; transform: translateY(6px); } to{ opacity:1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .preloader-mark, .preloader-line, .preloader-title{ animation:none; opacity:1; }
  .preloader-line{ width:110px; }
}

/* Counters init state */
[data-count]{ }

/* Scroll reveal */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px){
  .venue-grid, .location-grid, .enquiry-wrap{ grid-template-columns: 1fr; gap: 40px; }
  .venue-media img{ height: 380px; }
  .venue-split{ grid-template-columns: repeat(2,1fr); }
  .events-grid{ grid-template-columns: repeat(3,1fr); }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .reviews-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .stats-grid{ grid-template-columns: repeat(3,1fr); row-gap: 30px; }
  .rules-wrap{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .hamburger{ display:flex; }
  .section{ padding: 70px 0; }
  .events-grid{ grid-template-columns: repeat(2,1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gallery-item.wide{ grid-column: span 2; }
  .gallery-item.tall{ grid-row: span 1; }
  .venue-split{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .timing-strip{ grid-template-columns: 1fr; }
  .cursor-glow{ display:none; }
  .ai-panel{ right:12px; left:12px; width:auto; bottom: 90px; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
}
