:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-elevated: #1a1a1d;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --emerald: #1a7a4c;
  --emerald-light: #2ecc71;
  --emerald-glow: rgba(46, 204, 113, 0.35);
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-glow: rgba(201, 169, 98, 0.3);
  --text-primary: #f5f5f7;
  --text-secondary: rgba(245, 245, 247, 0.72);
  --text-muted: rgba(245, 245, 247, 0.45);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 169, 98, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px var(--emerald-glow);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero-video-controls {
  position: absolute;
  right: 20px;
  bottom: 88px;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-video-controls.is-hidden {
  display: none;
}

.hero-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hero-video-btn:hover,
.hero-video-btn:focus-visible {
  background: rgba(231, 192, 140, 0.2);
  color: #fff;
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

.hero-video-btn:active {
  transform: scale(0.94);
}

.hero-video-icon--play,
.hero-video-icon--unmuted {
  display: none;
}

.hero-video-controls.is-paused .hero-video-icon--pause {
  display: none;
}

.hero-video-controls.is-paused .hero-video-icon--play {
  display: inline-block;
}

.hero-video-controls.is-unmuted .hero-video-icon--muted {
  display: none;
}

.hero-video-controls.is-unmuted .hero-video-icon--unmuted {
  display: inline-block;
}

@media (max-width: 767px) {
  .hero-video-controls {
    display: none;
  }
}

::selection { background: var(--emerald); color: #fff; }

.container-custom {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  z-index: 10000;
}

#mouse-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--emerald) 0%, #145a38 50%, var(--emerald) 100%);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.marquee-item i { color: var(--gold-light); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.main-nav {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.main-nav.scrolled {
  top: 0;
  padding: 10px 0;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle.active { color: var(--text-primary); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Navigation dropdowns — global (fixes submenu showing inline on all pages) */
.main-nav .nav-links > li {
  position: relative;
  list-style: none;
  flex-shrink: 0;
}

.main-nav .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.main-nav .nav-dropdown-toggle .bi-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}

.main-nav .nav-dropdown:hover .nav-dropdown-toggle .bi-chevron-down,
.main-nav .nav-dropdown.is-open .nav-dropdown-toggle .bi-chevron-down {
  transform: rotate(180deg);
}

.main-nav .nav-dropdown-toggle::after,
.main-nav .nav-dropdown-menu a::after { display: none; }

.main-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  padding: 10px 0;
  margin: 0;
  list-style: none !important;
  background: rgba(14, 18, 16, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 169, 98, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 1100;
  display: block !important;
  flex: none !important;
  width: auto;
  height: auto;
}

.main-nav .nav-dropdown-menu--mega {
  min-width: 280px;
  padding: 12px 0;
}

.main-nav .nav-dropdown:hover .nav-dropdown-menu,
.main-nav .nav-dropdown:focus-within .nav-dropdown-menu,
.main-nav .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.main-nav .nav-dropdown-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.main-nav .nav-dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a.active {
  color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
  padding-left: 26px;
}

.main-nav .nav-mega-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}

.main-nav .nav-mega-hint {
  display: block;
  font-size: 0.65rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: normal;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-social { display: none; gap: 8px; }

.nav-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-glass);
}

.btn-gold,
.btn-outline,
.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8893f 100%);
  color: var(--bg-primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-glass);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
  color: #fff;
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-gold.btn-lg,
.btn-outline.btn-lg,
.btn-emerald.btn-lg {
  padding: 14px 32px;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.98);
  z-index: 999;
  padding: 90px 24px 32px;
  flex-direction: column;
  backdrop-filter: blur(30px);
}

.mobile-menu.active { display: flex; }

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.mobile-menu .nav-links a { font-size: 1.125rem; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0.78) 55%, var(--bg-primary) 100%);
}

