/* ═══════════════════════════════════════════════════════
   FADO Restaurant — Main Stylesheet
   Colors: Maroon #3D0000 · Gold #C8963E · Cream #FBF5E6
   ═══════════════════════════════════════════════════════ */

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

:root {
  --maroon:      #3D0000;
  --maroon-dark: #1A0000;
  --maroon-mid:  #6B0000;
  --maroon-light:#8B1A1A;
  --gold:        #C8963E;
  --gold-light:  #E8B86D;
  --gold-pale:   #F5E0B5;
  --cream:       #FBF5E6;
  --cream-dark:  #F0E6CC;
  --white:       #FFFFFF;
  --text-dark:   #1A0000;
  --text-mid:    #5C2D2D;
  --text-light:  #9A7070;
  --border:      rgba(61,0,0,0.12);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  --shadow-sm: 0 2px 8px rgba(61,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(61,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(61,0,0,0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

h2 em, h1 em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

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

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; margin-top: 12px; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── STARS ─────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: 1rem; display: flex; gap: 2px; }
.stars--sm { font-size: 0.75rem; }

/* ── REVEAL ANIMATION ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in { animation: fadeIn 1s ease forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--maroon-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { width: 40px; height: auto; filter: brightness(0) invert(1); }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,0,0,0.85) 0%,
    rgba(61,0,0,0.6) 50%,
    rgba(26,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  animation-delay: 0.2s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,62,0.2);
  border: 1px solid rgba(200,150,62,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 60px;
  color: var(--white);
  font-size: 0.9rem;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── HIGHLIGHTS BAR ────────────────────────────────────── */
.highlights-bar {
  background: var(--maroon);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.highlight i { color: var(--gold); font-size: 1rem; }

/* ── ABOUT ─────────────────────────────────────────────── */
.about { background: var(--cream); }

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

.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-side {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 18px 22px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text   { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feat i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.about-feat strong { display: block; color: var(--maroon); font-size: 0.95rem; }
.about-feat span   { font-size: 0.85rem; color: var(--text-mid); }

/* ── MENU ──────────────────────────────────────────────── */
.menu-section { background: var(--maroon-dark); }
.menu-section .section-label { color: var(--gold); }
.menu-section h2 { color: var(--white); }
.menu-section h2 em { color: var(--gold); }
.menu-section .section-sub { color: rgba(255,255,255,0.6); }

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

.tab-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-dark);
  font-weight: 600;
}

.menu-panels { position: relative; }
.menu-panel  { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,150,62,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 20px; }
.menu-card-body h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.menu-card-body p  { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

.menu-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.menu-cta p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.95rem; }
.menu-cta strong { color: var(--gold); }
.menu-cta .btn-outline { border-color: var(--gold); color: var(--gold); }
.menu-cta .btn-outline:hover { background: var(--gold); color: var(--maroon-dark); }

/* ── EVENTS ────────────────────────────────────────────── */
.events-section {
  position: relative;
  padding: 120px 0;
}
.events-bg {
  position: absolute;
  inset: 0;
}
.events-bg img { width: 100%; height: 100%; object-fit: cover; }
.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,0,0,0.93) 0%, rgba(61,0,0,0.88) 100%);
}

.events-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.events-title {
  color: var(--white);
  margin-bottom: 20px;
}
.events-sub {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.events-cards {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.event-card:hover { background: rgba(255,255,255,0.1); }
.event-card i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.event-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.event-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

.event-card--featured {
  background: var(--maroon);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.event-card--featured:hover { background: var(--maroon-mid); }

.event-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.event-price span { font-size: 1rem; font-weight: 400; }

.event-card--featured .btn-primary { margin-top: 20px; width: 100%; justify-content: center; }

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,0,0,0.8));
  color: var(--white);
  padding: 20px 14px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── REVIEWS ───────────────────────────────────────────── */
.reviews-section { background: var(--maroon-dark); }
.reviews-section .section-label { color: var(--gold); }
.reviews-section h2 { color: var(--white); }
.reviews-section h2 em { color: var(--gold); }

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.score-big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.score-count { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: block; margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.09); }

.review-card--featured {
  background: var(--maroon);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header strong { color: var(--white); display: block; margin-bottom: 4px; }

.review-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-date { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.reviews-cta { text-align: center; }
.reviews-cta .btn-outline { border-color: var(--gold); color: var(--gold); }
.reviews-cta .btn-outline:hover { background: var(--gold); color: var(--maroon-dark); }

/* ── RESERVATION ───────────────────────────────────────── */
.reserve-section { background: var(--cream); }

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.reserve-info h2 { margin-bottom: 36px; }
.reserve-info h2 em { color: var(--gold); }

.info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; color: var(--maroon); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.info-item span, .info-item a { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.info-item a:hover { color: var(--maroon); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--maroon-dark); }

/* Reservation Form */
.reserve-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.reserve-form h3 {
  color: var(--maroon);
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--maroon);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,0,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── MAP ───────────────────────────────────────────────── */
.map-wrap { height: 350px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--maroon-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand img { margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,62,0.3);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }

.footer-hours { gap: 8px !important; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours li em { color: var(--gold-light); font-style: normal; }

.footer-col address { display: flex; flex-direction: column; gap: 12px; }
.footer-col address p { font-size: 0.85rem; display: flex; align-items: flex-start; gap: 10px; }
.footer-col address i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-col address a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── BACK TO TOP ───────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── MENU LIST STYLE ───────────────────────────────────── */
.menu-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.menu-list-wrap--centered { max-width: 860px; }

.menu-category { margin-bottom: 36px; }

.menu-cat-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,62,0.25);
  margin-bottom: 16px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.menu-item:hover { background: rgba(255,255,255,0.03); padding-left: 8px; border-radius: 6px; }
.menu-item:last-child { border-bottom: none; }

.menu-item--signature .menu-item-name { color: var(--gold-light); }

.menu-item-info { flex: 1; }
.menu-item-name {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2px;
}
.menu-item-sub {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-style: italic;
}
.menu-item-sub--note {
  color: var(--gold);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.menu-item-price {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
}

.menu-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
  font-style: normal;
}

.menu-allergy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-top: 8px;
}
.menu-allergy i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.menu-allergy p { color: rgba(255,255,255,0.55); font-size: 0.78rem; line-height: 1.6; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-images  { height: 400px; }
  .reserve-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 180px); }
  .events-cards  { grid-template-columns: 1fr; max-width: 460px; }
  .event-card--featured { transform: scale(1); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }

  .about-images  { height: 320px; }
  .about-img-main { width: 65%; }
  .about-img-side { width: 50%; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-img { height: 180px; }
  .menu-list-wrap { grid-template-columns: 1fr; gap: 0; }

  .reviews-grid { grid-template-columns: 1fr; }
  .events-cards { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 8px;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-row: auto; grid-column: auto; }
  .gallery-item { height: 160px; }

  .form-row { grid-template-columns: 1fr; }
  .reserve-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlights-bar { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .about-images { height: 260px; }
  .lang-switcher { gap: 2px; }
  .lang-btn { padding: 4px 7px; font-size: 0.68rem; }
}

/* ── Lightbox ────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lb-figure {
  max-width: 90vw;
  max-height: 90vh;
  margin: 0;
  cursor: default;
}
.lb-figure img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}
.lb-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s, color 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 3rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; line-height: 1;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
.lb-counter {
  position: fixed;
  bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: #0d0d0d; }

.faq-list {
  max-width: 780px;
  margin: 3.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(200,150,62,0.18);
}
.faq-item:first-child {
  border-top: 1px solid rgba(200,150,62,0.18);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-chevron {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 0 1.35rem;
}
.faq-a p {
  color: rgba(240,232,216,0.65);
  line-height: 1.78;
  font-size: 0.95rem;
  max-width: 680px;
}

@media (max-width: 600px) {
  .faq-q { font-size: 0.97rem; }
}
