/* =============================================
   Mai Garden – Global Stylesheet
   Dark/Gold Vietnamese Restaurant Aesthetic
   ============================================= */

/* ── Self-hosted Fonts ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
       url('../assets/fonts/PlayfairDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
       url('../assets/fonts/PlayfairDisplay-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/Lato-Regular.woff2') format('woff2'),
       url('../assets/fonts/Lato-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/Lato-Light.woff2') format('woff2'),
       url('../assets/fonts/Lato-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/Lato-Bold.woff2') format('woff2'),
       url('../assets/fonts/Lato-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties ── */
:root {
  --color-bg:         #0B0B0B;
  --color-bg-alt:     #111111;
  --color-bg-card:    #181818;
  --color-gold:       #D4AF37;
  --color-gold-light: #E8C95A;
  --color-gold-muted: #C5A059;
  --color-text:       #F8F8F8;
  --color-text-muted: #B0A090;
  --color-border:     rgba(212, 175, 55, 0.2);

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --transition:  0.3s ease;
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-gold-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--color-text-muted);
}

/* ── Gold Divider ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1rem auto;
}

/* ── Cherry Blossom SVG Divider ── */
.blossom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

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

.blossom-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-muted));
  color: #0B0B0B;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #0B0B0B;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--color-bg);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn-outline:hover {
  background: color-mix(in srgb, var(--color-bg) 92%, var(--color-gold) 8%);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* ── =====================
   HEADER / NAV
   ===================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#site-header.scrolled {
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
}

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

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

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

.nav-reserve-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(11, 11, 11, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 1.25rem 2rem;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile a:hover { color: var(--color-gold); }
.nav-mobile .btn { margin-top: 1.25rem; width: 100%; display: flex; justify-content: center; }

/* ── =====================
   HERO
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.25rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback gradient when no image */
  background-color: #0B0B0B;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
  padding: 2.5rem 4rem 3.5rem;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(6px);
}

.hero-card-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 3rem);
  white-space: nowrap;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.hero-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.hero-actions {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  gap: 0.75rem;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: bounce 2.5s infinite;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

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

/* Sakura petals decoration */
.hero-sakura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sakura-petal {
  position: absolute;
  opacity: 0.12;
  animation: fallPetal linear infinite;
}

@keyframes fallPetal {
  0%   { transform: translateY(-60px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ── =====================
   OUR STORY
   ===================== */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.about-image-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.about-image-frame:hover img { filter: grayscale(0%); }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--color-gold);
  color: #0B0B0B;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-gold);
}
.about-badge .years { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-text .section-subtitle { text-align: left; }
.about-text .section-title    { text-align: left; }

.about-text p { color: var(--color-text-muted); }

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ── =====================
   SIGNATURE DISHES
   ===================== */
#signature .dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.dish-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 175, 55, 0.45);
}

.dish-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-card:hover .dish-image img { transform: scale(1.04); }

.dish-body {
  padding: 1.25rem;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text);
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.dish-allergens {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(176,160,144,0.65);
}
.dish-allergens span { color: var(--color-text-muted); }

.signature-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── =====================
   FULL MENU
   ===================== */
#menu { background: var(--color-bg); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #0B0B0B;
}

#menu-container {
  min-height: 200px;
}

.menu-loading {
  text-align: center;
  padding: 4rem 0;
  color: var(--color-text-muted);
}

.menu-loading .spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.menu-item-allergens {
  font-size: 0.68rem;
  color: rgba(176,160,144,0.5);
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  white-space: nowrap;
  margin-top: 0.1rem;
}

.menu-error {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-text-muted);
}

/* ── =====================
   RESERVATIONS
   ===================== */
#reservations { background: var(--color-bg-alt); }

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

.call-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 460px;
}

.call-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.call-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.call-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.call-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  text-decoration: none;
  margin-bottom: 1.75rem;
  display: block;
  transition: opacity var(--transition);
}

.call-number:hover { opacity: 0.75; }

.call-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.call-hours {
  width: 100%;
  max-width: 460px;
}

.call-hours h3 {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
}
.hours-table tr td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr td:first-child {
  color: var(--color-text);
  width: 55%;
}
.hours-table tr.today td { color: var(--color-gold); }


/* ── =====================
   CONTACT & MAP
   ===================== */
#contact { background: var(--color-bg-alt); }

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

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-content strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-content a,
.contact-item-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
}
.contact-item-content a:hover { color: var(--color-gold); }

.directions-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.directions-link:hover { opacity: 0.75; }

.transport-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--color-gold);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  margin-right: 0.3rem;
}

.parking-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.parking-list li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.parking-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) invert(5%);
}

/* ── =====================
   FOOTER
   ===================== */
#site-footer {
  background: #070707;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 1.5rem;
}

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

.footer-brand .logo-img { width: 64px; height: 64px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,175,55,0.08);
}
.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-text); }

.footer-hours p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.footer-hours p span { color: var(--color-text); }

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(176,160,144,0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(176,160,144,0.5);
}
.footer-legal a:hover { color: var(--color-gold); }

/* ── =====================
   COOKIE CONSENT (Klaro overrides)
   ===================== */
.klaro .cookie-modal,
.klaro .cookie-notice {
  font-family: var(--font-sans) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-accept,
.klaro .cookie-notice .cn-buttons .cn-button {
  background: var(--color-gold) !important;
  color: #0B0B0B !important;
}

/* ── =====================
   INNER PAGES (Impressum / Datenschutz)
   ===================== */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-content {
  padding: 4rem 0 6rem;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 2.5rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
}

.prose p,
.prose li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose a { font-size: inherit; }

/* ── =====================
   RESPONSIVE – TABLET (≥ 640px)
   ===================== */
@media (min-width: 640px) {
  #signature .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

}

/* ── =====================
   RESPONSIVE – DESKTOP (≥ 768px)
   ===================== */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }

  #about .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  #about .about-image-wrap { order: 2; }
  #about .about-text       { order: 1; }

  .reservation-call {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── =====================
   RESPONSIVE – LARGE (≥ 1024px)
   ===================== */
@media (min-width: 1024px) {
  #signature .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── =====================
   PRINT STYLES
   ===================== */
@media print {
  #site-header, #site-footer, .hero-scroll, .hero-actions { display: none; }
  body { background: white; color: black; }
  .section { padding: 1rem 0; }
}

/* ── =====================
   LANGUAGE TOGGLE
   ===================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--color-gold-muted);
  color: var(--color-text);
}
.lang-toggle .lang-sep {
  color: var(--color-border);
}
.lang-toggle [data-lang] {
  transition: color 0.2s;
}
.lang-toggle [data-lang].lang-active {
  color: var(--color-gold);
}
.nav-mobile .lang-toggle {
  margin-top: 2rem;
  align-self: flex-end;
  font-size: 0.8rem;
  padding: 5px 12px;
}
