/* ============================================================
   SARSA — styles.css
   Fonts: Brygada 1918 (display) + Red Hat Text (body)
   Palette: Deep olive-forest | Warm amber-gold | Parchment cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:wght@400;600;700&family=Red+Hat+Text:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --dark:        #1C2614;
  --dark-rich:   #141C0E;
  --accent:      #C49A42;
  --accent-deep: #A87E2E;
  --highlight:   #E8C87A;
  --cream:       #F5F0E3;
  --cream-soft:  #EDE8D8;
  --bg-alt:      #252E18;
  --text-light:  #F5F0E3;
  --text-muted:  #B8B09A;
  --white:       #FFFFFF;
  --border:      rgba(196, 154, 66, 0.25);

  --font-display: 'Brygada 1918', Georgia, serif;
  --font-body:    'Red Hat Text', system-ui, sans-serif;

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

  --transition: 0.3s ease;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.6);

  --nav-height: 72px;
  --section-pad: 100px;
}

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

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

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

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 600; }

p { font-size: 1rem; font-weight: 400; line-height: 1.75; }

.overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark-rich);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--dark-rich);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(245, 240, 227, 0.4);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 38, 20, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.navbar .nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ── Mobile Nav ── */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(20, 28, 14, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
  border-top: 1px solid var(--border);
}

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

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 154, 66, 0.1);
  transition: var(--transition);
}

.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 16px; align-self: flex-start; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 28, 14, 0.2) 0%,
    rgba(20, 28, 14, 0.1) 30%,
    rgba(20, 28, 14, 0.6) 65%,
    rgba(20, 28, 14, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 154, 66, 0.15);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 240, 227, 0.85);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--cream);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ── Section Common ── */
.section {
  padding: var(--section-pad) 40px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 { color: var(--cream); margin-top: 10px; }

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 14px;
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── Features Strip ── */
.features {
  background: var(--bg-alt);
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-icon svg { width: 32px; height: 32px; }

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Menu Grid (3×3) ── */
.menu-section { background: var(--dark); }

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

.menu-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.menu-card-img {
  aspect-ratio: 4/3;
  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 22px 24px;
}

.menu-card-body .overline {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.menu-card-body h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Brand Teaser ── */
.brand-teaser {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-teaser-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.brand-teaser-img {
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 480px;
}

.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.brand-teaser-text h2 { color: var(--cream); }

.brand-teaser-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.michelin-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 154, 66, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  width: fit-content;
  margin-top: 8px;
}

.michelin-badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.michelin-badge span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Stats ── */
.stats-section {
  background: var(--dark-rich);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Reviews ── */
.reviews-section { background: var(--bg-alt); }

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

.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.review-stars svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Social CTA ── */
.social-cta {
  background: var(--dark-rich);
  text-align: center;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.social-cta h2 { color: var(--cream); margin: 12px 0 16px; }
.social-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }

.social-cta-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon svg { width: 20px; height: 20px; }

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ── Instagram Feed ── */
.feed-section { background: var(--dark); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feed-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 154, 66, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.feed-item:hover img { transform: scale(1.08); }
.feed-item:hover::after { opacity: 1; }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-height);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 28, 14, 0.3) 0%,
    rgba(20, 28, 14, 0.8) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
}

.page-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ── About Page ── */
.about-story {
  background: var(--dark);
}

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

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 28px;
  right: -20px;
  width: 160px;
  aspect-ratio: 1;
  border: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-text {}
.about-text h2 { color: var(--cream); margin: 10px 0 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-values {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

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

.value-item {
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border);
}

.value-item:last-child { border-right: none; }

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(196, 154, 66, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-icon svg { width: 24px; height: 24px; }
.value-item h3 { font-size: 1.1rem; color: var(--cream); }
.value-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Menu Page ── */
.menu-page-section { background: var(--dark); }

.menu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196, 154, 66, 0.08);
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin: 56px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.menu-category-title:first-child { margin-top: 0; }

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

.menu-item-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.menu-item-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.menu-item-card.no-img { padding: 24px; }

.menu-item-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-item-body {
  padding: 18px 20px 22px;
}

.menu-item-body .overline { font-size: 0.66rem; margin-bottom: 4px; }
.menu-item-body h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 6px; }
.menu-item-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ── Gallery Page ── */
.gallery-section { background: var(--dark); }

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

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 280px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 154, 66, 0.2);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Contact Page ── */
.contact-section { background: var(--dark); }

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

.contact-info { }
.contact-info h2 { color: var(--cream); margin: 10px 0 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 154, 66, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-text {}
.contact-detail-text h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-detail-text p { font-size: 0.92rem; color: var(--cream); line-height: 1.6; margin: 0; }
.contact-detail-text a { color: var(--cream); transition: var(--transition); }
.contact-detail-text a:hover { color: var(--accent); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: var(--cream); font-weight: 500; }

/* ── Contact Form ── */
.contact-form-wrap {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

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

.form-group select option { background: var(--dark); color: var(--cream); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
}

.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; }
.form-success h3 { color: var(--cream); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ── FAQ Accordion ── */
.faq-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark);
  transition: var(--transition);
}

.faq-item.open { border-color: var(--accent); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Map Area ── */
.map-embed {
  height: 400px;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.1);
}

/* ── Footer ── */
footer {
  background: var(--dark-rich);
  border-top: 1px solid var(--border);
  padding: 72px 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.michelin-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}

.michelin-footer svg { width: 14px; height: 14px; }

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-rich);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent-deep); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img { min-height: 360px; }
  .brand-teaser-text { padding: 56px 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-height: 64px; }

  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 24px 64px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .section { padding: var(--section-pad) 24px; }
  .features { padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .page-hero { height: 340px; }
  .page-hero-content { padding: 0 24px 40px; }

  .social-cta { padding: 56px 24px; }
  .stats-section { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
