/* ============================================
   CHEZ BACCHUS - Elevated California Cuisine
   Color Palette: Forest Green, Burgundy Wine,
   Champagne Gold, Warm Cream
   ============================================ */

/* === CSS Variables === */
:root {
  /* Primary Colors */
  --green-deep: #1a3a2a;
  --green-dark: #1e4d35;
  --green-mid: #2a6b4a;
  --green-light: #3d8b65;

  /* Wine / Burgundy */
  --wine-deep: #3d1a2a;
  --wine: #6b2d4a;
  --wine-light: #8a3d5c;
  --wine-muted: #4a2035;

  /* Gold / Champagne */
  --gold: #c9a96e;
  --gold-light: #d4ba85;
  --gold-bright: #dac07a;
  --gold-dim: #a88d5a;

  /* Neutrals */
  --cream: #f8f3eb;
  --cream-dark: #ede5d8;
  --ivory: #faf8f4;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --gray-dark: #3a3a3a;
  --gray-mid: #595959;
  --gray-light: #767676;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* === Container === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(26, 58, 42, 0.97);
  padding: 14px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}


.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  padding: 9px 18px !important;
  color: var(--gold) !important;
  font-size: 0.55rem !important;
  letter-spacing: 0.15em !important;
  white-space: nowrap;
  transition: all var(--transition-smooth) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  text-align: center;
}

.mobile-menu-links li {
  margin: 16px 0;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition-smooth);
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.8rem;
  line-height: 1.8;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(170deg,
      rgba(26, 58, 42, 0.82) 0%,
      rgba(61, 26, 42, 0.72) 40%,
      rgba(26, 26, 26, 0.85) 100%
    ),
    url('https://images.unsplash.com/photo-1550966871-3ed3cdb51f3a?w=1920&h=1080&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(107, 45, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26, 58, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero Medallion Watermark */
.hero-medallion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 65vh;
  max-height: 650px;
  width: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  filter: invert(1) sepia(0.2) saturate(0.5) hue-rotate(10deg) brightness(1.4);
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="0.4" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23grain)" width="100" height="100"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.08em;
}

.hero-title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-size: clamp(4rem, 12vw, 9.5rem) !important;
  letter-spacing: 0.03em !important;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
}

.divider-icon {
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid var(--green-deep);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 58, 42, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.btn-outline--dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline--dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* === Section Styles === */
.section {
  padding: var(--section-padding) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--gold-light);
}

.section-label--gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title--light {
  color: var(--white);
}

.section-divider-sm {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0 28px;
}

.section-divider-sm--center {
  margin-left: auto;
  margin-right: auto;
}

.section-divider-sm--gold {
  background: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-top: 20px;
}

.section-intro--light {
  color: rgba(255, 255, 255, 0.82);
}

/* === Intro Strip === */
.intro-strip {
  background: var(--green-deep);
  padding: 40px 0;
  text-align: center;
}

.intro-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.15em;
}

/* === About Section === */
.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-portrait:hover img {
  transform: scale(1.05);
}

.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-align: center;
}

.about-img-accent {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  margin-bottom: 18px;
  line-height: 1.85;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.credential {
  display: flex;
  flex-direction: column;
}

.credential-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 6px;
}

.credential-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential-detail {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 4px;
}

/* === Real Images === */
.about-img-accent img,
.tea-img-main img,
.tea-img-accent img,
.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.about-img-accent:hover img,
.tea-img-main:hover img,
.tea-img-accent:hover img {
  transform: scale(1.05);
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.about-img-accent,
.tea-img-main,
.tea-img-accent,
.experience-card-image {
  overflow: hidden;
}

/* === Parallax Section === */
.parallax-section {
  position: relative;
  padding: 160px 0;
  text-align: center;
  background:
    linear-gradient(135deg,
      rgba(26, 58, 42, 0.88) 0%,
      rgba(61, 26, 42, 0.85) 100%
    ),
    url('Our Philosophy.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.parallax-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.parallax-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

/* === Menu / Cuisine Section === */
.cuisine {
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: var(--gray-mid);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}

.menu-tab.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

.menu-panel {
  display: none;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel.active:not([hidden]) {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-item-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
}

.menu-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wine);
  white-space: nowrap;
}

.menu-item p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 50px;
  font-style: italic;
}

/* Prix Fixe */
.prix-fixe-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: var(--ivory);
  border: 1px solid var(--cream-dark);
}

.prix-fixe-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
}

