:root {
  --gold: #C9A85C;
  --gold-light: #E8D5A3;
  --ink: #0D0C0A;
  --ink-mid: #1a1814;
  --ink-soft: #252320;
  --cream: #F5F0E8;
  --cream-dim: #d4cdbd;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 12, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 92, 0.18);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-nav.scrolled {
  background: rgba(13, 12, 10, 0.985);
  border-bottom-color: rgba(201, 168, 92, 0.34);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.site-nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: height 220ms ease;
}
.site-nav.scrolled .site-nav-inner { height: 70px; }
.nav-primary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 92, 0.35);
  background: transparent;
  color: var(--gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: '';
  transition: transform 180ms ease;
}
.nav-toggle-lines::before { transform: translateY(-5px); }
.nav-toggle-lines::after { transform: translateY(4px); }
.site-nav.open .nav-toggle-lines { background: transparent; }
.site-nav.open .nav-toggle-lines::before { transform: translateY(0) rotate(45deg); }
.site-nav.open .nav-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--gold);
  transition: opacity 180ms ease;
}
.brand:hover { opacity: 0.85; }
.brand-word {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-logo {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  transition: transform 300ms ease;
}
.brand:hover .brand-logo {
  transform: rotate(8deg) scale(1.05);
}
.nav-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.nav-links a.active,
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}
.nav-cta {
  text-decoration: none;
  background: var(--gold);
  color: var(--ink);
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,92,0.4);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(13,12,10,0.5) 0%, rgba(13,12,10,0.88) 100%),
    radial-gradient(circle at 50% 45%, rgba(201,168,92,0.15), transparent 55%),
    url('../images/food/tapas-platter.jpg') center/cover no-repeat,
    linear-gradient(180deg, var(--ink) 0%, #110f0c 100%);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 6.4rem);
  margin: 0;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  margin: 1rem 0 2rem;
  color: var(--cream-dim);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.page-hero {
  padding: 3.5rem 0 1.8rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/venue/interior-evening-blue-purple.jpg') center/cover no-repeat;
}
.page-hero .section-title { margin-bottom: 0.35rem; }

[data-page="menus"] .page-hero {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/food/tapas-spread-nachos-hummus-prawns.jpg') center/cover no-repeat;
}
[data-page="private-hire"] .page-hero {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/venue/private-hire-balloons-dining-room.jpg') center/cover no-repeat;
}
[data-page="visit"] .page-hero {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/venue/bar-interior-daytime.jpg') center/cover no-repeat;
}
[data-page="drinks"] .page-hero {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/drinks/bottomless-brunch-cocktails.jpg') center/cover no-repeat;
}
[data-page="cocktails"] .page-hero {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.85) 0%, rgba(13, 12, 10, 0.95) 100%),
    url('../images/drinks/happy-hour-2-for-14-cocktail-selection.jpg') center/cover no-repeat;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.68rem;
}

.copy-center { margin: 0 auto; }
.mt-05 { margin-top: .5rem; }
.mt-08 { margin-top: .8rem; }
.mt-09 { margin-top: .9rem; }
.mt-1 { margin-top: 1rem; }
.mt-12 { margin-top: 1.2rem; }
.ml-05 { margin-left: .5rem; }
.max-w-760 { max-width: 760px; }
.max-w-none { max-width: none; }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.4s;
}
.btn:hover::after {
  left: 100%;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(201,168,92,0.35); }
.btn-ghost { border: 1px solid rgba(201,168,92,0.45); color: var(--gold); }
.btn-ghost:hover { background: rgba(201,168,92,0.1); }

.section { padding: 5rem 0; }
.section.alt { background: var(--ink-mid); }

.private-hire-package {
  height: 100%;
}

.private-hire-package-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.private-hire-package-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  white-space: nowrap;
}

.private-hire-package-block + .private-hire-package-block {
  margin-top: 1rem;
}

.private-hire-package-block h4 {
  margin: 0 0 0.55rem;
}

.private-hire-package-list {
  margin: 0;
  padding-left: 1.2rem;
}

