/* Aurelia Restaurant - Elegant & Refined Styles */
:root {
  --bg: #0f0f12;
  --surface: #16161c;
  --text: #e8e6e0;
  --muted: #a8a49a;
  --primary: #c9a961;
  --primary-light: #d4b876;
  --primary-dark: #b89850;
  --accent: #9a8770;
  --accent-light: #b09d88;
  --border: rgba(201,169,97,0.08);
  --glass: rgba(255,255,255,0.02);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.25);
  --glow: 0 0 15px rgba(201,169,97,0.08);
}
* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth;
}
html, body { height: 100%; }

::selection {
  background: rgba(201,169,97,0.2);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(201,169,97,0.3);
  border-radius: 6px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201,169,97,0.4);
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
  margin: 0;
  background: #0f0f12;
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Nav */
.nav { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  backdrop-filter: saturate(1.2) blur(20px); 
  background: rgba(15,15,18,0.95); 
  border-bottom: 1px solid rgba(201,169,97,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 68px;
  width: 100%;
  padding: 0 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  border-radius: 0;
}
.nav.scrolled .nav-inner {
  max-width: 1180px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
.nav:not(.scrolled) {
  margin: 1rem auto;
  max-width: 60%;
  border-radius: 50px;
  border: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.nav:not(.scrolled) .nav-inner {
  height: 60px;
  padding: 0 2.5rem;
  justify-content: space-between;
  width: 100%;
}
.brand { 
  font-family: 'Crimson Text', serif; 
  font-weight: 600; 
  font-size: 2rem; 
  color: var(--primary);
  text-decoration: none; 
  letter-spacing: 1px;
  transition: all .3s ease;
  flex-shrink: 0;
}
.nav:not(.scrolled) .brand {
  font-size: 1.6rem;
}
.brand:hover { 
  color: var(--primary-light); 
  transform: scale(1.01);
}
.nav-links { 
  display: flex; 
  gap: 0.5rem; 
  align-items: center;
}
.nav:not(.scrolled) .nav-links {
  gap: 0.3rem;
}
.nav-links a { 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 500; 
  padding: .6rem .9rem; 
  border-radius: 12px;
  transition: all .3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.nav:not(.scrolled) .nav-links a {
  padding: .5rem .7rem;
  font-size: 0.88rem;
}
.nav-links a:hover { 
  color: var(--primary-light); 
  background: rgba(201,169,97,0.05);
}
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; position: relative; }
.nav-toggle span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--text); transition: .25s; }
.nav-toggle span:nth-child(1){ top: 12px; }
.nav-toggle span:nth-child(2){ top: 20px; }
.nav-toggle span:nth-child(3){ top: 28px; }

/* Buttons */
.btn { 
  display: inline-block; 
  padding: .85rem 1.5rem; 
  border-radius: 50px; 
  text-decoration: none; 
  font-weight: 600; 
  border: 1px solid var(--border); 
  color: var(--text); 
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.btn:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary { 
  background: var(--primary);
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.btn-primary:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
  color: #ffffff;
}
.nav .btn-primary {
  padding: .65rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff !important;
}
.nav:not(.scrolled) .btn-primary {
  padding: .6rem 1.2rem;
  font-size: 0.88rem;
}
.btn-outline { 
  background: rgba(201,169,97,0.03); 
  border: 1px solid rgba(201,169,97,0.2);
  color: var(--primary);
}
.btn-outline:hover {
  background: rgba(201,169,97,0.08);
  border-color: rgba(201,169,97,0.3);
  color: var(--primary-light);
}
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* Hero */
.hero { padding: 5.5rem 0 3.5rem; position: relative; overflow: hidden; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-15px) scale(1.02); opacity: 1; }
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.hero-copy h1 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(3rem, 6.5vw, 4.8rem); 
  line-height: 1.1; 
  margin: 0 0 1.5rem; 
  letter-spacing: 0.02em; 
  font-weight: 600;
  color: var(--text);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-copy h1 em { 
  font-style: italic; 
  color: var(--primary);
  font-weight: 400;
}
.hero-copy p { 
  color: var(--muted); 
  max-width: 52ch; 
  margin: 0 0 2rem; 
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-card { 
  background: rgba(201,169,97,.04);
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,97,.18);
}
.badge { 
  background: rgba(201,169,97,.08);
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  padding: .7rem 1.2rem;
  border: 1px solid rgba(201,169,97,.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
}
.hero-card-body { padding: 1.5rem 1.5rem 1.8rem; }
.hero-card-body h3 { 
  margin: 0 0 .8rem; 
  font-family: 'Crimson Text', serif; 
  letter-spacing: .5px; 
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--primary-light);
}
.hero-card-body ul { 
  margin: .5rem 0 1.2rem; 
  padding-left: 1.3rem; 
  color: var(--muted);
  line-height: 1.8;
}
.hero-card-body ul li {
  margin-bottom: 0.3rem;
}
.price { 
  font-weight: 700; 
  color: var(--primary);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

/* About */
.about { padding: 4.5rem 0; }
.about h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 1.5rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.about p { 
  color: var(--muted); 
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.pills { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.pill { 
  border: 1px solid rgba(201,169,97,.08);
  padding: .6rem 1.1rem;
  border-radius: 25px;
  color: #8a8680;
  font-weight: 500;
  background: rgba(201,169,97,.02);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
  font-size: .88rem;
  letter-spacing: 0.3px;
}
.pill:hover {
  border-color: rgba(201,169,97,.12);
  color: #9a9288;
  background: rgba(201,169,97,.04);
}
.about-card { 
  border-radius: 20px; 
  border: 1px solid rgba(0,0,0,.2); 
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: all .4s ease;
}
.about-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  border-color: rgba(0,0,0,.3);
}
.about-media { 
  height: 400px; 
  background: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop');
  background-size: cover; 
  background-position: center; 
  filter: saturate(.75) contrast(1.05) brightness(0.85); 
  transition: all .5s ease; 
}
.about-card:hover .about-media { 
  transform: scale(1.02); 
  filter: saturate(.78) contrast(1.06) brightness(0.87);
}

/* Menu */
.menu { 
  padding: 4.5rem 0; 
  border-top: 1px solid rgba(201,169,97,.08); 
  border-bottom: 1px solid rgba(201,169,97,.08);
  background: transparent;
}
.menu h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.subtitle { 
  color: var(--muted); 
  margin: .8rem 0 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin: .8rem 0 2.5rem; }
.filter-btn { 
  background: rgba(201,169,97,.04);
  border: 1px solid rgba(201,169,97,.12);
  color: var(--muted);
  font-weight: 500;
  padding: .7rem 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.filter-btn:hover { 
  color: var(--primary); 
  background: rgba(201,169,97,.06);
  border-color: rgba(201,169,97,.18);
}
.filter-btn.active { 
  color: #0f0f12; 
  background: var(--primary); 
  border: none; 
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 1.5rem 2rem; }
.menu-item { 
  padding: 1.5rem;
  margin-bottom: 0;
  border: 1px solid rgba(201,169,97,.1);
  transition: all .3s ease;
  border-radius: 16px;
  background: rgba(201,169,97,.03);
  backdrop-filter: blur(8px);
}
.menu-item:hover {
  transform: translateY(-2px);
  background: rgba(201,169,97,.05);
  border-color: rgba(201,169,97,.15);
  box-shadow: var(--shadow-md);
}
.menu-head { display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.menu-head h3 { 
  margin: 0; 
  font-size: 1.25rem; 
  font-weight: 600; 
  font-family: 'Crimson Text', serif; 
  letter-spacing: .3px;
  color: var(--text);
}
.menu-price { 
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
}
.dots { 
  height: 1px; 
  background-image: radial-gradient(circle, rgba(201,169,97,.3) 1px, transparent 1px); 
  background-size: 5px 1px; 
  opacity: .4; 
  align-self: center; 
}
.menu-desc { 
  color: var(--muted); 
  margin: 0; 
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Gallery */
.gallery { padding: 4.5rem 0; }
.gallery h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 2rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.gallery-grid > div { 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid rgba(0,0,0,.3); 
  background-size: cover; 
  background-position: center;
  transition: all .4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  filter: saturate(.75) brightness(0.85) contrast(1.05);
  cursor: pointer;
}
.gallery-grid > div:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,.15);
  z-index: 10;
  filter: saturate(.85) brightness(0.92);
}
.g1{ grid-column: span 2; background-image:url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1200&auto=format&fit=crop'); }
.g2{ grid-column: span 2; background-image:url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?q=80&w=1200&auto=format&fit=crop'); }
.g3{ grid-column: span 2; background-image:url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?q=80&w=1200&auto=format&fit=crop'); }
.g4{ grid-column: span 3; background-image:url('https://images.unsplash.com/photo-1571997478779-2adcbbe9ab2f?q=80&w=1200&auto=format&fit=crop'); }
.g5{ grid-column: span 2; background-image:url('https://images.unsplash.com/photo-1595854341625-f33ee10dbf94?q=80&w=1200&auto=format&fit=crop'); }
.g6{ grid-column: span 1; background-image:url('https://images.unsplash.com/photo-1593560708920-61dd98c46a4e?q=80&w=1200&auto=format&fit=crop'); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* CTA */
.cta { padding: 4.5rem 0; }
.cta-inner { 
  text-align: center; 
  border: 1px solid rgba(201,169,97,.12); 
  border-radius: 24px; 
  padding: 3.5rem 2rem; 
  background: rgba(201,169,97,.04);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.cta h2 { 
  font-family: 'Crimson Text', serif; 
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: 0.5px;
  font-weight: 600;
}
.cta p { 
  color: var(--muted); 
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Footer */
.footer { 
  padding: 3.5rem 0 2.5rem;
  background: rgba(15,15,18,.95);
  border-top: 1px solid rgba(201,169,97,.1);
  position: relative;
}
.footer-inner { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .brand {
  font-size: 1.6rem;
  color: var(--primary);
  transition: all .3s ease;
}
.footer .brand:hover {
  color: var(--primary-light);
}
.foot-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.foot-links a { 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 500;
  transition: all .3s ease;
  letter-spacing: 0.3px;
}
.foot-links a:hover { 
  color: var(--primary-light);
  transform: translateY(-1px);
}
.footer .copyright { 
  justify-self: end; 
  color: var(--muted); 
  font-size: .92rem;
  letter-spacing: 0.3px;
}

/* Chef */
.chef { 
  padding: 4.5rem 0; 
  background: transparent;
}
.chef-media { 
  height: 420px; 
  border-radius: 20px; 
  border: 1px solid rgba(0,0,0,.2); 
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?q=80&w=1200&auto=format&fit=crop');
  background-size: cover; 
  background-position: center;
  filter: saturate(.75) contrast(1.05) brightness(0.85);
  transition: all .5s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.grid:hover .chef-media {
  transform: scale(1.02);
  filter: saturate(.78) contrast(1.06) brightness(0.87);
}
.about-copy h2,
.chef-copy h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 1.5rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.about-copy p,
.chef-copy p { 
  color: var(--muted); 
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Wine */
.wine { 
  padding: 4.5rem 0; 
  border-top: 1px solid rgba(201,169,97,.08);
  background: transparent;
}
.wine h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.wine-card { 
  background: rgba(201,169,97,.03);
  border: 1px solid rgba(201,169,97,.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all .4s ease;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.wine-card:hover { 
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,.15);
  background: rgba(201,169,97,.05);
}
.wine-card h3 { 
  font-family: 'Crimson Text', serif; 
  margin: 0 0 .8rem; 
  color: var(--primary); 
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
}
.wine-card p { 
  color: var(--muted); 
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* Testimonials */
.testimonials { 
  padding: 4.5rem 0; 
  background: transparent;
}
.testimonials h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 2.5rem; 
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.slider { position: relative; max-width: 700px; margin: 0 auto; }
.slides { 
  overflow: hidden; 
  border-radius: 20px; 
  background: rgba(201,169,97,.04); 
  border: 1px solid rgba(201,169,97,.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.slide { display: none; padding: 3rem 2.5rem; text-align: center; }
.slide.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide p { 
  font-style: italic; 
  font-size: 1.2rem; 
  margin: 0 0 1.5rem; 
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.slide footer { 
  color: var(--primary); 
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.slider-prev, .slider-next { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(201,169,97,.06); 
  border: 1px solid rgba(201,169,97,.15); 
  color: var(--primary); 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  cursor: pointer; 
  font-size: 1.3rem; 
  transition: all .3s ease;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.slider-prev { left: -60px; }
.slider-next { right: -60px; }
.slider-prev:hover, .slider-next:hover { 
  background: rgba(201,169,97,.1); 
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,.2);
}

/* Events */
.events { 
  padding: 4.5rem 0; 
  border-top: 1px solid rgba(201,169,97,.08);
  background: transparent;
}
.events h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 2rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.event-card { 
  background: rgba(201,169,97,.03);
  border: 1px solid rgba(201,169,97,.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all .4s ease;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.event-card:hover { 
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,.15);
  background: rgba(201,169,97,.05);
}
.event-card h3 { 
  font-family: 'Crimson Text', serif; 
  margin: 0 0 .8rem; 
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.3px;
}
.event-card p { 
  color: var(--muted); 
  margin: 0 0 1.2rem;
  line-height: 1.7;
  font-size: 1rem;
}
.chip { 
  background: rgba(201,169,97,.08);
  color: var(--primary);
  padding: .5rem 1rem;
  border-radius: 25px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 1px solid rgba(201,169,97,.15);
  backdrop-filter: blur(6px);
  display: inline-block;
}

/* Contact */
.contact { 
  padding: 4.5rem 0; 
  background: transparent;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact h2 { 
  font-family: 'Crimson Text', serif; 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin: 0 0 1.5rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.contact p { 
  color: var(--muted); 
  margin: 0 0 .8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.map-placeholder { 
  height: 280px; 
  background: rgba(201,169,97,.04); 
  border: 1px solid rgba(201,169,97,.1); 
  border-radius: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--muted); 
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all .3s ease;
}
.map-placeholder:hover {
  border-color: rgba(201,169,97,.15);
  box-shadow: var(--shadow-lg);
}

/* Grid utility */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive Design */
@media (max-width: 1024px) {
  .container { padding: 0 1rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-card { max-width: 400px; margin: 0 auto; }
  .nav-inner { 
    padding: 0 1rem;
  }
  .wine-grid, .events-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 3rem 0 2rem; }
  .hero-copy h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .wine-grid, .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .filter-bar { justify-content: center; }
  .menu-item { padding: 1rem; }
  .about, .menu, .gallery, .chef, .wine, .events, .contact { padding: 2.5rem 0; }
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .slider-prev { left: -35px; }
  .slider-next { right: -35px; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .hero { padding: 2rem 0 1.5rem; }
  .hero-copy h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-card-body { padding: 1rem; }
  .badge { padding: 0.5rem 0.8rem; font-size: 0.65rem; }
  .btn { padding: 0.65rem 1rem; font-size: 0.9rem; }
  .menu-item { padding: 0.8rem; }
  .wine-card, .event-card { padding: 1.5rem; }
  .gallery-grid { grid-auto-rows: 120px; }
  .about, .menu, .gallery, .chef, .wine, .events, .contact { padding: 2rem 0; }
  .slider-prev, .slider-next { width: 35px; height: 35px; font-size: 1rem; }
  .slider-prev { left: -25px; }
  .slider-next { right: -25px; }
}

/* Mobile Navigation */
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

@media (max-width: 768px) {
  .nav {
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .nav:not(.scrolled) {
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  
  /* Block scroll when menu is open */
  body.menu-open {
    overflow: hidden !important;
  }
  
  /* Mobile menu */
  .nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0f0f12;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
  }
  
  .nav-links.active a {
    padding: 1.2rem 2rem;
    text-align: center;
    border-radius: 12px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
    color: var(--muted);
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .nav-links.active a:hover {
    background: rgba(201,169,97,0.08);
    color: var(--primary-light);
    border-color: rgba(201,169,97,0.2);
  }
  
  .nav-links.active .btn-primary {
    max-width: 400px;
  }
  
  /* Close button */
  .nav-toggle {
    z-index: 1001;
  }
}
