/* ============================================================
   Crystal Bay Beach Club — Custom Styles
   Stack: HTML5 / CSS3 / Tailwind CDN + Inter + Cormorant Garamond
   Dark-only design. No light/dark toggle.
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-midnight:    #0A0F1E;
  --color-abyss:       #0D1B2A;
  --color-deep-ocean:  #1A2F4B;
  --color-ocean:       #1E3A5F;
  --color-horizon:     #2E5480;

  --color-gold:        #D4A843;
  --color-amber:       #C07A2A;
  --color-sunset:      #E8902A;
  --color-warm-glow:   #F5C842;

  --color-surface-1:   #0D1B2A;
  --color-surface-2:   #1A2F4B;
  --color-surface-3:   #243C59;
  --color-overlay:     rgba(10, 15, 30, 0.65);
  --color-overlay-dark: rgba(10, 15, 30, 0.80);

  --color-text-primary:   #F5EDD4;
  --color-text-secondary: #BFA888;
  --color-text-muted:     #9D8C76;
  --color-text-gold:      #D4A843;
  --color-text-white:     #FDFAF4;

  --color-success:    #4A8C6A;
  --color-info:       #3A6EA8;
  --color-warning:    #C07A2A;
  --color-halal:      #2E7A4B;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-standard: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Skip-to-content (replaces Tailwind sr-only) ---- */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: absolute;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  background: var(--color-gold);
  color: var(--color-midnight);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-abyss);
  color: var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-interactive), text-decoration-color var(--transition-interactive);
}

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography Classes ---- */
.text-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-text-white);
}

.text-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text-white);
}

.text-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-white);
}

.text-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-white);
}

.text-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.text-body-lg {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-primary);
}

.text-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.text-body-sm {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.text-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-gold);
}

.text-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-white);
}

/* ---- Layout ---- */
.section { padding: 5rem 0; }
.section-lg { padding: 7.5rem 0; }
.section-sm { padding: 3rem 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: linear-gradient(135deg, #C07A2A, #D4A843);
  color: #0A0F1E;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-standard), transform var(--transition-standard), box-shadow var(--transition-standard);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #D4A843, #F5C842);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: transparent;
  color: var(--color-text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(245, 237, 212, 0.5);
  cursor: pointer;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--color-text-white);
  background: rgba(245, 237, 212, 0.08);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--color-gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: background var(--transition-interactive), color var(--transition-interactive);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-midnight);
}

/* ---- Navigation ---- */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
}

.nav-main.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-white);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.nav-logo:hover { color: var(--color-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a.active { color: var(--color-gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-white);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.97);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  list-style: none;
  width: 100%;
  max-width: 320px;
}
.nav-overlay-links li {
  width: 100%;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}
.nav-overlay-links li:first-child { border-top: 1px solid rgba(212, 168, 67, 0.2); }
.nav-overlay-links a {
  display: block;
  text-align: center;
  padding: 1.25rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-white);
  text-decoration: none;
  opacity: 0;
  transform: translateX(20px);
  transition: color var(--transition-interactive), opacity 0.3s ease, transform 0.3s ease;
}
.nav-overlay.open .nav-overlay-links a {
  opacity: 1;
  transform: translateX(0);
}
.nav-overlay.open .nav-overlay-links li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay.open .nav-overlay-links li:nth-child(2) a { transition-delay: 0.1s; }
.nav-overlay.open .nav-overlay-links li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay.open .nav-overlay-links li:nth-child(4) a { transition-delay: 0.2s; }
.nav-overlay.open .nav-overlay-links li:nth-child(5) a { transition-delay: 0.25s; }
.nav-overlay-links a:hover { color: var(--color-gold); }
.nav-overlay-whatsapp {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #25D366;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition-interactive);
}
.nav-overlay-whatsapp:hover { opacity: 0.8; }
.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition-interactive);
}
.nav-close:hover { color: var(--color-gold); }

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-short { min-height: 60vh; }
.hero-medium { min-height: 50vh; }
.hero-compact { min-height: 40vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0) 0%,
    rgba(10, 15, 30, 0.15) 30%,
    rgba(10, 15, 30, 0.5) 60%,
    rgba(10, 15, 30, 0.88) 100%
  );
  z-index: 1;
}
.hero-overlay-heavy {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0.2) 0%,
    rgba(10, 15, 30, 0.5) 40%,
    rgba(10, 15, 30, 0.90) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content-center {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(212, 168, 67, 0.8);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Gold Divider ---- */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.25rem 0;
}
.gold-divider-center {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.25rem auto;
}

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ---- Mobile Reserve Bar ---- */
.mobile-reserve-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-midnight);
  border-top: 1px solid rgba(212, 168, 67, 0.3);
  padding: 0.875rem 1.5rem;
  z-index: 80;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ---- Footer ---- */