.private-hire-package-list li + li {
  margin-top: 0.35rem;
}
.section-title {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.1rem);
}
.section-title em { 
  color: var(--gold); 
  font-style: italic;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reveal.visible .section-title em {
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
.section-copy { color: var(--cream-dim); line-height: 1.8; max-width: 760px; }

.grid-2 { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: var(--ink-soft);
  border: 1px solid rgba(201,168,92,0.15);
  padding: 1.4rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,92,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.card h3 { margin: 0 0 0.6rem; font-family: var(--serif); font-weight: 400; color: var(--gold); }
.card p { margin: 0; color: var(--cream-dim); line-height: 1.7; }

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.25rem; }
.menu-tabs-spaced { margin-top: 1rem; }
.menu-tab {
  background: transparent;
  border: 1px solid rgba(201,168,92,0.24);
  color: var(--cream-dim);
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.66rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.menu-tab:hover {
  color: var(--gold);
  border-color: rgba(201,168,92,0.5);
}
.menu-tab.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,92,0.08); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel[hidden] { display: none !important; }
.menu-cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: rgba(201,168,92,0.15); }
.menu-section { background: var(--ink-soft); padding: 1.3rem; }
.menu-section-title { margin: 0 0 0.8rem; font-family: var(--serif); color: var(--gold); font-size: 1.2rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.menu-item-name { font-family: var(--serif); }
.menu-item-desc { font-size: 0.74rem; color: var(--cream-dim); margin-top: 0.16rem; }
.menu-item-price { color: var(--gold); white-space: nowrap; }
.menu-note { color: var(--cream-dim); margin-top: 1rem; font-size: 0.8rem; }
.menu-section .btn + .btn { margin-left: .5rem; }

.cocktails-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.25rem; 
}

.cocktail-card {
  display: flex;
  background: var(--ink-soft);
  border: 1px solid rgba(201, 168, 92, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.cocktail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 92, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cocktail-card-image {
  width: 120px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.cocktail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.cocktail-card:hover .cocktail-card-image img {
  transform: scale(1.1);
}

.cocktail-card-content {
  flex: 1;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cocktail-name { 
  font-family: var(--serif); 
  font-size: 1.15rem; 
  margin-bottom: 0.35rem;
}

.cocktail-desc { 
  color: var(--cream-dim); 
  font-size: 0.8rem; 
  line-height: 1.6; 
}

.cocktail-price { 
  color: var(--gold); 
  margin-top: 0.6rem;
  font-weight: 500;
}

/* Happy Hour Badge Animation */
.happy-hour-badge {
  display: inline-block;
  margin-left: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}

.cocktail-card.happy-hour {
  position: relative;
  border-left: 3px solid var(--gold);
}

.cocktail-card.happy-hour::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 168, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.happy-hour-price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 0;
  transition: background 180ms ease;
}
.hours-row:hover {
  background: rgba(201,168,92,0.05);
}
.closed { color: #8a6e35; }
.time { color: var(--cream); }

/* Animated underline for text links */
.section-copy a {
  position: relative;
  text-decoration: none;
  color: var(--gold);
}
.section-copy a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 250ms ease;
}
.section-copy a:hover::after {
  width: 100%;
}

.map-embed { margin: 0.8rem 0; }

.form-row { margin-bottom: 0.9rem; }
.form-grid-2 { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cream-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,92,0.22);
  color: var(--cream);
  font-family: var(--sans);
  padding: 0.72rem 0.85rem;
  transition: border-color 180ms ease, background 180ms ease;
}
.form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.form-input::placeholder {
  color: var(--cream-dim);
  opacity: 0.6;
}
input[type="date"].form-input {
  color-scheme: dark;
}
.form-group { margin-bottom: 0; }

.package-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.45rem;
}
.package-option {
  display: block;
  cursor: pointer;
}
.package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.package-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.9rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,92,0.18);
  transition: border-color 180ms ease, background 180ms ease;
  text-align: center;
  cursor: pointer;
}
.package-option:hover .package-option-inner {
  border-color: rgba(201,168,92,0.45);
  background: rgba(201,168,92,0.06);
}
.package-option input[type="radio"]:checked + .package-option-inner {
  border-color: var(--gold);
  background: rgba(201,168,92,0.12);
  box-shadow: inset 0 0 0 1px rgba(201,168,92,0.3);
}
.package-option input[type="radio"]:focus-visible + .package-option-inner {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.package-option-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
}
.package-option-price {
  font-size: 0.78rem;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
}

.private-hire-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}

