/* ============================================
   BGL.asia — Design System
   Warm, sophisticated, handcrafted feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #FDFAF6;
  --bg-secondary: #F5EFE7;
  --bg-dark: #1A1814;
  --bg-dark-lighter: #2A2620;
  --text-primary: #2C2825;
  --text-secondary: #6B635A;
  --text-light: #9B938A;
  --text-on-dark: #F5EFE7;
  --accent: #C4873A;
  --accent-hover: #A86E2D;
  --accent-light: #F0DFC3;
  --accent-subtle: #FAF3EA;
  --border: #E8E0D6;
  --border-light: #F0EBE3;
  --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 40, 37, 0.12);
  --shadow-xl: 0 16px 64px rgba(44, 40, 37, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --nav-height: 72px;
  --container-max: 1200px;
  --container-wide: 1400px;
  /* Venue accents */
  --loft-accent: #C4873A;
  --anybirdie-accent: #5A8F6B;
  --pixies-accent: #B8848F;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }
p { color: var(--text-secondary); font-size: 1rem; max-width: 65ch; }
.text-accent { color: var(--accent); }

/* --- Layout --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark p { color: rgba(245, 239, 231, 0.7); }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  padding: 0 32px;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.transparent { background: transparent; }
.navbar.solid {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-wide); margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; position: relative;
}
.navbar-logo img {
  height: 36px; width: auto;
  transition: opacity 0.4s ease;
}
/* Two logos: .logo-dark (default/scrolled) and .logo-white (hero/transparent) */
.navbar-logo .logo-dark { opacity: 1; }
.navbar-logo .logo-white { position: absolute; top: 0; left: 0; opacity: 0; }
.navbar.transparent .navbar-logo .logo-dark { opacity: 0; }
.navbar.transparent .navbar-logo .logo-white { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar.transparent .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.transparent .nav-links a:hover { color: #fff; }
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px;
  background: var(--accent); color: #fff;
  font-family: var(--font-accent); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile Menu */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.navbar.transparent .menu-toggle span { background: #fff; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 2rem;
  color: var(--text-primary); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 100px;
  font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(196, 135, 58, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 135, 58, 0.35);
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff; color: var(--text-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-icon { width: 18px; height: 18px; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
}
/* Clickable venue titles */
.space-title-link { text-decoration: none; }
.space-title-link h2 { transition: color 0.3s; }
.space-title-link:hover h2 { color: var(--accent); }
/* Venue button row */
.space-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Hero Section --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 20, 0.3) 0%,
    rgba(26, 24, 20, 0.15) 40%,
    rgba(26, 24, 20, 0.5) 100%
  );
}
/* Hero slideshow crossfade */
.hero-slide {
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 550px; margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sub-page hero (shorter) */
.hero-sub {
  min-height: 50vh;
  padding-top: var(--nav-height);
}
.hero-sub .hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrapper { overflow: hidden; }
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.95rem; margin-bottom: 16px; }
.card-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-accent); font-size: 0.78rem; font-weight: 500;
  color: var(--text-light); letter-spacing: 0.02em;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* --- Feature Strip --- */
.feature-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 56px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  text-align: left;
}
.feature-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-divider {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
}
.feature-item h3 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; margin: 0; color: var(--text-light); line-height: 1.5; }

/* --- Space Showcase (Homepage) --- */
.space-showcase { display: flex; flex-direction: column; gap: 80px; }
.space-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.space-block.reverse { direction: rtl; }
.space-block.reverse > * { direction: ltr; }
.space-img-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
.space-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.space-img-wrapper:hover img { transform: scale(1.05); }
.space-info h4 { margin-bottom: 8px; }
.space-info h2 { margin-bottom: 16px; }
.space-info p { margin-bottom: 12px; }
.space-info .space-stats {
  display: flex; gap: 24px; margin: 20px 0 28px;
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 500;
  color: var(--text-light);
}
.space-info .space-stats span { display: flex; align-items: center; gap: 6px; }

/* --- Pricing Table --- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px;
}
.price-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 24px; text-align: center;
  border: 1.5px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.price-card h4 { margin-bottom: 12px; font-size: 0.75rem; }
.price-amount { font-family: var(--font-heading); font-size: 2rem; color: var(--accent); }
.price-unit { font-size: 0.85rem; color: var(--text-light); }

/* --- Amenity Grid --- */
.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.amenity-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.amenity-item:hover { border-color: var(--accent-light); box-shadow: var(--shadow-sm); }
.amenity-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--accent-subtle); font-size: 0.8rem;
  font-family: var(--font-accent); font-weight: 500;
  color: var(--text-secondary);
}
.amenity-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

