: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;
  /* Tracking tokens */
  --track-tight: 0.03em;   /* small sans body text */
  --track-label: 0.08em;   /* small uppercase sans labels */
  --track-wide: 0.16em;    /* medium uppercase labels */
  --track-display: 0.22em; /* hero-adjacent eyebrow / small caps */
}

* { 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: var(--track-tight);
}
.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: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: height 220ms ease;
}
.site-nav.scrolled .site-nav-inner { height: 95px; }
.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: 1; }
.brand-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
}
.brand-logo {
  height: 90px;
  width: auto;
}
.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: var(--track-wide);
  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: var(--track-wide);
  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;
  position: relative;
  overflow: hidden;
}
/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 50% 50%, rgba(13,12,10,0.62) 0%, transparent 100%),
    linear-gradient(180deg, rgba(13,12,10,0.10) 0%, rgba(13,12,10,0.50) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .reveal {
  position: relative;
  z-index: 2;
}

/* Hero image gallery - triptych */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 33.34%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-panel:nth-child(1),
.hero-panel:nth-child(2) {
  border-right: 4px solid #0d0c0a;
}
.hero-panel:nth-child(1) {
  left: 0;
  background-image: url('../images/drinks/aperol-spritz-outside.jpeg');
}
.hero-panel:nth-child(2) {
  left: 33.33%;
  background-image: url('../images/drinks/Pornstar-Mojito.JPG');
}
.hero-panel:nth-child(3) {
  left: 66.67%;
  background-image: url('../images/food/tapas-spread-nachos-hummus-prawns.jpg');
}
.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(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
}

.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;
}

/* ── Legal pages (privacy, terms) ── */
.legal-prose {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.legal-prose .legal-meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(212,205,189,0.45);
  margin: 0 0 2.8rem;
  letter-spacing: var(--track-tight);
}
.legal-prose h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin: 2.8rem 0 0.7rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201,168,92,0.12);
}
.legal-prose h2:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.legal-prose p {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  margin: 0 0 0.9rem;
}
.legal-prose ul {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  margin: 0 0 0.9rem 1.4rem;
  padding: 0;
}
.legal-prose li { margin-bottom: 0.3rem; }
.legal-prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose strong { color: var(--cream); font-weight: 500; }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  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: var(--track-wide);
  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: normal;
  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; }

.contact-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 160ms ease;
}
.contact-link:hover { opacity: 0.8; }
.contact-link svg { flex-shrink: 0; color: var(--gold); }

.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: var(--track-wide);
  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; }
.dietary-key {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0.75rem 0 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(var(--gold-rgb, 212,175,55), 0.25);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: var(--track-tight);
  color: var(--cream-dim);
}
.dietary-key-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}
.dietary-key-item abbr {
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  cursor: default;
}
.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: var(--track-tight);
}
.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-downloads {
  text-align: center;
}
.package-downloads-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.package-downloads-copy {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.package-downloads-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.package-download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,92,0.25);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.package-download-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,92,0.07);
}
.package-download-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.package-download-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
}
.package-download-sub {
  font-size: 0.75rem;
  color: var(--cream-dim);
  letter-spacing: var(--track-tight);
}

.package-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 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: var(--track-tight);
}