.private-hire-showcase-media {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 92, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.private-hire-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.private-hire-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.private-hire-showcase-copy h3 {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(201,168,92,0.18);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
}
.site-footer p { color: rgba(212,205,189,0.72); margin: 0.2rem 0; font-size: 0.76rem; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.footer-social a {
  color: var(--cream-dim);
  transition: color 180ms ease, transform 180ms ease;
  position: relative;
}
.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.1);
}
.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 200ms ease;
}
.footer-social a:hover::after {
  transform: translateX(-50%) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid items */
.grid-2 .card:nth-child(1) { transition-delay: 0ms; }
.grid-2 .card:nth-child(2) { transition-delay: 80ms; }
.grid-2 .card:nth-child(3) { transition-delay: 160ms; }
.grid-2 .card:nth-child(4) { transition-delay: 240ms; }

.gallery-item:nth-child(1) { animation-delay: 0ms; }
.gallery-item:nth-child(2) { animation-delay: 100ms; }
.gallery-item:nth-child(3) { animation-delay: 200ms; }
.gallery-item:nth-child(4) { animation-delay: 300ms; }

/* Shimmer effect on hero text */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero h1 em {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,92,0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(201,168,92,0.2); }
}
.hero .btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero .btn-primary:hover {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero h1 em,
  .reveal.visible .section-title em {
    animation: none;
    background: var(--gold);
    -webkit-text-fill-color: var(--gold);
  }
  .hero .btn-primary,
  .hero .btn-ghost {
    animation: none;
  }
  .happy-hour-badge {
    animation: none;
  }
  .cocktails-grid .cocktail-card,
  .wines-grid .wine-card,
  .hot-drinks-grid .wine-card {
    opacity: 1;
    animation: none;
  }
  .btn::after,
  .card::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .grid-2, .menu-cols, .form-grid-2 { grid-template-columns: 1fr; }
  .cocktails-grid { grid-template-columns: 1fr; }
  .cocktail-card-image { width: 110px; min-width: 110px; }
  .private-hire-showcase { grid-template-columns: 1fr; }
  .private-hire-showcase-media { min-height: 260px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .package-selector { grid-template-columns: 1fr; }
  .site-nav-inner { height: auto; min-height: 66px; padding: 0.7rem 0; align-items: center; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-primary {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 220ms ease, opacity 220ms ease, transform 220ms ease;
  }
  /* Make the nav itself full-screen when open — avoids backdrop-filter stacking context trapping fixed children */
  .site-nav.open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 12, 10, 0.99);
    overflow-y: auto;
    z-index: 20;
  }
  .site-nav.open .nav-primary {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 1rem 0 2rem;
  }
  .nav-links { width: 100%; gap: 1.5rem; flex-direction: column; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { margin-top: 1rem; }
}

@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr; }
  /* Keep cocktail cards horizontal — image fills card height */
  .cocktail-card { flex-direction: row; }
  .cocktail-card-image { 
    width: 90px; 
    min-width: 90px; 
  }
  .cocktail-card-image img {
    object-fit: cover;
    object-position: center;
  }
  .cocktail-card-content {
    padding: 0.75rem;
  }
  .cocktail-name { font-size: 1rem; }
  .cocktail-desc { font-size: 0.75rem; }
}

/* Loading & Error States */
.loading-state,
.error-state {
  text-align: center;
  padding: 2rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.loading-state {
  position: relative;
}

.loading-state::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin: 1rem auto 0;
  border: 2px solid var(--gold-light);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-state {
  color: #e8a3a3;
  background: rgba(200, 100, 100, 0.1);
  border-radius: 8px;
}

/* Drinks Page */
.drinks-panels {
  margin-top: 2rem;
}

.drinks-panel {
  display: none;
}

.drinks-panel.active {
  display: block;
}

/* Wine Cards */
.wines-grid {
  display: grid;
  gap: 1rem;
}

.wine-card {
  background: var(--ink-soft);
  border: 1px solid rgba(201, 168, 92, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  transition: border-color 200ms ease, transform 200ms ease;
}

.wine-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.wine-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.wine-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  flex: 1;
}

.wine-origin {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.wine-prices {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* Hot Drinks - now uses wine-card styles */
.hot-drinks-grid {
  display: grid;
  gap: 1rem;
}

/* Happy Hour Card on drinks page */
.happy-hour-card {
  text-align: center;
  max-width: 400px;
  margin: 2rem auto 0;
}

.happy-hour-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Responsive wines & hot drinks */
@media (min-width: 700px) {
  .wines-grid,
  .hot-drinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .wines-grid,
  .hot-drinks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== DELIVERY TAB ===== */
.delivery-order-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 92, 0.2);
}

.delivery-order-heading {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.delivery-option {
  background: var(--ink-soft);
  border: 1px solid rgba(201, 168, 92, 0.2);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.delivery-option-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.delivery-option-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}

.delivery-option-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.delivery-option-desc {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0 0 auto;
  padding-bottom: 1.5rem;
}

/* ===== DRINKS PAGE HERO ===== */
.drinks-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background: var(--ink-mid);
}

.drinks-hero-image {
  position: relative;
  overflow: hidden;
}

.drinks-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* hover zoom removed */

.drinks-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--ink-mid) 100%);
}