.site-footer {
  background: #070C18;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.footer-social a:hover { color: var(--color-gold); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-interactive);
  display: inline-block;
  padding: 0.25rem 0;
  min-height: 44px;
  line-height: 2.4;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.footer-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--color-gold);
}
.footer-hours-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-address {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: #25D366;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition-interactive);
}
.footer-whatsapp-link:hover { opacity: 0.8; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.footer-bottom a:hover { color: var(--color-text-secondary); }

/* ---- Scroll Reveal ---- */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.badge-V  { background: #1F6B3C; color: white; }
.badge-VG { background: #3D7A5B; color: white; }
.badge-GF { background: #2D5A8F; color: white; }
.badge-S  { background: #C07A2A; color: white; }

/* ---- Card Components ---- */
.dining-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.dining-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dining-card:hover img { transform: scale(1.03); }
.dining-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,15,30,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* ---- Section Header Pattern ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .text-overline { margin-bottom: 0.75rem; }
.section-header .text-h2 { margin-bottom: 0; }

/* ---- Three Pillars ---- */
.pillar-bg {
  background: #1A2F4B;
  position: relative;
}
.pillar-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(212, 168, 67, 0.015) 30px,
    rgba(212, 168, 67, 0.015) 60px
  );
}

/* ---- Testimonials ---- */
.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.testimonial-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* ---- Menu Page Specific ---- */
.menu-category-nav {
  background: var(--color-abyss);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.75rem 1.5rem;
  gap: 0.5rem;
  display: flex;
  z-index: 50;
  position: sticky;
  top: 60px;
}
.menu-category-nav::-webkit-scrollbar { display: none; }
.menu-category-nav button {
  white-space: nowrap;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--color-text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
}
.menu-category-nav button.active,
.menu-category-nav button:hover {
  background: var(--color-gold);
  color: var(--color-midnight);
  border-color: var(--color-gold);
}

.menu-section { padding: 3.5rem 0; border-bottom: 1px solid rgba(212, 168, 67, 0.08); }
.menu-section:last-child { border-bottom: none; }

.menu-category-header { margin-bottom: 2rem; }
.menu-category-header .text-overline { margin-bottom: 0.5rem; }
.menu-category-header .gold-divider { margin: 1rem 0; }

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}
.menu-item-description {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.menu-item-badges {
  display: flex;
  gap: 4px;
  margin-top: 0.375rem;
  flex-wrap: wrap;
}
.menu-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

.wine-callout {
  background: linear-gradient(135deg, #1A2F4B, #1E3A5F);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ---- Gallery ---- */
.gallery-filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter-bar button {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--color-text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gallery-filter-bar button.active,
.gallery-filter-bar button:hover {
  background: var(--color-gold);
  color: var(--color-midnight);
  border-color: var(--color-gold);
}

.gallery-grid {
  columns: 4;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  transition: opacity 0.3s ease;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10, 15, 30, 0.4); }
.gallery-item.hidden { display: none; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.97);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-interactive);
}
.lightbox-close:hover { color: var(--color-gold); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--color-text-primary);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-interactive);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-gold);
  color: var(--color-midnight);
  border-color: var(--color-gold);
}
.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---- Event Cards ---- */
.event-card {
  background: var(--color-surface-2);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.4);
}
.event-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-midnight);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.event-card-content { padding: 1.5rem; }
.event-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-text-white);
  margin: 0.5rem 0 0.75rem;
}
.event-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.event-time {
  font-size: 0.8125rem;
  color: var(--color-gold);
  font-weight: 500;
}
.event-cta {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color var(--transition-interactive);
}
.event-cta:hover { color: var(--color-gold); }

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(212, 168, 67, 0.15);
}
.stat-block {
  background: var(--color-surface-2);
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* ---- Forms ---- */
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.reservation-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: var(--color-text-muted);
}
.reservation-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ---- Quote Block ---- */
.quote-block {
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(212, 168, 67, 0.04);
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.quote-block cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ---- Instagram Grid ---- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.instagram-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.instagram-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.instagram-grid-item:hover img { opacity: 0.7; }

/* ---- Weekly Schedule ---- */
.weekly-schedule {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.schedule-day {
  background: var(--color-surface-2);
  border-radius: 4px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.schedule-day.fire-day {
  background: rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.4);
}
.schedule-day-name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.fire-day .schedule-day-name { color: var(--color-gold); }
.schedule-fire-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.schedule-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gold);
}
.schedule-open {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---- Booking Cards ---- */
.booking-card {
  background: var(--color-surface-2);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-card-primary {
  border: 1px solid rgba(212, 168, 67, 0.35);
}
.booking-card-secondary {
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---- Map ---- */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.15);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Horizontal Scroll Strip ---- */
.scroll-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.scroll-strip::-webkit-scrollbar { display: none; }
.scroll-strip-item {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.scroll-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.scroll-strip-item:hover img { transform: scale(1.05); }
.scroll-strip-caption {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.scroll-strip-item:hover .scroll-strip-caption { background: rgba(10,15,30,0.6); }
.scroll-strip-caption span {
  font-size: 0.8125rem;
  color: transparent;
  transition: color 0.3s ease;
}
.scroll-strip-item:hover .scroll-strip-caption span { color: var(--color-text-primary); }

/* ---- Contact Info ---- */
.contact-info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-line:last-child { border-bottom: none; }
.contact-info-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.contact-hours-table {
  width: 100%;
  font-size: 0.875rem;
}
.contact-hours-table tr td:first-child {
  color: var(--color-text-muted);
  padding-right: 1.5rem;
  padding-bottom: 0.375rem;
}
.contact-hours-table tr td:last-child {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav-links, .nav-reserve-btn { display: none !important; }
  .nav-hamburger { display: flex; }
  .gallery-grid { columns: 3; }
  .weekly-schedule { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-main { padding: 1.25rem 1.5rem; }
  .hero-content, .hero-content-center { padding: 0 1.5rem 4rem; text-align: center; align-items: center; }
  .mobile-reserve-bar { display: flex; }
  .whatsapp-fab { bottom: 5.5rem; }
  .gallery-grid { columns: 2; }
  .weekly-schedule { grid-template-columns: repeat(4, 1fr); }
  .booking-card { padding: 1.75rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > :last-child { grid-column: auto; }
  .scroll-strip-item { width: 280px; height: 200px; }
  .gallery-grid { columns: 2; }
  .weekly-schedule { gap: 3px; }
  .schedule-day { padding: 0.75rem 0.25rem; }
  .map-embed { height: 250px; }
}

/* ---- Hover states for links (replaces inline JS handlers) ---- */
.instagram-see-more:hover, .instagram-see-more:focus { color: var(--color-gold); }
.maps-link:hover, .maps-link:focus { opacity: 0.7; }
.email-link:hover, .email-link:focus { color: var(--color-gold) !important; }

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