.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: 3rem 0 2rem;
  margin-top: 4rem;
  text-align: center;
}
.site-footer p { color: rgba(212,205,189,0.65); margin: 0.2rem 0; font-size: 0.76rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: left;
}
.footer-col-heading {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.footer-hours-list .footer-hour-row {
  display: flex;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.73rem;
  color: rgba(212,205,189,0.58);
  line-height: 1.75;
}
.footer-hours-list .fh-day {
  min-width: 2.4rem;
  color: rgba(212,205,189,0.38);
}
.footer-hours-list .footer-hour-row.today { color: var(--cream-dim); }
.footer-hours-list .footer-hour-row.today .fh-day { color: var(--gold-light); }
.fh-closed { color: rgba(212,205,189,0.3) !important; font-style: italic; }
.footer-address {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(212,205,189,0.58);
}
.footer-address p { margin: 0 0 0.4rem; }
.footer-address a { color: inherit; text-decoration: none; }
.footer-address a:hover { color: var(--gold); }
.w3w-mark { font-weight: 700; color: #e11f26; font-size: 0.85em; letter-spacing: -0.02em; margin-right: 0.05em; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,92,0.08);
}
.footer-legal { color: rgba(212,205,189,0.4); font-size: 0.68rem; margin: 0.8rem auto 0 !important; max-width: 560px; line-height: 1.6; text-align: center; }
.footer-legal-links { display: flex; justify-content: center; gap: 1.2rem; margin-top: 0.6rem; }
.footer-legal-links a { color: rgba(212,205,189,0.4); font-size: 0.68rem; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-links a:hover { color: var(--gold); }
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; max-width: 100%; text-align: center; }
  .footer-hours-list .footer-hour-row { justify-content: center; }
  .footer-hours-list .fh-day { min-width: auto; }
}

/* ═══════════════════════════════════════════════
   SECRET GARDEN PAGE
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.sg-hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sg-hero-bg {
  position: absolute;
  inset: -25% 0;
  background-image: url('../images/drinks/pimms-outdoor-terrace.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.sg-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,12,10,0.62) 0%, rgba(13,12,10,0.06) 28%, rgba(13,12,10,0.06) 52%, rgba(13,12,10,0.94) 100%),
    radial-gradient(ellipse at center, transparent 15%, rgba(13,12,10,0.72) 100%);
  z-index: 1;
}
.sg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.sg-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
}
.sg-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 30px rgba(0,0,0,0.5);
  opacity: 0;
  animation: sg-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  margin-bottom: 1.2rem;
}
.sg-hero-content .sg-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 0.9rem;
}
.sg-hero-title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 11vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 1.2rem;
  display: block;
}
.sg-word {
  display: inline-block;
  opacity: 0;
  margin-right: 0.25em;
}
.sg-word-em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.sg-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.sg-char {
  display: inline-block;
  transform: translateY(115%);
  animation: sg-char-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sg-word-em .sg-char {
  text-shadow: 0 0 60px rgba(201,168,92,0.55), 0 0 120px rgba(201,168,92,0.22);
}
.sg-hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: var(--track-label);
  color: var(--cream-dim);
  opacity: 0;
  animation: sg-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
  margin-bottom: 2.2rem;
}
.sg-hero-sub::before {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(201,168,92,0.65), transparent);
  margin: 0 auto 1.1rem;
}
.sg-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: sg-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}

/* Scroll indicator */
.sg-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: sg-fade-up 0.9s ease 1.6s forwards;
}
.sg-scroll-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(212,205,189,0.5);
}
.sg-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,92,0.7), transparent);
  animation: sg-scroll-pulse 2s ease-in-out 2s infinite;
  transform-origin: top;
}

/* ── Keyframes ── */
@keyframes sg-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sg-char-in {
  from { transform: translateY(115%); }
  to   { transform: translateY(0); }
}
@keyframes sg-scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.4; }
}
@keyframes sg-shimmer {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  50.001% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes sg-glow-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.85; transform: translate(-50%, -50%) scale(1.12); }
}

/* ── Intro / Pull Quote ── */
.sg-intro { padding-top: 5rem; padding-bottom: 4rem; }
.sg-intro .container {
  position: relative;
}
.sg-intro .container::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 300;
  color: rgba(201,168,92,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sg-quote-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sg-quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,92,0.4), transparent);
  position: relative;
  overflow: hidden;
}
.sg-quote-wrap.visible .sg-quote-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: sg-shimmer 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.sg-quote {
  margin: 0;
  text-align: center;
  flex: 0 0 auto;
  max-width: 560px;
}
.sg-quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}

