/*
Theme Name: Clyde May's Distillery
Theme URI: https://clydemays.com
Author: Manus AI
Author URI: https://manus.im
Description: Official premium WordPress theme for Clyde May's Distillery - The Spirit of Alabama. Pixel-perfect conversion from React/Tailwind with full hover effects, animations, and WordPress Customizer support for non-technical editing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://clydemays.com
Text Domain: clyde-mays
Tags: distillery, whiskey, premium, dark, animations, full-width
*/

/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #c28e4e; border-radius: 4px; }

/* Text selection */
::selection { background: #c28e4e; color: #000; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-serif, h1.serif, h2.serif, h3.serif, h4.serif {
  font-family: 'Playfair Display', serif;
}

.font-abolition {
  font-family: 'abolition', sans-serif;
}

/* ============================================================
   BRAND COLORS
   ============================================================ */
:root {
  --gold: #c28e4e;
  --gold-dark: #8c6536;
  --gold-muted: #a89968;
  --black-deep: #0a0a0a;
  --black-card: #111111;
  --black-section: #050505;
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --blue-accent: #326295;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-wrapper {
  min-height: 100vh;
  background-color: var(--black-deep);
  color: white;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.7s ease;
  padding: 2rem 0;
  background: transparent;
}

#site-navigation.scrolled,
#site-navigation.menu-open {
  background: rgba(0,0,0,0.95);
  padding: 1rem 0;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 110;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.05); }

.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: -4px;
}

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

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 110;
}

.nav-locator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-locator:hover { color: var(--gold); }

@media (min-width: 640px) {
  .nav-locator { display: flex; }
}

/* Hamburger */
.hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  outline: none;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger-line {
  display: block;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.hamburger-line:nth-child(1) { width: 24px; }
.hamburger-line:nth-child(2) { width: 16px; background: var(--gold); margin-left: auto; }
.hamburger-line:nth-child(3) { width: 24px; }

.hamburger.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 90;
  transition: all 0.7s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-overlay.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/carbon-fibre.png');
  opacity: 0.1;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-item {
  overflow: hidden;
  transition: all 0.7s ease;
  transform: translateY(80px);
  opacity: 0;
}

.mobile-menu-overlay.open .mobile-nav-item {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-item:nth-child(1) { transition-delay: 0ms; }
.mobile-nav-item:nth-child(2) { transition-delay: 100ms; }
.mobile-nav-item:nth-child(3) { transition-delay: 200ms; }
.mobile-nav-item:nth-child(4) { transition-delay: 300ms; }
.mobile-nav-item:nth-child(5) { transition-delay: 400ms; }

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-nav-num {
  position: absolute;
  top: -4px;
  right: -16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.mobile-social-links {
  display: flex;
  gap: 2.5rem;
  margin-top: 5rem;
  transition: all 1s ease 0.5s;
  opacity: 0;
  transform: translateY(40px);
}

.mobile-menu-overlay.open .mobile-social-links {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social-link {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-social-link:hover { color: var(--gold); }

.mobile-menu-footer {
  position: absolute;
  bottom: 3rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.1);
  text-align: center;
}

/* ============================================================
   AGE VERIFIER
   ============================================================ */
#age-verifier {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#age-verifier.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#age-verifier::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/carbon-fibre.png');
  opacity: 0.1;
}

.age-verifier-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem;
  max-width: 500px;
}

.age-verifier-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}

.age-verifier-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.age-verifier-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.age-verifier-text {
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.age-verifier-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .age-verifier-buttons { flex-direction: row; justify-content: center; }
}

.btn-verify-yes {
  background: var(--gold);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(194,142,78,0.3);
}
.btn-verify-yes:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(194,142,78,0.5); }