.prix-fixe-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 16px 0;
}

.prix-fixe-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 40px;
}

.prix-fixe-price span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-mid);
}

.prix-fixe-courses {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.prix-fixe-course {
  padding-top: 30px;
  border-top: 1px solid var(--cream-dark);
}

.course-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 8px;
}

.prix-fixe-course h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.prix-fixe-course p {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* === Wine Section === */
.wine {
  position: relative;
  background:
    linear-gradient(160deg,
      var(--green-deep) 0%,
      var(--wine-muted) 50%,
      var(--charcoal) 100%
    );
  overflow: hidden;
}

.wine::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(107, 45, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.wine .container {
  position: relative;
  z-index: 2;
}

.wine-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.wine-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.wine-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.wine-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.wine-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.wine-category {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-smooth);
}

.wine-category:hover {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.wine-category-icon {
  width: 40px;
  height: 50px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.wine-category-icon svg {
  width: 100%;
  height: 100%;
}

.wine-category h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.wine-category p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 16px;
}

.wine-category-range {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.wine-cta {
  text-align: center;
}

.wine-cta-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}

.wine-cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .wine-cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* === Experiences Section === */
.experiences {
  background: var(--ivory);
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.experience-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.experience-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.experience-card--featured .experience-card-image {
  aspect-ratio: auto;
  min-height: 400px;
}

.experience-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.experience-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.experience-card-content p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.experience-details {
  margin-bottom: 24px;
}

.experience-details li {
  font-size: 0.8rem;
  color: var(--gray-mid);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.experience-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* === Afternoon Tea Section === */
.afternoon-tea {
  background: var(--white);
}

.tea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tea-intro {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.tea-offerings {
  margin-bottom: 36px;
}

.tea-offering {
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--cream-dark);
  background: var(--ivory);
}

.tea-offering--premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.02));
}

.tea-offering h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.tea-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wine);
  display: block;
  margin-bottom: 8px;
}

.tea-offering p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.tea-details {
  margin-bottom: 30px;
}

.tea-details p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.tea-images {
  position: relative;
}