/* ── Lillet Spritz Signature Feature ── */
.sg-drink-feature {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 82vh;
  position: relative;
}
.sg-drink-feature-content {
  background: var(--ink-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.sg-drink-feature-content::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,92,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.sg-drink-feature-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.sg-drink-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.sg-drink-name {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}
.sg-drink-name em {
  color: var(--gold);
  font-style: italic;
  display: block;
}
.sg-drink-desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
  margin: 0 0 2.4rem;
}
.sg-drink-feature-img {
  position: relative;
  overflow: hidden;
}
.sg-drink-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-drink-feature:hover .sg-drink-feature-img img {
  transform: scale(1.05);
}
.sg-drink-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: sg-badge-pulse 3s ease-in-out infinite;
}
.sg-drink-badge span {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
@keyframes sg-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,92,0.5); }
  50%       { box-shadow: 0 0 0 16px rgba(201,168,92,0); }
}

/* ── Feature Cards ── */
.sg-features { }
.sg-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.sg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,92,0.14);
  border-top: 1px solid rgba(201,168,92,0.32);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 300ms ease, background 300ms ease, transform 400ms cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}
.sg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,92,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.sg-card:hover::before { opacity: 1; }
.sg-card:hover { border-color: rgba(201,168,92,0.30); border-top-color: rgba(201,168,92,0.8); background: rgba(201,168,92,0.04); }
.sg-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  transform: skewX(-12deg);
  transition: left 600ms ease;
  pointer-events: none;
}
.sg-card:hover::after { left: 150%; }
.sg-card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.sg-card-icon svg { width: 100%; height: 100%; }
.sg-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 0.7rem;
}
.sg-card p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream-dim);
  margin: 0 0 1.2rem;
}
.sg-card-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  position: relative;
}
.sg-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 250ms ease;
}
.sg-card-link:hover::after { width: 100%; }

/* ── Gallery ── */
.sg-gallery-section { padding: 4rem 0 5rem; }
.sg-gallery-section .container { margin-bottom: 2rem; }
.sg-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 340px 340px 340px;
  gap: 2px;
}
.sg-gallery-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sg-gallery-item.sg-gallery-visible {
  opacity: 1;
  transform: scale(1);
}
.sg-gallery-item:nth-child(1) { transition-delay: 0ms; }
.sg-gallery-item:nth-child(2) { transition-delay: 80ms; }
.sg-gallery-item:nth-child(3) { transition-delay: 160ms; }
.sg-gallery-item:nth-child(4) { transition-delay: 240ms; }
.sg-gallery-item:nth-child(5) { transition-delay: 320ms; }
.sg-gallery-hero {
  grid-column: 1;
  grid-row: 1 / 3;
}
.sg-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.sg-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.sg-gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
.sg-gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
.sg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
}
.sg-gallery-item:hover img { transform: scale(1.06); }
.sg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,10,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity 350ms ease;
}
.sg-gallery-item:hover .sg-gallery-overlay { opacity: 1; }
.sg-gallery-overlay span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--cream);
  transform: translateY(6px);
  transition: transform 350ms cubic-bezier(0.16,1,0.3,1);
}
.sg-gallery-item:hover .sg-gallery-overlay span { transform: translateY(0); }

/* ── Moods ── */
.sg-moods { padding-top: 4rem; padding-bottom: 4rem; }
.sg-moods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 3rem;
}
.sg-mood {
  overflow: hidden;
  border-radius: 3px;
}
.sg-reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.sg-reveal-left.visible,
.sg-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.sg-mood-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 3px 3px 0 0;
}
.sg-mood-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
}
.sg-mood:hover .sg-mood-img img { transform: scale(1.04); }
.sg-mood-text {
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: 1px solid rgba(201,168,92,0.28);
  margin-top: 0.3rem;
}
.sg-mood-text h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 0.7rem;
}
.sg-mood-text p {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-dim);
  margin: 0 0 0.6rem;
}
.sg-mood-time {
  font-size: 0.72rem !important;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold) !important;
}