.btn-verify-no {
  background: transparent;
  color: rgba(255,255,255,0.4);
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-verify-no:hover { color: white; border-color: rgba(255,255,255,0.3); }

.age-verifier-disclaimer {
  margin-top: 2rem;
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 13rem;
  padding-bottom: 0;
}

@media (min-width: 768px) { .hero-section { padding-top: 11rem; } }
@media (min-width: 1024px) { .hero-section { padding-top: 13rem; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 72rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  height: 1px;
  width: 3rem;
  background: var(--gold);
}

.hero-eyebrow-text {
  color: var(--gold);
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  animation: slide-up 1.2s ease-out forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 30px rgba(194,142,78,0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 640px) { .btn-primary { width: auto; } }
.btn-primary:hover { transform: scale(1.05); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
@media (min-width: 640px) { .btn-secondary { width: auto; } }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll-cue {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  opacity: 0.4;
  animation: bounce 2s infinite;
}

/* ============================================================
   HISTORY SECTION
   ============================================================ */
.history-section {
  padding: 1rem 0 8rem;
  background: #000;
  color: white;
  position: relative;
  overflow: hidden;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .history-grid { grid-template-columns: 1fr 1fr; }
}

.history-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.history-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.history-quote {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

.history-milestones {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.milestone-item {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}
.milestone-item:hover .milestone-year { transform: scale(1.1); }

.milestone-year {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  min-width: 4rem;
  transition: transform 0.3s ease;
}

.milestone-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.milestone-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.6;
}

.history-image-wrap {
  position: relative;
}

.history-image-card {
  aspect-ratio: 4/5;
  background: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: relative;
}

.history-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 1s ease, opacity 1s ease;
}

.history-image-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.history-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.history-image-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}

.history-image-caption-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.history-image-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
}

.history-pulse-ring {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(194,142,78,0.2);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

/* ============================================================
   PRODUCT GALLERY
   ============================================================ */
.products-section {
  padding: 8rem 0;
  background: var(--black-section);
  position: relative;
  overflow: hidden;
}

.products-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-header { flex-direction: row; }
}

.products-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.products-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width: 40rem;
}

.explore-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.3s ease;
}
.explore-link:hover { gap: 1.25rem; }
.explore-link svg { transition: transform 0.3s ease; }
.explore-link:hover svg { transform: translateX(8px); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0 1.5rem;
  transition: box-shadow 0.7s ease;
  background-color: #e8e4db;
  background-size: cover;
  background-position: center;
}

.product-card-inner:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.product-card-header {
  width: 100%;
  z-index: 10;
  padding: 0 1.5rem;
  flex-shrink: 0;
  text-align: center;
}

.product-card-type {
  font-size: 11px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.15em;
  color: var(--blue-accent);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-card-name {
  font-family: 'abolition', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.85;
  letter-spacing: 0.05em;
  color: var(--gold-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-card-proof {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #424242;
  text-transform: uppercase;
}

.product-card-image-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  margin: 1rem 0;
  z-index: 10;
}

.product-card-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  transform-origin: bottom center;
  transform: scale(1.1);
  transition: transform 1s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.product-card:hover .product-card-image-wrap img {
  transform: scale(1.25);
}

.product-card-footer {
  width: 100%;
  z-index: 10;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-buy {
  width: 80%;
  background: var(--gold-muted);
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.btn-buy:hover { background: var(--gold-dark); }

.btn-learn-more {
  font-family: 'Playfair Display', serif;
  color: var(--blue-accent);
  font-size: 0.875rem;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-learn-more:hover { color: var(--gold-muted); }

/* Shelving Section */
.shelving-section {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: 1fr;
  background: #111;
  border-radius: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 1024px) {
  .shelving-section { grid-template-columns: 1fr 1fr; }
}

.shelving-content {
  padding: 4rem;
}

@media (min-width: 1024px) { .shelving-content { padding: 4rem; } }

.shelving-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.shelving-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-gold:hover { background: var(--gold); color: #000; }

.shelving-image {
  min-height: 500px;
}

.shelving-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease;
  display: block;
}
.shelving-image:hover img { filter: grayscale(0%); }

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram-section {
  padding: 8rem 0;
  background: #000;
}

.instagram-header {
  text-align: center;
  margin-bottom: 4rem;
}

.instagram-eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.instagram-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

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

@media (min-width: 768px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(30%);
}

.instagram-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(194,142,78,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:hover .instagram-item-overlay { opacity: 1; }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  padding: 8rem 0;
  background: var(--black-section);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/carbon-fibre.png');
  opacity: 0.05;
}

.booking-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) { .booking-gallery { grid-template-columns: repeat(3, 1fr); } }

.booking-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.booking-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(100%);
}

.booking-gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.booking-gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.booking-gallery-item:hover .booking-gallery-caption { opacity: 1; }

.booking-gallery-caption-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  background: #111;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 1024px) {
  .booking-content { grid-template-columns: 1fr 1fr; }
}

.booking-hours {
  padding: 3rem;
  background: rgba(194,142,78,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.booking-hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.booking-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.booking-hours-item:last-child { border-bottom: none; }

.booking-details {
  padding: 3rem;
}

.booking-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.booking-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tasting-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tasting-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.tasting-list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.booking-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.booking-duration {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   INNER CIRCLE / CTA SECTION
   ============================================================ */
.inner-circle-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #000, var(--black-deep));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.inner-circle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/carbon-fibre.png');
  opacity: 0.1;
  pointer-events: none;
}

.inner-circle-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.inner-circle-title em {
  font-style: italic;
  color: var(--gold);
}

.inner-circle-desc {
  color: rgba(255,255,255,0.4);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  font-weight: 300;
}

/* ============================================================
   DISTILLERY PAGE
   ============================================================ */
.distillery-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.distillery-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: ken-burns 20s ease-in-out infinite;
}

.distillery-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: 5rem;
}

.distillery-location-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.distillery-location-badge svg { color: var(--gold); }

.distillery-location-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.8);
}