.drinks-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  text-align: left;
}

.drinks-hero-content .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.drinks-hero-content .section-copy {
  max-width: 400px;
}

@media (max-width: 800px) {
  .drinks-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .drinks-hero-image {
    height: 40vh;
  }
  
  .drinks-hero-image::after {
    background: linear-gradient(180deg, transparent 50%, var(--ink-mid) 100%);
  }
  
  .drinks-hero-content {
    text-align: center;
    padding: 2rem 1.25rem 3rem;
  }
  
  .drinks-hero-content .section-copy {
    margin: 0 auto;
  }
}

/* ===== FEATURED COCKTAIL SECTION ===== */
.featured-cocktail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--ink-soft);
  border: 1px solid rgba(201, 168, 92, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.featured-cocktail-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.featured-cocktail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* hover zoom removed */

.featured-cocktail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.featured-cocktail-content .eyebrow {
  margin-bottom: 0.5rem;
}

.featured-cocktail-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 1rem;
}

.featured-cocktail-content p {
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0;
}

.featured-cocktail-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold) !important;
  margin-top: 0.75rem !important;
}

.featured-cocktail-note {
  font-size: 0.85rem;
  margin-top: 1rem !important;
  opacity: 0.8;
}

@media (max-width: 700px) {
  .featured-cocktail {
    grid-template-columns: 1fr;
  }
  
  .featured-cocktail-image {
    min-height: 200px;
  }
  
  .featured-cocktail-content {
    padding: 1.5rem;
    text-align: center;
  }
}

/* Drinks Section Title */
.drinks-section-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

/* Wine intro section */
.wine-intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 92, 0.2);
}

.wine-intro-text {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

/* ===== ANIMATED BANNER / MARQUEE ===== */
.promo-banner {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.promo-banner-inner {
  display: flex;
  animation: marquee 30s linear infinite;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.65rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.promo-banner-content span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-banner-content span::before {
  content: '\2726';
  font-size: 0.65rem;
  opacity: 0.7;
}

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

.promo-banner:hover .promo-banner-inner {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .promo-banner-inner {
    animation: none;
  }
}

/* ===== ENHANCED ANIMATIONS ===== */

/* Card float animation on hover */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 92, 0.08),
    transparent
  );
  transition: 0.5s;
}

.card:hover::before {
  left: 100%;
}

/* Gallery item parallax-like effect */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 92, 0.15) 0%,
    transparent 50%,
    rgba(201, 168, 92, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 1;
}

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

/* Smooth stagger for cocktail cards */
.cocktails-grid .cocktail-card {
  opacity: 0;
  animation: fadeSlideIn 0.5s ease forwards;
}

.cocktails-grid .cocktail-card:nth-child(1) { animation-delay: 0ms; }
.cocktails-grid .cocktail-card:nth-child(2) { animation-delay: 50ms; }
.cocktails-grid .cocktail-card:nth-child(3) { animation-delay: 100ms; }
.cocktails-grid .cocktail-card:nth-child(4) { animation-delay: 150ms; }
.cocktails-grid .cocktail-card:nth-child(5) { animation-delay: 200ms; }
.cocktails-grid .cocktail-card:nth-child(6) { animation-delay: 250ms; }
.cocktails-grid .cocktail-card:nth-child(7) { animation-delay: 300ms; }
.cocktails-grid .cocktail-card:nth-child(8) { animation-delay: 350ms; }
.cocktails-grid .cocktail-card:nth-child(9) { animation-delay: 400ms; }
.cocktails-grid .cocktail-card:nth-child(10) { animation-delay: 450ms; }
.cocktails-grid .cocktail-card:nth-child(11) { animation-delay: 500ms; }
.cocktails-grid .cocktail-card:nth-child(12) { animation-delay: 550ms; }
.cocktails-grid .cocktail-card:nth-child(13) { animation-delay: 600ms; }
.cocktails-grid .cocktail-card:nth-child(14) { animation-delay: 650ms; }
.cocktails-grid .cocktail-card:nth-child(15) { animation-delay: 700ms; }

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wine cards stagger animation */
.wines-grid .wine-card,
.hot-drinks-grid .wine-card {
  opacity: 0;
  animation: fadeSlideIn 0.5s ease forwards;
}