/* ── CTA Section ── */
.sg-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 1.5rem;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-mid) 55%, var(--ink) 100%);
  border-top: 1px solid rgba(201,168,92,0.18);
}
.sg-cta::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(201,168,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sg-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,92,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: sg-glow-pulse 4s ease-in-out infinite;
}
.sg-cta-inner { position: relative; z-index: 1; }
.sg-cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0.5rem 0 1.2rem;
}
.sg-cta-inner h2 em { color: var(--gold); font-style: italic; }
.sg-cta-inner > p:not(.sg-cta-access):not(.eyebrow) {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.sg-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.sg-cta-access {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: var(--track-tight);
  color: rgba(212,205,189,0.4);
  margin: 0;
}
.sg-cta-access a { color: rgba(201,168,92,0.7); }
.sg-cta-access a:hover { color: var(--gold); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .sg-cards { grid-template-columns: 1fr 1fr; }
  .sg-drink-feature { grid-template-columns: 1fr 1fr; min-height: 60vh; }
}
@media (max-width: 768px) {
  .sg-drink-feature { grid-template-columns: 1fr; min-height: auto; }
  .sg-drink-feature-content { order: 2; padding: 3.5rem 1.5rem; }
  .sg-drink-feature-img { order: 1; aspect-ratio: 4/3; }
  .sg-drink-feature-inner { max-width: 100%; }
  .sg-drink-name { font-size: clamp(2.8rem, 10vw, 4rem); }
  .sg-quote-wrap { flex-direction: column; gap: 1rem; }
  .sg-quote-line { width: 60px; height: 1px; flex: 0 0 auto; }
  .sg-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .sg-gallery-hero { grid-column: 1 / -1; grid-row: 1; }
  .sg-gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .sg-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .sg-gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .sg-gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .sg-moods-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sg-reveal-left, .sg-reveal-right { transform: translateY(24px); }
}
@media (max-width: 560px) {
  .sg-cards { grid-template-columns: 1fr; }
  .sg-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
  .sg-gallery-hero { grid-column: 1; grid-row: 1; }
  .sg-gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .sg-gallery-item:nth-child(3) { grid-column: 1; grid-row: 3; }
  .sg-gallery-item:nth-child(4) { grid-column: 1; grid-row: 4; }
  .sg-gallery-item:nth-child(5) { grid-column: 1; grid-row: 5; }
}

/* Occasions grid (private hire) */
.occasions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.occasions-grid span {
  background: rgba(201,168,92,0.1);
  border: 1px solid rgba(201,168,92,0.3);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: var(--font-body);
}

/* Loyalty & Social */
.loyalty-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.loyalty-social-card {
  background: var(--ink-soft);
  border: 1px solid rgba(201,168,92,0.15);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.loyalty-social-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
}
.loyalty-social-card p {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(212,205,189,0.65);
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}
.lsc-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}
.lsc-icon svg { width: 100%; height: 100%; }
.lsc-prompt {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
@media (max-width: 640px) {
  .loyalty-social-grid { grid-template-columns: 1fr; }
}

/* Secret Garden */
.secret-garden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.secret-garden-content { }
.secret-garden-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .secret-garden-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .secret-garden-image { order: -1; }
}
.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.btn-static,
.hero .btn-primary.btn-static:hover {
  animation: none;
}
.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) {
  /* Hero: collapse triptych to single full-width image */
  .hero-panel:nth-child(1) {
    width: 100%;
    border-right: none;
    background-image: url('../images/drinks/Pornstar-Mojito.JPG');
  }
  .hero-panel:nth-child(2),
  .hero-panel:nth-child(3) {
    display: none;
  }

  .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 .site-nav-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open .brand {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 0 0;
  }
  .site-nav.open .nav-toggle {
    margin-left: auto;
  }
  .site-nav.open .nav-primary {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 1rem 0 2rem;
    align-items: center;
  }
  .nav-links { width: 100%; gap: 1.5rem; flex-direction: column; align-items: center; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { margin-top: 1rem; align-self: center; }
}

@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: var(--track-tight);
  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: var(--track-label);
  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(--sans);
  font-size: 0.95rem;
  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;
  }
}