.tea-img-main {
  width: 85%;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tea-img-accent {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* === Private Dining Section === */
.private-dining {
  position: relative;
  /* Solid background color so axe-core can verify contrast directly
     (white + gold-light text both exceed AA on charcoal) */
  background-color: #1a1a1a;
  text-align: center;
  overflow: hidden;
}

.private-dining::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg,
      rgba(26, 26, 26, 0.88) 0%,
      rgba(61, 26, 42, 0.85) 100%
    ),
    url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?w=1920&h=800&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

.private-dining-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.private-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.private-feature {
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.private-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.private-feature p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* === VIP Section === */
.vip {
  background: var(--ivory);
  padding: 80px 0;
}

.vip-card {
  background:
    linear-gradient(135deg, var(--green-deep) 0%, var(--wine-muted) 100%);
  padding: 80px;
  text-align: center;
}

.vip-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.vip-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.vip .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.vip .btn-primary:hover {
  background: var(--gold-bright);
}

/* === Contact Section === */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-details {
  margin-top: 30px;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 8px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.8;
}

.contact-detail a {
  color: var(--charcoal);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-smooth);
}

.contact-detail a:hover {
  border-bottom-color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-dark);
  color: var(--gray-mid);
  transition: all var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-action-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.contact-action-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-action-card p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

/* === Contact Map === */
.contact-map {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  /* Desaturate to match the elegant aesthetic */
  filter: grayscale(0.3) contrast(1.05);
  transition: filter var(--transition-smooth);
}

.contact-map:hover {
  filter: grayscale(0) contrast(1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* === Footer === */
.footer {
  background: var(--charcoal);
  padding: 60px 0;
  text-align: center;
}

/* Explicit background on inner container so axe-core can verify contrast
   for footer links inside nested <nav>. */
.footer-inner {
  background-color: var(--charcoal);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 24px auto;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Directional reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Scale-in reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Fade-in only */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

/* Stagger delay utility classes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* Enhanced hover effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Image zoom on scroll into view */
.about-portrait img,
.tea-img-main img {
  transform: scale(1.1);
}

.about-portrait.visible img,
.tea-img-main.visible img {
  transform: scale(1);
}

/* Wine category stagger */
.wine-category {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition-smooth), background var(--transition-smooth);
}

.wine-category.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menu item subtle entrance */
.menu-item {
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateX(4px);
}

/* Gold divider animation */
.section-divider-sm {
  transform-origin: left;
  transform: scaleX(0);
}

.section-divider-sm--center {
  transform-origin: center;
}

.section-divider-sm.visible {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Credential cards */
.credential {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Private feature card hover */
.private-feature {
  transition: all var(--transition-smooth);
}

.private-feature:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
}

/* Experience card image overlay shine effect */
.experience-card-image {
  position: relative;
}

.experience-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.experience-card:hover .experience-card-image::after {
  transform: translateX(100%);
}

/* Tea offering hover */
.tea-offering {
  transition: all var(--transition-smooth);
}

.tea-offering:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Contact action card hover */
.contact-action-card {
  transition: all var(--transition-smooth);
}

.contact-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

/* VIP card shimmer */
.vip-card {
  position: relative;
  overflow: hidden;
}

.vip-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  animation: vipShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes vipShimmer {
  0%, 100% { transform: translate(-20%, -20%); }
  50% { transform: translate(20%, 20%); }
}

/* Intro strip text animation */
.intro-quote {
  position: relative;
}

.intro-strip {
  overflow: hidden;
}

/* === Responsive === */
@media (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid,
  .tea-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    max-width: 500px;
  }

  .tea-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .wine-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .private-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-card--featured {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  .container {
    padding: 0 24px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wine-stats {
    gap: 24px;
  }

  .wine-stat-number {
    font-size: 2.2rem;
  }

  .wine-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .private-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prix-fixe-card {
    padding: 40px 24px;
  }

  .vip-card {
    padding: 50px 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 260px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title-line {
    font-size: 3rem;
  }

  .hero-title-accent {
    font-size: 3.6rem !important;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .about-img-accent {
    width: 50%;
    right: 0;
  }
}

/* === GHL Form Modal === */
.ghl-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ghl-modal.active {
  opacity: 1;
  visibility: visible;
}

.ghl-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.ghl-modal-container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 560px;
  max-height: 85vh;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ghl-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--cream-dark);
}

.ghl-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}

.ghl-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-mid);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.ghl-modal-close:hover {
  color: var(--charcoal);
}

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

.ghl-modal-body iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .ghl-modal-container {
    width: 95%;
    max-height: 90vh;
  }

  .ghl-modal-body iframe {
    height: 450px;
  }
}

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

/* === Accessibility === */

/* Skip-to-content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--cream);
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 10001;
  text-decoration: underline;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Visible focus outlines for keyboard users */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Remove outline for mouse/touch users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ARIA hidden elements */
[aria-hidden="true"] {
  pointer-events: none;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade,
  .wine-category,
  .credential {
    opacity: 1;
    transform: none;
  }

  .section-divider-sm {
    transform: scaleX(1);
  }

  .hero .animate-in {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Mother's Day Announcement Bar
   ========================================================================== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--wine-deep) 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--cream);
  font-family: var(--font-body);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.announcement-bar[hidden] {
  display: none;
}

.announcement-bar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 10px 48px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  position: relative;
  /* Solid fallback so axe-core can verify contrast through the gradient */
  background-color: var(--green-deep);
}

.announcement-icon {
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}

.announcement-text {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 400;
}

.announcement-text strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.announcement-sep {
  color: var(--gold-dim);
  margin: 0 6px;
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.announcement-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.announcement-close:hover {
  opacity: 1;
  color: var(--gold);
}

/* Push nav down when announcement is visible */
body.has-announcement .nav {
  top: 44px;
}

@media (max-width: 900px) {
  .announcement-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 44px 10px 16px;
  }

  .announcement-text {
    font-size: 0.7rem;
    text-align: center;
    flex: 1 1 100%;
    order: 1;
  }

  .announcement-icon {
    display: none;
  }

  .announcement-cta {
    font-size: 0.65rem;
    padding: 5px 12px;
    order: 2;
    margin: 0 auto;
  }

  .announcement-close {
    right: 10px;
  }

  body.has-announcement .nav {
    top: 72px;
  }
}

@media (max-width: 560px) {
  .announcement-dates,
  .announcement-sep:first-of-type {
    display: none;
  }
}

/* ==========================================================================
   Mother's Day Feature Section
   ========================================================================== */
.mothers-day-feature {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.mothers-day-feature[hidden] {
  display: none;
}

.mothers-day-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}

.mothers-day-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}

.mothers-day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.mothers-day-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 58, 42, 0.25);
}

.mothers-day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-slow);
}