/* --- Logo Bar (Social Proof) --- */
.logo-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; padding: 40px 0;
}
.logo-bar img {
  height: 32px; opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-bar img:hover { opacity: 1; filter: grayscale(0%); }

/* Featured badges */
.featured-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
}
.featured-badge:hover {
  background: var(--accent-subtle);
  transform: translateY(-2px);
}
.featured-badge img {
  filter: grayscale(40%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}
.featured-badge:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.featured-badge span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.featured-badge:hover span {
  color: var(--accent);
}

/* Nav Book Now button */
.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
}
.nav-book:hover {
  background: var(--accent-dark, #b8860b);
  transform: translateY(-1px);
}

/* --- Past Clients Marquee --- */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}
.marquee-track-left {
  animation: marqueeLeft 45s linear infinite;
  margin-bottom: 16px;
}
.marquee-track-right {
  animation: marqueeRight 50s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(245, 239, 231, 0.55);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.marquee-content span:hover {
  color: var(--accent-light);
  border-color: rgba(196, 135, 58, 0.3);
  background: rgba(196, 135, 58, 0.08);
}
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- CTA Band --- */
.cta-band {
  padding: 80px 0; text-align: center;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin: 0 auto 32px; color: rgba(245,239,231,0.7); }
.cta-band .hero-buttons { justify-content: center; }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .navbar-logo { margin-bottom: 16px; }
.footer-brand .navbar-logo img { height: 32px; }
.footer-brand p { color: rgba(245,239,231,0.5); font-size: 0.9rem; max-width: 320px; }
.footer h4 { color: rgba(245,239,231,0.4); margin-bottom: 20px; font-size: 0.75rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem; color: rgba(245,239,231,0.65);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 16px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(245,239,231,0.6);
  transition: background 0.3s, color 0.3s;
}
.footer-socials a:hover { background: var(--accent); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem; color: rgba(245,239,231,0.3);
}

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s ease-in-out 1;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
.wa-float svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { 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; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h4 { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { margin: 0 auto; }

/* --- Photo Gallery (Grid fallback) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.9; }

/* --- Gallery Carousel (Horizontal Scroll) --- */
.gallery-carousel-wrapper {
  position: relative;
}
/* Break out of container on desktop for near-full-width gallery */
@media (min-width: 769px) {
  .gallery-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 48px;
  }
  .gallery-arrow-left { left: 12px !important; }
  .gallery-arrow-right { right: 12px !important; }
}
.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light) transparent;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 0 48px;
}
.gallery-carousel::-webkit-scrollbar { height: 6px; }
.gallery-carousel::-webkit-scrollbar-track { background: transparent; }
.gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 100px;
}
.gallery-carousel::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.gallery-carousel img {
  flex: 0 0 auto;
  width: min(720px, 72vw);
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: pointer;
  will-change: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  scroll-snap-align: center;
}
.gallery-carousel img:hover {
  opacity: 0.9;
  transform: scale(1.01);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  box-shadow: var(--shadow-md);
}
.gallery-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.gallery-arrow-left { left: -20px; }
.gallery-arrow-right { right: -20px; }

/* --- Info Grid (for venue detail pages) --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-block { padding: 32px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.info-block h3 { margin-bottom: 20px; font-size: 1.3rem; }

/* --- Lightbox Overlay --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  font-family: system-ui;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .lightbox-img { max-width: 96vw; max-height: 75vh; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* --- Founder Cards (About Page) --- */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.founder-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.founder-card h4 {
  font-size: 0.92rem;
  margin: 0;
}
.founder-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.75rem;
  font-family: var(--font-accent);
  font-weight: 500;
  color: #0a66c2;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.founder-card:hover .founder-linkedin { opacity: 1; }
.founder-linkedin svg { width: 14px; height: 14px; fill: #0a66c2; }

/* --- Quick Links Row --- */
.quick-links {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.quick-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--bg-secondary);
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.quick-link:hover { background: var(--accent-light); color: var(--accent); }

/* --- Add-on Cards --- */
.addon-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}

/* --- Collab Cards --- */
.collab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.collab-card {
  padding: 40px 32px; text-align: center;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.collab-card:hover {
  border-color: var(--accent); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.collab-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-subtle); font-size: 1.8rem;
}
.collab-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.collab-card p { font-size: 0.9rem; margin: 0 auto; }

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--text-secondary); font-size: 0.95rem; }
.contact-detail svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 350px; border: none; }

/* --- Terms & Conditions --- */
.tnc-list { display: flex; flex-direction: column; gap: 0; }
.tnc-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.tnc-item:first-child { padding-top: 0; }
.tnc-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.tnc-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.tnc-body p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 300;
  font-family: var(--font-body);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 0 24px 0;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --- Charges Tables --- */
.charges-section {
  margin-bottom: 40px;
}
.charges-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.charges-icon {
  font-size: 1.3rem;
}
.charges-header h3 {
  font-size: 1.2rem;
}
.charges-table {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.charge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.charge-row:last-child { border-bottom: none; }
.charge-row:hover { background: var(--accent-subtle); }
.charge-row-highlight {
  background: #fef9f0;
}
.charge-row-highlight:hover { background: #fdf0db; }
.charge-label {
  font-size: 0.92rem;
  color: var(--text-primary);
}
.charge-amount {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  white-space: nowrap;
}
.charge-note {
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .space-block { grid-template-columns: 1fr; gap: 32px; }
  .space-block.reverse { direction: ltr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .gallery-arrow-left { left: -12px; }
  .gallery-arrow-right { right: -12px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 64px 0; }
  .feature-strip { flex-direction: column; gap: 0; padding: 40px 0; }
  .feature-item { padding: 24px 0; }
  .feature-divider { width: 100%; height: 1px; align-self: auto; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .space-showcase { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 240px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery-arrow { display: none; }
  .gallery-carousel img { width: 400px; height: 300px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
  .container { padding: 0 16px; }
}

/* ─── Location / Map Section ─── */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  aspect-ratio: 16/10;
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
}
.location-info .location-address {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.location-info .location-address svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--accent);
}
.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s ease;
  margin-top: 8px;
}
.location-directions:hover {
  gap: 14px;
}
.location-directions svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.location-directions:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .location-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-map { aspect-ratio: 16/9; }
}
