/* ============================================
   BRASSERIE LE PASSAGE — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- Custom Properties --- */
:root {
  /* Colors */
  --c-dark: #1a1a18;
  --c-dark-green: #1a3a2a;
  --c-green: #2d5a3d;
  --c-green-light: #3d7a54;
  --c-gold: #c8a868;
  --c-gold-light: #dfc48e;
  --c-gold-dim: rgba(200, 168, 104, 0.15);
  --c-cream: #f5f0e8;
  --c-cream-dark: #e8e0d4;
  --c-white: #fffcf7;
  --c-text: #2d2d2d;
  --c-text-light: #6b6560;
  --c-text-muted: #9a938c;
  --c-overlay: rgba(18, 22, 18, 0.65);
  --c-overlay-dark: rgba(10, 12, 10, 0.80);
  
  /* Typography */
  --ff-heading: 'Playfair Display', 'Georgia', serif;
  --ff-body: 'Inter', 'Helvetica Neue', sans-serif;
  --ff-accent: 'Cormorant Garamond', 'Georgia', serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-normal: 0.4s;
  --t-slow: 0.7s;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(200, 168, 104, 0.25);
  
  /* Layout */
  --max-width: 1200px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease-out);
}

ul, ol { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

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

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

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

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }

/* --- Section Titles --- */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--c-gold);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--ff-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-text-light);
  max-width: 600px;
}

.section-title-center {
  text-align: center;
}

.section-title-center .section-label {
  justify-content: center;
}

.section-title-center .section-label::before {
  display: none;
}

.section-title-center .section-subtitle {
  margin: 0 auto;
}

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: var(--space-lg) auto;
  max-width: 200px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--c-dark-green);
  color: var(--c-gold);
  padding: 10px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1002;
  transition: transform 0.4s ease, margin-top 0.4s ease;
}

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

.announcement-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-gold);
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.announcement-close:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .announcement-text { font-size: 0.75rem; display: block; padding-right: 20px; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--t-normal) var(--ease-out),
              box-shadow var(--t-normal) var(--ease-out),
              backdrop-filter var(--t-normal) var(--ease-out);
}

.header.scrolled {
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0.5px;
}

.logo-accent {
  color: var(--c-gold);
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 5px 0;
  transition: color var(--t-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--t-normal) var(--ease-out);
}

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

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

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-dark);
  background: var(--c-gold);
  padding: 10px 24px;
  border-radius: 4px;
  transition: all var(--t-fast) var(--ease-out);
}

.nav-cta:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-normal) var(--ease-out);
  transform-origin: center;
}

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

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

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

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(26, 26, 24, 0.97);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal) var(--ease-out);
  }
  
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 10, 0.5) 0%,
    rgba(10, 15, 10, 0.35) 40%,
    rgba(10, 15, 10, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 800px;
}

.hero-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-title .italic {
  font-style: italic;
  color: var(--c-gold);
}

.hero-tagline {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-dark);
}

.btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

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

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--c-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-text p {
  margin-bottom: var(--space-md);
  color: var(--c-text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--c-dark);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-image img { height: 350px; }
  .about-image-accent { display: none; }
  .about-features { grid-template-columns: 1fr; }
}

/* ============================================
   SPECIALS & EVENTS
   ============================================ */
.specials {
  background: var(--c-white);
}

/* Hide section if empty */
.specials:has(.specials-grid:empty) {
  display: none;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.promo-card {
  background: var(--c-white);
  border: 1px solid var(--c-cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--c-gold);
}

.promo-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: var(--space-xs);
}

.promo-badge {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-gold);
  letter-spacing: 1px;
}

.promo-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--c-dark);
}

.promo-desc {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

.promo-time {
  margin-top: auto;
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-dark-green);
  font-weight: 500;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  background: var(--c-cream);
  position: relative;
  background-image: url("https://www.transparenttextures.com/patterns/linen.png"); /* Subtle linen texture */
}

.menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 10% 20%, var(--c-gold-dim) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, var(--c-gold-dim) 0%, transparent 50%);
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.menu-tab {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  color: var(--c-text-light);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease-out);
  cursor: pointer;
}

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

.menu-tab.active {
  background: var(--c-dark-green);
  color: var(--c-gold);
  border-color: var(--c-dark-green);
}

.menu-category {
  display: none;
  position: relative;
  z-index: 1;
}

.menu-category.active {
  display: block;
  animation: menuFadeIn 0.4s var(--ease-out);
}

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