.distillery-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.distillery-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.distillery-hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.distillery-scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}
.distillery-scroll-btn:hover { color: var(--gold); }
.distillery-scroll-btn svg { color: var(--gold); transition: transform 0.3s ease; }
.distillery-scroll-btn:hover svg { transform: translateY(8px); }
.distillery-scroll-btn span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* Narrative Experience */
.distillery-narrative {
  padding: 10rem 0;
}

.narrative-items {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.narrative-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .narrative-item { flex-direction: row; gap: 8rem; }
  .narrative-item.reverse { flex-direction: row-reverse; }
}

.narrative-image-col {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) { .narrative-image-col { width: 60%; } }

.narrative-image-glow {
  position: absolute;
  inset: -2rem;
  background: rgba(194,142,78,0.05);
  filter: blur(3rem);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 4px;
}
.narrative-image-col:hover .narrative-image-glow { opacity: 1; }

.narrative-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.narrative-image-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
}
.narrative-image-col:hover .narrative-image-frame img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.narrative-image-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(194,142,78,0.2);
}

.narrative-image-tag span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.narrative-text-col {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .narrative-text-col { width: 40%; text-align: left; }
}

.narrative-divider {
  height: 1px;
  width: 5rem;
  background: rgba(194,142,78,0.4);
  margin: 0 auto 2.5rem;
}
@media (min-width: 1024px) { .narrative-divider { margin: 0 0 2.5rem; } }

.narrative-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.narrative-desc {
  color: rgba(255,255,255,0.4);
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.narrative-protocol {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 1024px) { .narrative-protocol { justify-content: flex-start; } }

.narrative-protocol-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.narrative-protocol-icon svg { color: var(--gold); }

.narrative-protocol-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.2);
}

/* Gallery Grid */
.distillery-gallery-section {
  padding: 8rem 0;
  background: var(--black-section);
}

.gallery-header {
  text-align: center;
  margin-bottom: 6rem;
}

.gallery-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 8rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(75%);
  transition: filter 1s ease, transform 1s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { background: transparent; }

/* Production Floor */
.production-section {
  padding: 5rem 0;
  background: var(--black-section);
}

.production-banner {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.production-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.production-banner-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  max-width: 64rem;
}

@media (min-width: 768px) { .production-banner-content { padding: 6rem; } }

.production-icon { color: var(--gold); margin-bottom: 2rem; }

.production-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 8rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.production-title em { color: var(--gold); font-style: italic; }

.production-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Restaurant Menu */
.restaurant-section {
  padding: 10rem 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.restaurant-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 8rem;
}

.restaurant-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(194,142,78,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(194,142,78,0.1);
}
.restaurant-icon svg { color: var(--gold); }

.restaurant-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 8rem);
  margin-bottom: 2rem;
}