.wines-grid .wine-card:nth-child(1),
.hot-drinks-grid .wine-card:nth-child(1) { animation-delay: 0ms; }
.wines-grid .wine-card:nth-child(2),
.hot-drinks-grid .wine-card:nth-child(2) { animation-delay: 60ms; }
.wines-grid .wine-card:nth-child(3),
.hot-drinks-grid .wine-card:nth-child(3) { animation-delay: 120ms; }
.wines-grid .wine-card:nth-child(4),
.hot-drinks-grid .wine-card:nth-child(4) { animation-delay: 180ms; }
.wines-grid .wine-card:nth-child(5),
.hot-drinks-grid .wine-card:nth-child(5) { animation-delay: 240ms; }
.wines-grid .wine-card:nth-child(6),
.hot-drinks-grid .wine-card:nth-child(6) { animation-delay: 300ms; }
.wines-grid .wine-card:nth-child(7),
.hot-drinks-grid .wine-card:nth-child(7) { animation-delay: 360ms; }
.wines-grid .wine-card:nth-child(8),
.hot-drinks-grid .wine-card:nth-child(8) { animation-delay: 420ms; }
.wines-grid .wine-card:nth-child(9),
.hot-drinks-grid .wine-card:nth-child(9) { animation-delay: 480ms; }
.wines-grid .wine-card:nth-child(10),
.hot-drinks-grid .wine-card:nth-child(10) { animation-delay: 540ms; }

/* Floating effect for hero buttons */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero .btn-ghost {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* Gradient border on nav hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 300ms ease;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Subtle glow on wine cards hover */
.wine-card:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 92, 0.15);
}

/* ===== REVIEWS ===== */
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201, 168, 92, 0.08);
  border: 1px solid rgba(201, 168, 92, 0.25);
  border-radius: 12px;
  padding: 1rem 2rem;
}

.reviews-overall-score {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.reviews-overall-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.reviews-overall-count {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-overall-rank {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.reviews-grid {
  position: relative;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-carousel-viewport {
  flex: 1;
  overflow: hidden;
  min-height: 220px;
}

.reviews-prev,
.reviews-next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 168, 92, 0.35);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}
.reviews-prev:hover,
.reviews-next:hover {
  background: rgba(201, 168, 92, 0.12);
  border-color: rgba(201, 168, 92, 0.6);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(201, 168, 92, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.review-card {
  background: var(--ink-soft);
  border: 1px solid rgba(201, 168, 92, 0.15);
  border-radius: 12px;
  padding: 1.75rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.review-card.active {
  display: flex;
  animation: review-fade-in 400ms ease;
}

@keyframes review-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-card:hover {
  border-color: rgba(201, 168, 92, 0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.review-verify {
  font-size: 0.72rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.review-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.review-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.review-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-source-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--cream-dim);
}

.review-source-google    { background: rgba(66,133,244,0.15); color: #8ab4f8; }
.review-source-tripadvisor { background: rgba(52,168,83,0.15); color: #81c995; }
.review-source-facebook  { background: rgba(24,119,242,0.15); color: #7aacf5; }

/* ===== FLOATING BOOK BUTTON ===== */
.floating-book-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(201, 168, 92, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.floating-book-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-book-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px rgba(201, 168, 92, 0.5);
}

@media (max-width: 600px) {
  .floating-book-btn {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 0.6rem;
  }
}

/* ===== OPEN/CLOSED STATUS ===== */
.open-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin: 1rem 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-status 2s ease-in-out infinite;
}

.status-dot.open {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.status-dot.closed {
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
  animation: none;
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* ===== PARALLAX GALLERY ===== */
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  will-change: transform;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered reveal for grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--gold-light);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .review-card {
    transition: none;
  }
  .floating-book-btn {
    transition: none;
  }
  .status-dot {
    animation: none;
  }
}
