/* ═══════════════════════════════════════
   ATELIER AURA CHIC — LUXURY CHIC STYLE
   ═══════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Core Colors */
  --bg-dark: #161413;       /* Deep luxurious off-black */
  --bg-cream: #FAF8F5;      /* Alabaster cream for light sections */
  --accent-red: #611111;    /* Velvet Red */
  --gold: #C5A880;          /* Warm Gold */
  --gold-dark: #8A6D3B;     /* Deep Gold */
  --white: #FFFFFF;
  
  /* Glassmorphism Overlays */
  --glass-bg: rgba(22, 20, 19, 0.65);
  --glass-card: rgba(255, 255, 255, 0.08);
  --glass-card-hover: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(20px);
  
  /* Text Colors */
  --text-light: #FAF8F5;
  --text-dark: #161413;
  --text-muted: #B5AEA0;
  --text-muted-dark: #7A756E;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, sans-serif;
  
  /* Animation / Interaction */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: 0.05em;
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

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

/* ─── Typography & Shimmer ─── */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    #8A6D3B 0%,
    #C5A880 25%,
    #FAF6EE 50%,
    #C5A880 75%,
    #8A6D3B 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 4s linear infinite;
  display: inline-block;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  color: var(--gold);
  margin-bottom: 2rem;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 4rem;
  position: relative;
}

.section-divider::after {
  content: '♦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 8px;
  background: var(--bg-dark);
  padding: 0 8px;
}

/* ─── Sticky Frosted-Glass Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(22, 20, 19, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  height: 90px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 75px;
  background: rgba(22, 20, 19, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-logo {
  height: 55px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  position: relative;
  padding: 0.5rem 0;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-link:hover {
  opacity: 1;
  color: var(--gold);
}

.navbar-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  z-index: 1100;
}

/* ─── Hero Section with Video/Image background ─── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.hero-background video,
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 60%, rgba(22,20,19,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 850px;
}

.hero-glow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(97, 17, 17, 0.4) 0%, rgba(197, 168, 128, 0.1) 50%, rgba(0,0,0,0) 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 8s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 200;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Noise overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-accent {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 0 rgba(197, 168, 128, 0);
}

.btn-accent:hover {
  background: #d4b893;
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.4);
}

.btn-accent:active {
  transform: scale(0.98);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-outline:active {
  transform: scale(0.98);
}

/* ─── About Section ─── */
.about {
  padding: 8rem 0;
  position: relative;
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 35px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-image-border {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

/* ─── Ambiance Section (Masonry Grid) ─── */
.ambiance {
  padding: 8rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;
}

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

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

.gallery-item.tall {
  grid-row: span 2;
  height: 490px;
}

.gallery-item.short {
  height: 235px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 20, 19, 0.8) 0%, rgba(0,0,0,0) 70%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

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

.gallery-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

/* ─── Menu Section (Gated) ─── */
.menu-section {
  padding: 8rem 0;
  position: relative;
}

.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-gate-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  text-align: center;
}

.menu-gate-logo {
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
}

.menu-gate-logo img {
  max-width: 140px;
  height: 100%;
}

.menu-gate-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.menu-gate-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Form Styles */
.glass-form-group {
  position: relative;
  margin-bottom: 1.75rem;
  text-align: left;
}

.glass-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.glass-label {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.glass-input:focus ~ .glass-label,
.glass-input:not(:placeholder-shown) ~ .glass-label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--bg-dark);
  padding: 0 0.5rem;
}

.btn-full {
  width: 100%;
  padding: 1.1rem;
}

.error-message {
  color: #ffcccc;
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

/* Menu Content Display */
.menu-display {
  display: none;
}

.menu-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-badge:hover,
.filter-badge.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.25);
  transform: translateY(-1px);
}

.menu-category-block {
  margin-bottom: 5rem;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-category-header h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 168, 128, 0.4) 0%, rgba(22, 20, 19, 0) 100%);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.12); /* Glass top highlighted border */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.menu-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-details {
  padding: 1.5rem;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.menu-card-title {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.25;
}

.menu-card-price {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-card-line {
  width: 25px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ─── Reservation Section ─── */
.reservation {
  padding: 8rem 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(97, 17, 17, 0.08) 50%, var(--bg-dark) 100%);
  position: relative;
}

.reservation-panel {
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.glass-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5A880' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.glass-textarea {
  min-height: 100px;
  resize: vertical;
}

.reservation-status {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
}

.reservation-status.success {
  background: rgba(212, 237, 218, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  display: block;
}

.reservation-status.error {
  background: rgba(248, 215, 218, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  display: block;
}

/* Date/time calendar custom styles */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(50%) saturate(100%) hue-rotate(15deg);
  cursor: pointer;
}

/* ─── Contact Section & Hours ─── */
.contact {
  padding: 8rem 0;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--gold);
}

.contact-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Hours List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.hours-row.closed {
  color: var(--text-muted);
}

/* Map Wrapper */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  height: 480px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.9) invert(0.9) contrast(1.2);
}

/* ─── Footer ─── */
.footer {
  background: #0d0b0a;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 60px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 130px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

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

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

/* ─── Responsive Styles ─── */
@media (max-width: 992px) {
  .navbar-nav {
    display: none; /* Mobile navigation uses burger */
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image-wrapper img {
    height: 380px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.tall {
    height: 380px;
  }
  
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 75px;
  }
  
  .hero-glow-pulse {
    width: 300px;
    height: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item.tall,
  .gallery-item.short {
    height: 280px;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-gate-container,
  .reservation-panel {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .map-wrapper {
    height: 350px;
  }
}

/* ─── Mobile Slide-in Drawer ─── */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  z-index: 2000;
  background: rgba(22, 20, 19, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  display: none;
}

.mobile-nav-backdrop.open {
  display: block;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .gold-shimmer {
    animation: none !important;
    background: none !important;
    color: var(--gold) !important;
  }
  .hero-glow-pulse {
    animation: none !important;
  }
}