.restaurant-tagline {
  color: rgba(255,255,255,0.4);
  max-width: 42rem;
  font-weight: 300;
  font-size: 1.25rem;
  font-style: italic;
  border-left: 1px solid rgba(194,142,78,0.2);
  border-right: 1px solid rgba(194,142,78,0.2);
  padding: 0 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) { .menu-grid { grid-template-columns: 1fr 1fr; } }

.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(194,142,78,0.2);
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.menu-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.menu-item:hover .menu-item-name { color: var(--gold); }

.menu-item-desc {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  font-weight: 300;
}

.menu-item-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  white-space: nowrap;
}

.restaurant-cta {
  margin-top: 8rem;
  text-align: center;
}

.restaurant-cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1rem;
}

.restaurant-cta-hours {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.restaurant-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .restaurant-cta-buttons { flex-direction: row; justify-content: center; }
}

.btn-gold-solid {
  background: var(--gold);
  color: #000;
  padding: 1.5rem 4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 25px 50px rgba(194,142,78,0.2);
  text-decoration: none;
  display: inline-block;
}
.btn-gold-solid:hover { background: white; }

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  padding: 1.5rem 4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px rgba(194,142,78,0.2);
  text-decoration: none;
  display: inline-block;
}
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* Contact Section */
.contact-section {
  padding: 10rem 0;
  background: #080808;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 16/9;
}

.contact-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.contact-image-card:hover img { opacity: 1; filter: grayscale(0%); }

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.contact-info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-info-highlight {
  color: var(--gold);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   SPIRITS PAGE
   ============================================================ */
.spirits-hero {
  position: relative;
  padding: 6rem 0 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.spirits-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.2;
  z-index: 0;
}

.spirits-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(5,5,5,0.4), #050505);
  z-index: 0;
}

.spirits-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 2rem auto 0;
}

.spirits-hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.spirits-hero-badge svg { color: var(--gold); }
.spirits-hero-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.8);
}

.spirits-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.spirits-hero-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.spirits-hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.spirits-scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  margin: 0 auto;
  transition: color 0.3s ease;
}
.spirits-scroll-btn:hover { color: var(--gold); }
.spirits-scroll-btn svg { color: var(--gold); transition: transform 0.3s ease; }
.spirits-scroll-btn:hover svg { transform: translateY(8px); }
.spirits-scroll-btn span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* Spirit Items */
.spirits-list {
  padding: 2rem 0;
}

.spirit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spirit-item:last-child { border-bottom: none; }

@media (min-width: 1024px) {
  .spirit-item { flex-direction: row; gap: 6rem; }
  .spirit-item.reverse { flex-direction: row-reverse; }
}

.spirit-image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) { .spirit-image-col { width: 50%; } }

.spirit-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(194,142,78,0.05), transparent);
  filter: blur(3rem);
  opacity: 0;
  transition: opacity 1s ease;
}
.spirit-image-col:hover .spirit-image-glow { opacity: 1; }

.spirit-image-col img {
  height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(194,142,78,0.15));
  transition: transform 0.7s ease;
  position: relative;
  z-index: 10;
}
.spirit-image-col:hover img { transform: scale(1.05); }

.spirit-content-col {
  width: 100%;
}
@media (min-width: 1024px) { .spirit-content-col { width: 50%; } }

.spirit-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.spirit-name em { font-style: italic; color: var(--gold); }

.spirit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.spirit-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spirit-pill-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

.spirit-pill-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
}

.spirit-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tasting-notes-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}
.tasting-notes-card:hover {
  background: rgba(0,0,0,0.8);
  border-color: rgba(194,142,78,0.3);
  box-shadow: 0 0 30px rgba(194,142,78,0.1);
}

.tasting-notes-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tasting-notes-header svg { color: var(--gold); transition: transform 0.5s ease; }
.tasting-notes-card:hover .tasting-notes-header svg { transform: scale(1.1); }

.tasting-notes-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: color 0.5s ease;
}
.tasting-notes-card:hover .tasting-notes-title { color: var(--gold); }

.tasting-notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .tasting-notes-grid { grid-template-columns: repeat(3, 1fr); } }