.hero-lights {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.hero-light:nth-child(1) { width: 240px; height: 240px; background: var(--emerald); top: 18%; left: 8%; }
.hero-light:nth-child(2) { width: 180px; height: 180px; background: var(--gold); top: 58%; right: 10%; animation-delay: 2s; }
.hero-light:nth-child(3) { width: 200px; height: 200px; background: var(--emerald-light); bottom: 18%; left: 28%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.25rem, 8vw, 5rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

section { padding: 72px 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label.center { justify-content: center; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
}

.section-desc.center {
  margin-left: auto;
  margin-right: auto;
}

.text-center-block {
  text-align: center;
  margin-bottom: 40px;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.fade-up { transform: translateY(40px); }
.reveal.fade-left { transform: translateX(-40px); }
.reveal.fade-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.quick-actions {
  margin-top: -48px;
  position: relative;
  z-index: 10;
  padding-bottom: 56px;
}

.action-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
  height: 100%;
}

.action-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-gold);
  background: var(--bg-glass-hover);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.action-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #145a38);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-size: 1.35rem;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.action-card:hover .action-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 24px var(--emerald-glow);
}

.action-card h3 { font-size: 1rem; margin-bottom: 6px; }
.action-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

.about-section { background: var(--bg-secondary); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 8s ease;
}

.about-image-wrap:hover img { transform: scale(1.08); }

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 22px;
}

.about-badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.about-badge .label { font-size: 0.75rem; color: var(--text-secondary); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-list li i { color: var(--emerald-light); font-size: 0.9375rem; }

.drink-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.drink-tab {
  padding: 10px 22px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.drink-tab.active,
.drink-tab:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

.drink-panel { display: none !important; }
.drink-panel.active { display: flex !important; flex-wrap: wrap; }

.drink-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: all var(--transition);
  height: 100%;
}

.drink-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.drink-card-img { height: 220px; overflow: hidden; }

.drink-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drink-card:hover .drink-card-img img { transform: scale(1.1); }

.drink-card-body { padding: 20px; }
.drink-card-body h4 { font-size: 1.125rem; margin-bottom: 8px; }
.drink-card-body p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 12px; }

.drink-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--gold);
}

.whiskey-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.counter-box { text-align: center; margin-bottom: 48px; }

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.whiskey-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-glass);
}

.whiskey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.whiskey-card:hover img { transform: scale(1.1); }

.whiskey-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 11, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}

.whiskey-card:hover .whiskey-card-overlay {
  background: linear-gradient(180deg, transparent 15%, rgba(26, 122, 76, 0.88) 100%);
}

.whiskey-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.whiskey-card span { font-size: 0.75rem; color: var(--text-muted); }

.event-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--emerald);
}

.event-card-img { height: 180px; overflow: hidden; position: relative; }

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-img img { transform: scale(1.06); }

.event-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  border: 1px solid var(--border-glass);
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--gold);
  line-height: 1;
}

.event-date .month {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.event-card-body { padding: 20px; }
.event-card-body h4 { font-size: 1.0625rem; margin-bottom: 8px; }
.event-card-body p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

/* Events Calendar */
.events-calendar-wrap {
  position: relative;
  margin: 48px 0 32px;
  padding: 48px 0;
}

.events-calendar-bg {
  position: absolute;
  inset: 0;
  background: url('https://static.spotapps.co/spots/22/f054a312b040098284d332b8373d5a/full') center/cover;
  opacity: 0.18;
  filter: blur(2px);
  border-radius: var(--radius-lg);
}

.events-calendar-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.75) 0%, rgba(10, 10, 11, 0.92) 100%);
  border-radius: inherit;
}

.events-calendar {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.events-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e8e8e8;
}

.events-cal-month {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
  text-transform: uppercase;
}

.events-cal-nav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.events-cal-nav:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.events-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 420px;
}

.events-cal-cell {
  min-height: 100px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 8px;
  position: relative;
  background: #fff;
}

.events-cal-cell:nth-child(7n) { border-right: none; }

.events-cal-cell--empty {
  background: repeating-linear-gradient(
    -45deg,
    #f7f7f7,
    #f7f7f7 4px,
    #efefef 4px,
    #efefef 8px
  );
}

.events-cal-cell--idle {
  background: repeating-linear-gradient(
    -45deg,
    #fafafa,
    #fafafa 4px,
    #f0f0f0 4px,
    #f0f0f0 8px
  );
}

.events-cal-cell--event {
  background: #fff;
}

.events-cal-date {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.events-cal-daynum {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
}

.events-cal-dow {
  font-size: 0.625rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
}

.events-cal-entry {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.events-cal-entry img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.events-cal-entry-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.events-cal-time {
  font-size: 0.625rem;
  color: #888;
  line-height: 1.3;
}

.events-cal-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
}

.sports-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.sports-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url('https://static.spotapps.co/spots/22/f054a312b040098284d332b8373d5a/full') center/cover;
}

.sports-inner { position: relative; z-index: 1; }