.menu-category-title {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.menu-category-sub {
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  position: relative;
  transition: background var(--t-fast) var(--ease-out);
}

.menu-item::after {
  content: "......................................................................................................................................................................................................................................................................................................................";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 0;
  color: rgba(200, 168, 104, 0.2);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.menu-item-info {
  position: relative;
  z-index: 1;
  background: var(--c-cream);
  padding-right: 10px;
}

.menu-item-name {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Badges */
.badge {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: var(--c-gold);
  color: var(--c-dark);
}

.badge-green {
  background: var(--c-dark-green);
  color: var(--c-gold);
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  font-style: italic;
  margin-top: 2px;
}

.menu-item-price {
  position: relative;
  z-index: 1;
  background: var(--c-cream);
  padding-left: 10px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-gold);
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-style: italic;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: rgba(200, 168, 104, 0.08);
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Wine table */
.menu-wine-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}

.menu-wine-table thead th {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: 0 var(--space-sm) var(--space-sm);
  text-align: center;
  border-bottom: 1px solid var(--c-gold);
}

.menu-wine-table thead th:first-child {
  text-align: left;
}

.menu-wine-table tbody td {
  padding: var(--space-sm);
  text-align: center;
  border-bottom: 1px solid rgba(200, 168, 104, 0.12);
}

.menu-wine-table tbody td:first-child {
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-dark);
}

.menu-wine-table tbody td:not(:first-child) {
  font-weight: 600;
  color: var(--c-gold);
  font-size: 0.95rem;
}

.menu-wine-table tbody tr:hover {
  background: rgba(200, 168, 104, 0.06);
}

/* Single column menu for drinks etc */
.menu-grid-single {
  grid-template-columns: 1fr;
  max-width: 600px;
}

/* Two sub-sections side by side */
.menu-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.menu-dual-section h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--c-gold);
}

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-dual { grid-template-columns: 1fr; }
  .menu-tabs { gap: 4px; }
  .menu-tab { padding: 8px 14px; font-size: 0.72rem; }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--c-dark);
  overflow: hidden;
}

.gallery .section-title { color: var(--c-white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.6), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-normal) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-item-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-normal) var(--ease-out);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============================================
   HOURS & LOCATION SECTION
   ============================================ */
.info {
  background: var(--c-white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

/* Hours card */
.hours-card {
  background: var(--c-cream);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--c-gold), var(--c-green));
}

.hours-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--c-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 168, 104, 0.12);
  transition: background var(--t-fast);
}

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

.hours-row.today {
  background: var(--c-gold-dim);
  margin: 0 -15px;
  padding: 12px 15px;
  border-radius: 4px;
  border-bottom-color: transparent;
}

.hours-day {
  font-weight: 500;
  color: var(--c-dark);
  font-size: 0.95rem;
}

.hours-time {
  color: var(--c-text-light);
  font-size: 0.95rem;
}

.hours-closed {
  color: #c44;
  font-style: italic;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-lg);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hours-status.open {
  background: rgba(45, 90, 61, 0.1);
  color: var(--c-green);
}

.hours-status.closed {
  background: rgba(204, 68, 68, 0.1);
  color: #c44;
}

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

.hours-status.open .hours-status-dot { background: var(--c-green); }
.hours-status.closed .hours-status-dot { background: #c44; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Contact card */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-sm) 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--c-dark);
}

.contact-item-value a:hover {
  color: var(--c-gold);
}

/* Map */
.map-wrapper {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 800px) {
  .info-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 300px; }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  background: var(--c-cream);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--c-cream-dark);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--c-dark);
  transition: all var(--t-fast) var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px var(--c-gold-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--c-dark-green);
  color: var(--c-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  border: none;
}

.btn-submit:hover {
  background: var(--c-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--c-gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast) var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--c-dark-green);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-normal) var(--ease-out);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

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

.back-to-top:hover {
  background: var(--c-green);
  transform: translateY(-3px);
}

.btn-review {
  background: var(--c-dark-green);
  color: var(--c-gold);
  border: none;
  font-weight: 600;
  transition: all var(--t-fast);
}

.btn-review:hover {
  background: var(--c-gold);
  color: var(--c-dark);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 12, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  padding: var(--space-md);
}

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

.modal-content {
  background: var(--c-white);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--c-gold);
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--c-text-muted);
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--c-dark);
}

.modal-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.modal-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.modal-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--c-cream-dark);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c8a868' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.modal-footer {
  margin-top: var(--space-md);
  text-align: center;
}

.modal-footer p {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--c-white);
}

.preloader-text .italic {
  font-style: italic;
  color: var(--c-gold);
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--c-gold);
  animation: preloaderFill 1.5s var(--ease-out) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}