.tasting-note-item {}
.tasting-note-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}
.tasting-note-item:hover .tasting-note-label { transform: translateX(8px); }

.tasting-note-text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.tasting-note-item:hover .tasting-note-text { color: white; }

.awards-section {
  padding: 1.5rem;
  margin: 0 -1.5rem;
  border-radius: 1rem;
  transition: background 0.5s ease;
}
.awards-section:hover { background: rgba(255,255,255,0.05); }

.awards-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.awards-header svg { color: var(--gold); transition: transform 0.5s ease; }
.awards-section:hover .awards-header svg { transform: rotate(12deg); }

.awards-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.8);
  transition: color 0.5s ease;
}
.awards-section:hover .awards-title { color: white; }

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-item {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  border-left: 2px solid rgba(194,142,78,0.3);
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}
.awards-section:hover .award-item {
  border-left-color: var(--gold);
  transform: translateX(8px);
}

.spirit-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page {
  background: #000;
  min-height: 100vh;
  padding-top: 5rem;
}

.story-header {
  padding: 6rem 0 4rem;
  text-align: center;
}

.story-eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.story-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.story-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  margin: 4rem 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.story-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-narrative {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.story-narrative p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.story-narrative p.lead {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.story-timeline {
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.story-timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  margin-bottom: 6rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.05);
  display: none;
}
@media (min-width: 1024px) { .timeline-line { display: block; } }

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  position: relative;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .timeline-item { flex-direction: row; gap: 4rem; }
  .timeline-item.right { flex-direction: row-reverse; }
}

.timeline-image-col {
  width: 100%;
}
@media (min-width: 1024px) { .timeline-image-col { width: 50%; } }

.timeline-image-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.5s ease;
}
.timeline-image-col:hover img { transform: scale(1.03); }