.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sport-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.sport-item:hover {
  border-color: var(--emerald);
  transform: scale(1.02);
}

.sport-item i {
  font-size: 1.75rem;
  color: var(--emerald-light);
  margin-bottom: 10px;
  display: block;
}

.sport-item h4 { font-size: 0.9375rem; margin: 0; }

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.service-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.service-card h4 { font-size: 1.125rem; margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.music-schedule {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
}

.music-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
  transition: background var(--transition);
}

.music-row:last-child { border-bottom: none; }
.music-row:hover { background: var(--bg-glass); }
.music-day { font-weight: 600; font-size: 0.875rem; }
.music-act { color: var(--text-secondary); font-size: 0.875rem; }
.music-time { color: var(--gold); font-size: 0.75rem; font-weight: 500; }

.gallery-grid { columns: 1; column-gap: 12px; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img { width: 100%; transition: transform 0.6s ease; aspect-ratio: 4/3; }

.gallery-item--tall img { aspect-ratio: 3/4; }
.gallery-item--wide img { aspect-ratio: 16/9; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 122, 76, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonials-section { background: var(--bg-secondary); }

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  backdrop-filter: blur(10px);
}

.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.8125rem; }

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-source { font-size: 0.75rem; color: var(--text-muted); }

#reservations {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1510 50%, var(--bg-primary) 100%);
  position: relative;
}

#reservations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://static.spotapps.co/website_images/ab_websites/280606_website_v1/parties_back.jpg') center/cover;
  opacity: 0.06;
  pointer-events: none;
}

#reservations .container-custom { position: relative; z-index: 1; }

.reservation-widget {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.reservation-widget-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.reservation-widget-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px;
}

.reservation-widget-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  color: #333;
  font-size: 0.9375rem;
  text-align: left;
}

.reservation-widget-field span { flex: 1; }
.reservation-widget-field i:first-child { color: #666; }
.reservation-widget-field i:last-child { color: #999; font-size: 0.75rem; }

.reservation-widget-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  margin-top: 8px;
  background: #c62828;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.reservation-widget-btn:hover { background: #b71c1c; color: #fff; }

.cta-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, #0d4a2e 100%);
  border-radius: var(--radius-xl);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.cta-banner p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }

.form-control,
.form-select {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9375rem;
}

.form-control:focus,
.form-select:focus {
  background: var(--bg-glass-hover);
  border-color: var(--emerald);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}

.form-control::placeholder { color: var(--text-muted); }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 16px;
}

.form-alert.success {
  display: block;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid var(--emerald);
  color: var(--emerald-light);
}

.form-alert.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff6b7a;
}

.form-alert.loading {
  display: block;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}

.faq-question i { transition: transform var(--transition); color: var(--gold); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--gold);
}

.contact-info-item h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

.contact-info-item p { margin: 0; color: var(--text-secondary); font-size: 0.9375rem; }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-glass);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 56px 0 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom p { margin: 0; font-size: 0.75rem; color: var(--text-muted); }

.footer-cta { padding: 10px 16px; font-size: 0.75rem; }

.form-select option { background: var(--bg-elevated); color: var(--text-primary); }

#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-glow);
}

#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { transform: translateY(-4px); background: var(--emerald-light); }

/* Floating action buttons */
.fab-stack {
  position: fixed;
  bottom: 88px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
  color: inherit;
}