/* ===== SIGNATURE COCKTAIL FEATURE ===== */
.sig-cocktail-section { padding-top: 0; }
.sig-cocktail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sig-cocktail-media {
  position: relative;
  border-radius: 6px;
  overflow: visible; /* allow shadow/outline to show */
  background: var(--ink-soft);
  max-width: 360px;
  margin: 0 auto;
}
.sig-cocktail-media::before {
  /* Outer decorative gold ring */
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 10px;
  border: 1px solid rgba(201,168,92,0.22);
  pointer-events: none;
  z-index: 1;
}
.sig-cocktail-video {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(201,168,92,0.5);
  box-shadow:
    0 0 0 5px rgba(10,9,8,0.9),
    0 0 0 6px rgba(201,168,92,0.22),
    0 24px 64px rgba(0,0,0,0.7);
}
.sig-cocktail-content .eyebrow { display: block; margin-bottom: 0.5rem; }
.sig-cocktail-content .section-title { margin-bottom: 1rem; }
.sig-cocktail-content .section-copy { margin: 0 0 1.5rem; }
.sig-cocktail-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.sig-cocktail-hh {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(212,205,189,0.5);
  margin: 0;
}
@media (max-width: 768px) {
  .sig-cocktail {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .sig-cocktail-media { max-width: 300px; }
  .sig-cocktail-content .section-copy { margin-left: auto; margin-right: 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;
}

/* ===== MENU DEAL CALLOUTS ===== */
.menu-deals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2rem;
}
.menu-deal-card {
  background: var(--ink-soft);
  border: 1px solid rgba(201,168,92,0.22);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.menu-deal-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.menu-deal-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
  line-height: 1.1;
}
.menu-deal-desc {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: rgba(212,205,189,0.65);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .menu-deals { grid-template-columns: 1fr; }
}

/* ===== MOCKTAILS SECTION ===== */
.mocktail-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,92,0.12);
}
.mocktail-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.mocktail-header .drinks-section-title { margin: 0; }
.mocktail-deal { display: flex; align-items: center; }
.mocktail-deal-badge {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.mocktail-intro {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(212,205,189,0.65);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 1.25rem;
}
.mocktail-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.mocktail-examples span {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(212,205,189,0.7);
  background: rgba(201,168,92,0.08);
  border: 1px solid rgba(201,168,92,0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}
.mocktail-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(212,205,189,0.4);
  margin: 0;
  font-style: italic;
}

/* ===== ACCESSIBILITY BANNER ===== */
.access-banner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--ink-soft);
  border: 1px solid rgba(201,168,92,0.22);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}
.access-banner-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold);
}
.access-banner-icon svg { width: 100%; height: 100%; }
.access-banner-body { flex: 1; min-width: 220px; }
.access-banner-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 0.4rem;
}
.access-banner-body p {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: rgba(212,205,189,0.65);
  line-height: 1.6;
  margin: 0;
}
.access-banner-cta { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .access-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .access-banner-cta { width: 100%; text-align: center; }
}

/* ===== 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: var(--track-wide);
  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: var(--track-tight);
  margin-bottom: 0.25rem;
}

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

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

.reviews-grid {
  position: relative;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel-wrap {
  position: relative;
}

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

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.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;
}

.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: var(--track-tight);
  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: var(--track-tight);
}

.review-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  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: var(--track-label);
}

.review-source-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--track-label);
  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: var(--track-label);
  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;
  }
}