.timeline-content-col {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .timeline-content-col { width: 50%; text-align: left; }
  .timeline-item.right .timeline-content-col { text-align: right; }
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-item-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover { color: var(--gold); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  text-align: left;
}
.footer-nav-link:hover { color: white; }

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-info-highlight {
  color: var(--gold);
  font-weight: 700;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-email-form {
  display: flex;
}

.footer-email-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px 0 0 4px;
  font-size: 0.875rem;
  color: white;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer-email-input:focus { border-color: var(--gold); }
.footer-email-input::placeholder { color: rgba(255,255,255,0.3); }

.footer-email-btn {
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.footer-email-btn:hover { background: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-copyright {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
}

.footer-drink-responsibly {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.modal-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.modal-body {
  flex: 1;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

.modal-fallback {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.modal-fallback a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-fallback a:hover { color: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes ken-burns {
  0% { transform: scale(1) translate(0, 0); }
  25% { transform: scale(1.1) translate(-1%, -1%); }
  50% { transform: scale(1.05) translate(1%, 0); }
  75% { transform: scale(1.08) translate(0, 1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar #site-navigation {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #site-navigation {
    top: 46px;
  }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}

/* ============================================================
   CUSTOMIZER LIVE PREVIEW SUPPORT
   ============================================================ */
body.customizer-preview .site-wrapper {
  transition: background-color 0.3s ease;
}

/* ============================================================
   MENU GRID (continued)
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) { .menu-grid { grid-template-columns: 1fr 1fr; } }

.menu-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s ease;
}
.menu-item:hover { transform: translateX(8px); }
.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.menu-item-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
}

.menu-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.restaurant-cta {
  text-align: center;
  margin-top: 8rem;
  padding-top: 6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.restaurant-cta-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.restaurant-cta-hours {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.restaurant-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .restaurant-cta-buttons { flex-direction: row; justify-content: center; }
}

.btn-gold-solid {
  background: var(--gold);
  color: #000;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold-solid:hover { background: var(--gold-dark); transform: scale(1.05); }

.btn-gold-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.contact-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
}
.contact-image-card:hover img { filter: grayscale(0%); transform: scale(1.05); }

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.contact-image-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.contact-info-item svg { color: var(--gold); flex-shrink: 0; }

.contact-info-highlight { color: var(--gold); font-weight: 700; }

/* ============================================================
   SPIRITS PAGE
   ============================================================ */
.spirits-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
}

.spirits-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(194,142,78,0.1) 0%, transparent 70%);
}

.spirits-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.spirits-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(194,142,78,0.1);
  border: 1px solid rgba(194,142,78,0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.spirits-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.spirits-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.spirits-hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.5);
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.spirits-scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}
.spirits-scroll-btn:hover { color: var(--gold); }
.spirits-scroll-btn svg { color: var(--gold); transition: transform 0.3s ease; }
.spirits-scroll-btn:hover svg { transform: translateY(8px); }
.spirits-scroll-btn span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.spirits-list {
  padding: 8rem 0;
  background: var(--black-section);
}

.spirit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 1024px) {
  .spirit-item { flex-direction: row; }
  .spirit-item.reverse { flex-direction: row-reverse; }
}

.spirit-item:last-child { border-bottom: none; }

.spirit-image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) { .spirit-image-col { width: 40%; } }

.spirit-image-glow {
  position: absolute;
  inset: -4rem;
  background: radial-gradient(ellipse at center, rgba(194,142,78,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.spirit-image-col img {
  position: relative;
  z-index: 10;
  object-fit: contain;
  max-width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
  transition: transform 1s ease;
}
.spirit-image-col:hover img { transform: scale(1.05) translateY(-10px); }

.spirit-content-col {
  width: 100%;
}
@media (min-width: 1024px) { .spirit-content-col { width: 60%; } }

.spirit-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.spirit-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.spirit-pills {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.spirit-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spirit-pill-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}

.spirit-pill-value {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.spirit-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.tasting-notes-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tasting-notes-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tasting-notes-header svg { color: var(--gold); }

.tasting-notes-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.tasting-notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .tasting-notes-grid { grid-template-columns: repeat(3, 1fr); } }

.tasting-note-item {}

.tasting-note-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tasting-note-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
}

.awards-section {
  background: rgba(194,142,78,0.03);
  border: 1px solid rgba(194,142,78,0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.awards-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.awards-header svg { color: var(--gold); }

.awards-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.award-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.spirit-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .spirit-cta-buttons { flex-direction: row; align-items: center; }
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page {
  background: #000;
  min-height: 100vh;
  padding-top: 5rem;
}

.story-header {
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}

.story-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.story-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.story-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 8rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.story-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-narrative {
  max-width: 800px;
  margin: 0 auto 10rem;
  padding: 0 1.5rem;
}

.story-narrative .lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
  font-style: italic;
}

.story-narrative p {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}

.story-timeline {
  position: relative;
  padding: 8rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(194,142,78,0.2);
  transform: translateX(-50%);
  display: none;
}
@media (min-width: 1024px) { .timeline-line { display: block; } }

.story-timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  text-align: center;
  margin-bottom: 8rem;
  line-height: 1.1;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .timeline-item { flex-direction: row; gap: 6rem; }
  .timeline-item.right { flex-direction: row-reverse; }
}

.timeline-image-col {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 1024px) { .timeline-image-col { width: 50%; } }

.timeline-image-col img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
}
.timeline-image-col:hover img { filter: grayscale(0%); transform: scale(1.05); }

.timeline-content-col {
  width: 100%;
}
@media (min-width: 1024px) { .timeline-content-col { width: 50%; } }

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.timeline-item-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.timeline-item-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: white; background: rgba(255,255,255,0.05); }

.modal-body {
  flex: 1;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

.modal-fallback {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: right;
}

.modal-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.modal-fallback a:hover { opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover { color: var(--gold); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-link {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav-link:hover { color: var(--gold); }

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-info-highlight { color: var(--gold); font-weight: 700; }

.footer-email-form {
  display: flex;
  gap: 0.5rem;
}

.footer-email-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  color: white;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.2); }
.footer-email-input:focus { border-color: var(--gold); }

.footer-email-btn {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.footer-email-btn:hover { background: var(--gold-dark); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copyright {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.15);
}

.footer-drink-responsibly {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.1);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.05); }
}

@keyframes ken-burns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.1) translate(-2%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 1023px) {
  .history-section { padding: 4rem 0 6rem; }
  .products-section { padding: 4rem 0; }
  .booking-section { padding: 4rem 0; }
  .spirits-list { padding: 4rem 0; }
  .spirit-item { padding: 4rem 0; }
  .distillery-narrative { padding: 5rem 0; }
  .narrative-items { gap: 8rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
  .booking-content { border-radius: 1rem; }
  .booking-hours { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .modal-body iframe { min-height: 400px; }
  .footer-grid { gap: 3rem; }
  .narrative-items { gap: 5rem; }
  .story-narrative { padding: 0; }
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar #site-navigation {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #site-navigation {
    top: 46px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  #site-navigation,
  #age-verifier,
  .mobile-menu-overlay,
  .modal-overlay,
  .hero-scroll-cue {
    display: none !important;
  }
}

/* ============================================================
   CLYDE'S COUNSEL FLOATING ACTION BUTTON
   ============================================================ */
.clydes-counsel-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(194,142,78,0.4);
  color: #c28e4e;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  user-select: none;
}
.clydes-counsel-fab:hover {
  background: rgba(194,142,78,0.15);
  border-color: rgba(194,142,78,0.8);
  transform: translateY(-2px);
}

/* ============================================================
   CLYDE'S COUNSEL MODAL
   ============================================================ */
.counsel-modal {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 901;
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: #111;
  border: 1px solid rgba(194,142,78,0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.counsel-modal.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.counsel-modal.hidden {
  display: none;
}
.counsel-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.counsel-modal-close:hover { color: #fff; }
.counsel-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c28e4e;
  margin-bottom: 0.75rem;
}
.counsel-modal-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.counsel-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.counsel-modal-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.counsel-modal-input:focus { border-color: #c28e4e; }
.counsel-modal-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================================
   STORY PAGE — UPDATED STYLES
   ============================================================ */
.story-page {
  background: #050505;
  color: #fff;
  min-height: 100vh;
}
.story-header {
  padding: 8rem 1.5rem 2rem;
  text-align: center;
}
.story-main-title,
.story-header .story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 0;
}
.story-video-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  aspect-ratio: 16/9;
  background: #111;
  margin-bottom: 5rem;
}
.story-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-narrative {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 6rem;
}
.story-narrative p + p { margin-top: 1.5rem; }
.story-narrative .lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c28e4e;
  font-style: italic;
  margin-bottom: 2rem;
}
.story-narrative .story-closing {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}
.story-timeline {
  position: relative;
  margin-bottom: 6rem;
}
.story-timeline .timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .story-timeline .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline-items { display: flex; flex-direction: column; gap: 6rem; }
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .timeline-item { flex-direction: row; align-items: center; }
  .timeline-item.md\:flex-row-reverse { flex-direction: row-reverse; }
}
.timeline-dot {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: #c28e4e;
  border-radius: 50%;
  transform: translateX(-5px);
  box-shadow: 0 0 10px rgba(194,142,78,0.8);
  z-index: 10;
}
@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.timeline-content-col {
  width: 100%;
  padding-left: 3rem;
}
@media (min-width: 768px) {
  .timeline-content-col { width: 50%; padding-left: 0; }
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c28e4e;
  display: block;
  margin-bottom: 0.5rem;
}
.timeline-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.timeline-item-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.timeline-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.timeline-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.timeline-image-wrap:hover .timeline-img { transform: scale(1.05); }


/* ============================================================
   COMPREHENSIVE VISUAL EFFECTS PATCH v2
   Fixes: Rye bottle scale, stagger delays, explore arrow,
   story video, hero animation delays, all hover effects
   ============================================================ */

/* --- Staggered reveal using CSS custom property --- */
.reveal {
  transition-delay: var(--reveal-delay, 0s);
}

/* --- Straight Rye bottle: smaller scale to match React source --- */
.product-card--rye .product-card-image-wrap img {
  transform: scale(1.05) !important;
}
.product-card--rye:hover .product-card-image-wrap img {
  transform: scale(1.18) !important;
}

/* --- Explore All Spirits arrow hover --- */
.explore-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.explore-link:hover { gap: 1.25rem; }
.explore-link svg { transition: transform 0.3s ease; flex-shrink: 0; }
.explore-link:hover svg { transform: translateX(6px); }

/* --- Hero staggered animation: eyebrow, title, desc, buttons --- */
.hero-eyebrow {
  animation: slide-up 1s ease-out 0.2s both;
}
.hero-title {
  animation: slide-up 1.2s ease-out 0.35s both !important;
}
.hero-description {
  animation: slide-up 1s ease-out 0.55s both;
}
.hero-buttons {
  animation: slide-up 1s ease-out 0.75s both;
}
.hero-scroll-cue {
  animation: slide-up 0.8s ease-out 0.9s both;
}

/* --- Story page video: proper 16:9 with no squash --- */
.story-video-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  margin: 4rem 0 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: #111 !important;
}
.story-video-wrap video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* --- Ensure age gate NEVER shows on story page --- */
body.page-template-page-story #age-verifier {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --- Product card hover: lift and shadow --- */
.product-card-inner {
  overflow: hidden !important;
  transition: box-shadow 0.7s ease, transform 0.4s ease !important;
}
.product-card:hover .product-card-inner {
  box-shadow: 0 32px 64px rgba(0,0,0,0.6) !important;
  transform: translateY(-4px) !important;
}

/* --- History section image: grayscale-to-color with zoom --- */
.history-image-card { overflow: hidden; border-radius: 0.75rem; cursor: pointer; }
.history-image-card img {
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
  transform: scale(1.0);
}
.history-image-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* --- Shelving image: grayscale-to-color with zoom --- */
.shelving-image { overflow: hidden; }
.shelving-image img {
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1.2s ease;
  transform: scale(1.0);
}
.shelving-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* --- Timeline images: grayscale-to-color --- */
.timeline-image-wrap { overflow: hidden; }
.timeline-img {
  filter: grayscale(100%);
  transition: filter 1s ease, transform 0.7s ease !important;
}
.timeline-image-wrap:hover .timeline-img {
  filter: grayscale(0%) !important;
  transform: scale(1.05) !important;
}

/* --- Instagram grid: grayscale-to-color --- */
.instagram-item { overflow: hidden; }
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.8s ease, transform 0.8s ease;
  transform: scale(1.0);
}
.instagram-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* --- Distillery gallery images: grayscale-to-color --- */
.distillery-gallery-item { overflow: hidden; border-radius: 0.5rem; }
.distillery-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(75%);
  transition: filter 1s ease, transform 1.2s ease;
  transform: scale(1.0);
}
.distillery-gallery-item:hover img {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}