.mothers-day-feature:hover .mothers-day-image img {
  transform: scale(1.04);
}

.mothers-day-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mothers-day-content {
  padding: 20px 0;
}

.mothers-day-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.mothers-day-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 36px;
  font-weight: 300;
}

.mothers-day-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.mothers-day-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mothers-day-detail .detail-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
}

.mothers-day-detail .detail-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.3;
}

@media (max-width: 960px) {
  .mothers-day-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mothers-day-image {
    aspect-ratio: 16 / 10;
    max-width: 560px;
    margin: 0 auto;
  }

  .mothers-day-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mothers-day-detail {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

@media (max-width: 600px) {
  .mothers-day-price {
    font-size: 1.25rem;
  }

  .mothers-day-description {
    font-size: 0.95rem;
  }

  .mothers-day-badge {
    top: 16px;
    left: 16px;
    font-size: 0.6rem;
    padding: 8px 14px;
  }
}

/* ==========================================================================
   Beverage Pages (Wine List + Cocktails)
   ========================================================================== */

.container--narrow {
  max-width: 960px;
}

/* Solid nav for beverage pages (no hero behind it) */
.nav--solid {
  background: var(--green-deep);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

/* Ensure child elements have explicit opaque background for contrast checking
   (axe-core can't traverse through fixed positioning to verify contrast) */
.nav--solid .nav-inner,
.nav--solid .nav-logo,
.nav--solid .nav-links {
  background: var(--green-deep);
}

.beverage-page {
  background: var(--ivory);
}

/* Push content below fixed nav on beverage pages */
.beverage-page main {
  padding-top: 0;
}

/* === Beverage Hero === */
.beverage-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 100px;
  background:
    linear-gradient(135deg, var(--green-deep) 0%, var(--wine-deep) 100%);
  color: var(--cream);
  overflow: hidden;
}

.beverage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(107, 45, 74, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.beverage-hero--cocktails {
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--charcoal) 60%, var(--green-deep) 100%);
}

.beverage-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('Bacchus Medallion.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 420px;
  opacity: 0.06;
  pointer-events: none;
}

.beverage-hero .container {
  position: relative;
  z-index: 2;
}

.beverage-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.beverage-hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.01em;
  margin: 0;
}

.beverage-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px 0;
}

.beverage-hero-divider .divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.beverage-hero-divider .divider-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.beverage-hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dark);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Beverage Menu === */
.beverage-menu {
  padding: 100px 0 80px;
  background: var(--ivory);
}

/* === Tabs === */
.beverage-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  margin-bottom: 60px;
  padding-bottom: 0;
}

.beverage-tab {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 18px 22px;
  cursor: pointer;
  transition: color var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

.beverage-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.beverage-tab:hover {
  color: var(--wine);
}

.beverage-tab.active {
  color: var(--wine);
}

.beverage-tab.active::after {
  transform: scaleX(1);
}

/* === Panels === */
.beverage-panel {
  animation: fadeInUp 0.5s ease;
}

.beverage-panel[hidden] {
  display: none;
}

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

.beverage-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 58, 42, 0.12);
  gap: 24px;
}

.beverage-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: 0.02em;
}

.beverage-price-header {
  display: flex;
  gap: 70px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-right: 4px;
}

/* === Wine Items === */
.wine-list {
  display: flex;
  flex-direction: column;
}

.wine-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
  align-items: start;
  transition: background var(--transition-smooth);
}

.wine-item:hover {
  background: rgba(201, 169, 110, 0.04);
}

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

.wine-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.wine-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.wine-item-producer {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--wine);
  line-height: 1.3;
}

.wine-item-region {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.wine-item-vintage {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 4px;
}

.wine-item-prices {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--wine);
  white-space: nowrap;
}

.wine-item-price {
  min-width: 48px;
  text-align: right;
}

.wine-item-price--empty {
  color: var(--gray-light);
  font-style: italic;
  font-size: 0.85rem;
}

/* === Cocktail Items === */
.cocktail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 60px;
}

.cocktail-item {
  padding: 4px 0;
  position: relative;
}

.cocktail-item-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.cocktail-item-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  flex: 1;
}

.cocktail-item-header::after {
  content: '';
  flex: 1;
  border-bottom: 1px dotted rgba(26, 58, 42, 0.25);
  margin: 0 6px 6px;
  min-width: 20px;
}

.cocktail-item-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--wine);
  font-weight: 500;
  white-space: nowrap;
}