.fab-birthday {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.fab-birthday:hover { box-shadow: 0 12px 36px var(--gold-glow); color: var(--gold-light); }

.fab-contact {
  background: #fff;
  color: #0d2137;
}

.fab-contact:hover { box-shadow: 0 12px 36px rgba(255, 255, 255, 0.2); color: #0d2137; }

/* Animated feedback button */
.feedback-btn {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 25%, var(--emerald-light) 60%, var(--emerald) 100%);
  background-size: 300% 300%;
  color: #0a0a0b;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 0 rgba(201, 169, 98, 0.5);
  animation: feedbackPulse 2.5s ease-in-out infinite, feedbackGradient 4s ease infinite, feedbackFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.feedback-btn:hover {
  transform: translateY(-4px) scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 14px 40px var(--emerald-glow);
}

.feedback-btn-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: feedbackRing 2.5s ease-out infinite;
  pointer-events: none;
}

.feedback-btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: feedbackShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.feedback-btn i { font-size: 1.125rem; position: relative; z-index: 1; }
.feedback-btn-text { position: relative; z-index: 1; white-space: nowrap; }

@keyframes feedbackPulse {
  0%, 100% { box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 0 rgba(201, 169, 98, 0.5); }
  50% { box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 14px rgba(201, 169, 98, 0); }
}

@keyframes feedbackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes feedbackRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes feedbackShimmer {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

@keyframes feedbackGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Site modals */
.modal { z-index: 1060; }
.modal-backdrop { z-index: 1055; }

.site-modal .modal-dialog { max-width: 520px; }

.site-modal .modal-dialog.modal-lg { max-width: 720px; }

.site-modal-content {
  background: #faf8f5;
  border: none;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  position: relative;
}

.site-modal-content--form { background: #fff; }

.site-modal-content--feedback {
  background: linear-gradient(180deg, #fff 0%, #f5f9f6 100%);
}

.site-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #333;
  font-size: 1.125rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.site-modal-close:hover { background: rgba(0, 0, 0, 0.06); }

.site-modal-body { padding: 40px 32px 32px; }

.site-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.site-modal-sub {
  text-align: center;
  color: #555;
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.site-modal-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 24px auto 0;
  padding: 14px 24px;
  background: #0d2137;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.site-modal-btn:hover { background: #1a3a5c; transform: translateY(-2px); color: #fff; }

.site-modal-btn--wide { max-width: none; }

button.open-catering {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-reason-list { display: flex; flex-direction: column; gap: 0; }

.contact-reason-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  margin: 0;
}

.contact-reason-item:last-child { border-bottom: none; }

.contact-reason-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0d2137;
  flex-shrink: 0;
}

.contact-reason-item span {
  font-size: 0.9375rem;
  color: #222;
}

.site-input {
  background: #fff;
  border: 1px solid #ccc;
  color: #222;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.9375rem;
}

.site-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.15);
  outline: none;
  color: #222;
}

.site-modal .form-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111;
  margin-bottom: 6px;
}

.site-modal .req { font-weight: 400; color: #666; }
.site-modal .opt { font-weight: 400; color: #888; font-size: 0.8125rem; }

.marketing-consent {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.8125rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.consent-label input { margin-top: 4px; flex-shrink: 0; accent-color: #0d2137; }

.consent-label a { color: #0d2137; text-decoration: underline; }

.consent-notes {
  margin: 10px 0 0 28px;
  padding: 0;
  font-size: 0.75rem;
  color: #777;
}

.consent-notes li { margin-bottom: 2px; }

.feedback-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #111;
  animation: feedbackIconSpin 6s linear infinite;
}

@keyframes feedbackIconSpin {
  0%, 90%, 100% { transform: rotate(0deg); }
  95% { transform: rotate(15deg); }
}

.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.feedback-star {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s, color 0.2s;
}

.feedback-star:hover,
.feedback-star.active { color: var(--gold); transform: scale(1.2); }

.feedback-star.active ~ .feedback-star { color: #ddd; }

.site-modal .form-alert { text-align: center; }

.site-modal .form-alert.success { color: #1a7a4c; background: rgba(26, 122, 76, 0.1); padding: 12px; border-radius: 4px; }
.site-modal .form-alert.error { color: #c62828; background: rgba(198, 40, 40, 0.08); padding: 12px; border-radius: 4px; }
.site-modal .form-alert.loading { color: #555; background: #f0f0f0; padding: 12px; border-radius: 4px; }

.btn-loading { pointer-events: none; opacity: 0.7; }

.carousel-indicators [data-bs-target] { background-color: var(--gold); }

@media (min-width: 375px) {
  .marquee-item { font-size: 0.8125rem; }
  .hero-badge { font-size: 0.75rem; }
  .about-image-wrap img { height: 360px; }
  .drink-card-img { height: 240px; }
  .event-card-img { height: 200px; }
  .map-placeholder { height: 320px; }
}

@media (min-width: 425px) {
  section { padding: 80px 0; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .music-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .music-act { flex: 1; padding: 0 16px; }
}

@media (min-width: 768px) {
  section { padding: 96px 0; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-actions .btn-outline { display: inline-flex; }
  .about-image-wrap img { height: 460px; }
  .gallery-grid { columns: 2; column-gap: 16px; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-banner { padding: 64px 48px; }
  .map-placeholder { height: 400px; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .nav-social { display: flex; }
  .nav-logo { font-size: 1.5rem; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.75rem; }
  .gallery-grid { columns: 3; }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-actions { margin-top: -60px; }
  .events-cal-cell { min-height: 120px; }
  .events-cal-entry img { width: 56px; height: 56px; }
}

@media (min-width: 1200px) {
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.8125rem; }
}

@media (min-width: 1440px) {
  section { padding: 100px 0; }
  .gallery-grid { columns: 4; }
  .about-image-wrap img { height: 500px; }
  .drink-card-img { height: 280px; }
  .container-custom { max-width: 1400px; }
}

@media (min-width: 1920px) {
  .hero-title { font-size: 5.5rem; }
}

.site-modal .form-alert.loading { color: #555; background: #f0f0f0; padding: 12px; border-radius: 4px; }

/* Find a Table modal */
.find-table-modal { max-width: 680px; margin: 0 auto; }

.find-table-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.find-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.find-step--active { color: #c62828; }

.find-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid currentColor;
  font-weight: 700;
}

.find-step--active .find-step-num {
  background: #c62828;
  color: #fff;
  border-color: #c62828;
}

.find-step-line {
  width: 48px;
  height: 2px;
  background: #ddd;
}

.find-table-signin {
  text-align: right;
  font-size: 0.8125rem;
  color: #666;
  margin: -12px 0 20px;
}

.find-table-signin a { color: #c62828; font-weight: 600; }

.find-table-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.find-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.find-table-search-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #c62828;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.find-table-search-btn:hover {
  background: #b71c1c;
  transform: translateY(-1px);
  color: #fff;
}

.find-table-results {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.find-results-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.find-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.find-time-slot {
  padding: 10px 16px;
  border: 2px solid #c62828;
  background: #fff;
  color: #c62828;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.find-time-slot:hover,
.find-time-slot.active {
  background: #c62828;
  color: #fff;
}

.find-seating-list { display: flex; flex-direction: column; gap: 10px; }

.find-seating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fafafa;
}

.find-seating-info { display: flex; flex-direction: column; gap: 2px; }
.find-seating-info strong { font-size: 0.9375rem; color: #222; }
.find-seating-info span { font-size: 0.75rem; color: #777; }

.find-seating-tag {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.find-seating-tag:hover,
.find-seating-tag.active {
  background: #0d2137;
  color: #fff;
  border-color: #0d2137;
}

.find-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border: 2px solid #c62828;
  background: transparent;
  color: #c62828;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.find-notify-btn:hover { background: #c62828; color: #fff; }

.find-summary {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
}

.find-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #eee;
}

.find-summary-row:last-child { border-bottom: none; }
.find-summary-row span { color: #777; }
.find-summary-row strong { color: #222; }

.find-opentable-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}

.find-opentable-note i { color: #c62828; margin-right: 4px; }

@media (min-width: 768px) {
  .find-table-fields { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .nav-actions .btn-outline { display: none; }
  .main-nav { top: 38px; }
  .events-cal-grid { min-height: auto; }
  .events-cal-cell { min-height: 72px; padding: 4px; }
  .events-cal-entry img { width: 32px; height: 32px; }
  .events-cal-title { font-size: 0.5625rem; }
  .events-cal-time { font-size: 0.5rem; }
  .events-calendar-wrap { padding: 24px 0; margin: 32px 0 16px; }
  .fab-stack { bottom: 80px; right: 16px; }
  .fab { width: 48px; height: 48px; font-size: 1.2rem; }
  #scroll-top { bottom: 20px; right: 16px; }
  .feedback-btn { bottom: 20px; left: 16px; padding: 12px 16px 12px 14px; font-size: 0.6875rem; }
  .feedback-btn-text { display: none; }
  .site-modal-body { padding: 36px 20px 24px; }
}

/* Home showcase & gallery — see enhancements.css */

/* Home promo cards (Castle slideshow CTAs) */
.home-promo-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.home-promo-card img { height: 100%; }
.home-promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.92) 0%, rgba(8, 12, 10, 0.2) 55%, transparent 100%);
  text-align: center;
}
.home-promo-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.nav-phone {
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8125rem;
  text-decoration: none;
  margin-right: 8px;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }

/* Inner pages: offset content below fixed nav */
body.page-inner main {
  padding-top: 110px;
}

body.page-inner main > section:first-child {
  padding-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  #mouse-glow { display: none; }
  .feedback-btn { animation: none; }
  .feedback-btn-ring, .feedback-btn-shimmer { display: none; }
}