/* --- Distillery feature section images: grayscale-to-color --- */
.distillery-feature-img { overflow: hidden; }
.distillery-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1.2s ease, transform 1.2s ease;
  transform: scale(1.0);
}
.distillery-feature-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* --- Spirits page: bottle hover scale --- */
.spirit-bottle-img {
  transition: transform 0.8s ease !important;
  transform: scale(1.0) !important;
}
.spirit-item:hover .spirit-bottle-img {
  transform: scale(1.06) !important;
}

/* --- Milestone year hover scale --- */
.milestone-year {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.milestone-item:hover .milestone-year {
  transform: scale(1.1);
  color: var(--gold);
}

/* --- Booking card hover lift --- */
.booking-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- Clyde's Counsel FAB: pulse ring --- */
#clydes-counsel-btn {
  animation: counsel-pulse 3s ease-in-out infinite;
}
@keyframes counsel-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(194,142,78,0.4); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 12px rgba(194,142,78,0); }
}

/* --- Hero bg: GPU-accelerated parallax --- */
.hero-bg {
  will-change: transform;
}
@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll !important; }
}

/* --- Button primary: enhanced hover glow --- */
.btn-primary:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 40px rgba(194,142,78,0.4) !important;
}

/* --- Outline gold button: fill on hover --- */
.btn-outline-gold {
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}
.btn-outline-gold:hover {
  background: var(--gold) !important;
  color: #000 !important;
  box-shadow: 0 0 30px rgba(194,142,78,0.3) !important;
}

/* --- Contact image cards: grayscale-to-color --- */
.contact-image-card { overflow: hidden; }
.contact-image-card img {
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
}
.contact-image-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