.cocktail-item-ingredients {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0 0 6px;
}

.cocktail-item-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-dim);
  line-height: 1.5;
  margin: 0;
}

/* === Menu Note === */
.beverage-menu-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray-mid);
  max-width: 680px;
  margin: 60px auto 0;
  line-height: 1.7;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.beverage-menu-note:empty {
  display: none;
}

/* === Cross-Sell Section === */
.beverage-cross-sell {
  padding: 90px 0 110px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.cross-sell-card {
  background: var(--white);
  padding: 50px 44px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.cross-sell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 58, 42, 0.12);
}

.cross-sell-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 14px 0 14px;
  letter-spacing: 0.02em;
}

.cross-sell-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-dark);
  margin: 0 0 28px;
  font-weight: 300;
}

.cross-sell-card--gold {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--wine-deep) 100%);
  border-color: var(--gold);
  color: var(--cream);
}

.cross-sell-card--gold .section-label {
  color: var(--gold);
}

.cross-sell-card--gold h3 {
  color: var(--white);
}

.cross-sell-card--gold p {
  color: var(--cream-dark);
}

/* === Responsive === */
@media (max-width: 820px) {
  .cocktail-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .beverage-hero {
    padding: 140px 0 80px;
    min-height: 40vh;
  }

  .beverage-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .beverage-price-header {
    gap: 40px;
    padding-right: 0;
  }

  .cross-sell-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cross-sell-card {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .beverage-menu {
    padding: 70px 0 50px;
  }

  .beverage-tabs {
    gap: 0;
    margin-bottom: 40px;
  }

  .beverage-tab {
    padding: 14px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .wine-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .wine-item-prices {
    gap: 28px;
    justify-content: flex-start;
    font-size: 1rem;
  }

  .wine-item-price {
    min-width: 40px;
    text-align: left;
  }

  .cocktail-item-name {
    font-size: 1.2rem;
  }

  .cocktail-item-header::after {
    display: none;
  }

  .cocktail-item-header {
    justify-content: space-between;
  }
}

/* ==========================================================================
   Policy Pages (Privacy, Terms, SMS, Accessibility)
   ========================================================================== */

.policy-page {
  background: var(--ivory);
}

/* Policy Hero */
.policy-hero {
  background-color: var(--green-deep);
  padding: 170px 0 80px;
  color: var(--cream);
  text-align: center;
}

.policy-hero .container {
  max-width: 820px;
}

.policy-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
}

.policy-meta {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-dark);
  margin: 26px 0 0;
}

/* Policy Body */
.policy-body {
  padding: 80px 0 110px;
  background: var(--ivory);
}

.policy-body .container {
  max-width: 780px;
}

/* Draft notice — REMOVE BEFORE PUBLISHING */
.policy-draft-notice {
  background: #fff6d9;
  border: 1px solid #b8860b;
  border-left-width: 5px;
  padding: 22px 26px;
  margin-bottom: 50px;
  border-radius: 2px;
}

.policy-draft-notice h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #704700;
  margin: 0 0 10px;
}

.policy-draft-notice p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a2f00;
}

.policy-draft-notice p + p {
  margin-top: 8px;
}

/* Policy content typography */
.policy-content section {
  margin-bottom: 44px;
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.policy-content h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wine);
  margin: 26px 0 10px;
  letter-spacing: 0.03em;
}

.policy-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin: 0 0 14px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul,
.policy-content ol {
  padding-left: 26px;
  margin: 0 0 18px;
}

.policy-content li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.policy-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

.policy-content a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.policy-content a:hover,
.policy-content a:focus-visible {
  color: var(--wine-light);
  text-decoration-thickness: 2px;
}

.policy-content .policy-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 44px auto;
}

.policy-contact-card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 30px 34px;
  margin-top: 24px;
}

.policy-contact-card p {
  margin-bottom: 6px;
}

.policy-contact-card p:last-child {
  margin-bottom: 0;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 24px 0 24px;
  padding: 0;
  list-style: none;
  /* Explicit background so axe-core can verify link contrast. */
  background-color: var(--charcoal);
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 6px 2px;
  transition: color var(--transition-smooth);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 680px) {
  .policy-hero {
    padding: 140px 0 60px;
  }

  .policy-body {
    padding: 60px 0 80px;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.92rem;
  }

  .policy-contact-card {
    padding: 22px 24px;
  }

  .footer-links {
    gap: 8px 20px;
  }

  .footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}
