/* ============================================================
   RUBY SUSHI — Main Site CSS (MVC)
   Design: Dark/moody, salmon-coral accent, 3-col grid
   ============================================================ */

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

:root {
  --bg:            #191919;
  --bg-2:          #111111;
  --bg-card:       #222220;
  --bg-card-hover: #2a2a27;
  --accent:        #F5A68D;
  --accent-2:      #BD4F30;
  --accent-glow:   rgba(245, 166, 141, 0.18);
  --white:         #FFFFFF;
  --white-70:      rgba(255,255,255,0.70);
  --white-40:      rgba(255,255,255,0.40);
  --white-15:      rgba(255,255,255,0.15);
  --white-08:      rgba(255,255,255,0.08);
  --divider:       rgba(255,255,255,0.12);
  /* EN fonts (default) */
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
  /* HU fonts: keep the same premium look as EN, with Hungarian accent support */
  --font-head-hu:  'Montserrat', sans-serif;
  --font-body-hu:  'Inter', sans-serif;
  --max-w:         1160px;
  --nav-h:         72px;
  --radius:        4px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── LANGUAGE-SPECIFIC FONTS ─────────────────────────────── */
/* English: Montserrat headings + Inter body (default already set above) */
html[lang="en"] body {
  font-family: 'Inter', sans-serif;
}
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] .logo-text,
html[lang="en"] .footer-logo-text,
html[lang="en"] .hero-title,
html[lang="en"] .home-hero-title,
html[lang="en"] .section-heading,
html[lang="en"] .cta-title,
html[lang="en"] .stat-number,
html[lang="en"] .item-name,
html[lang="en"] .section-title,
html[lang="en"] .booking-form-title,
html[lang="en"] .booking-info-title,
html[lang="en"] .value-title,
html[lang="en"] .team-name,
html[lang="en"] .featured-card-name,
html[lang="en"] .about-badge-number {
  font-family: 'Montserrat', sans-serif;
}

/* Hungarian: same premium Montserrat + Inter pairing as English */
html[lang="hu"] body {
  font-family: var(--font-body-hu);
}
html[lang="hu"] h1,
html[lang="hu"] h2,
html[lang="hu"] h3,
html[lang="hu"] h4,
html[lang="hu"] .logo-text,
html[lang="hu"] .footer-logo-text,
html[lang="hu"] .hero-title,
html[lang="hu"] .home-hero-title,
html[lang="hu"] .section-heading,
html[lang="hu"] .cta-title,
html[lang="hu"] .stat-number,
html[lang="hu"] .item-name,
html[lang="hu"] .section-title,
html[lang="hu"] .booking-form-title,
html[lang="hu"] .booking-info-title,
html[lang="hu"] .value-title,
html[lang="hu"] .team-name,
html[lang="hu"] .featured-card-name,
html[lang="hu"] .about-badge-number,
html[lang="hu"] .booking-success h3 {
  font-family: var(--font-head-hu);
}
/* Nav and UI elements use Inter in HU mode for readability */
html[lang="hu"] .nav-link,
html[lang="hu"] .nav-cta,
html[lang="hu"] .cat-btn,
html[lang="hu"] .btn-primary,
html[lang="hu"] .btn-outline,
html[lang="hu"] .btn-booking,
html[lang="hu"] .footer-heading,
html[lang="hu"] .legend-title,
html[lang="hu"] .item-price,
html[lang="hu"] .featured-card-price,
html[lang="hu"] .form-label,
html[lang="hu"] .form-input,
html[lang="hu"] .form-select,
html[lang="hu"] .form-textarea,
html[lang="hu"] .allergen-tag,
html[lang="hu"] .hero-eyebrow,
html[lang="hu"] .home-hero-eyebrow,
html[lang="hu"] .section-label,
html[lang="hu"] .footer-tagline,
html[lang="hu"] .footer-btn {
  font-family: var(--font-body-hu);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--white-40); border-radius: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  overflow: hidden; /* clip mobile nav peeking through */
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#site-header.nav-open {
  overflow: visible; /* allow nav dropdown to show when open */
}
#site-header.scrolled {
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 1px 0 var(--divider);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: clamp(34px, 5vw, 44px);
  width: auto;
  max-width: 96px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-text span {
  color: var(--accent);
}
.logo-text-fallback {
  display: none;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover  { color: var(--white); background: var(--white-08); }
.nav-link.active { color: var(--accent); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 9px 18px;
  border: 1px solid rgba(245,166,141,0.5);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Language Switcher (flag-only) ───────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-sep {
  color: var(--white-15);
  font-size: 11px;
  user-select: none;
  margin: 0 2px;
}
/* Flag-icons library sizing inside lang buttons */
.lang-btn .fi {
  display: block;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
  background-size: cover;
  flex-shrink: 0;
  font-size: 0; /* hide any fallback text */
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s, background 0.2s;
  position: relative;
  line-height: 1;
}
.lang-btn:hover {
  opacity: 0.85;
  background: var(--white-08);
  transform: scale(1.12);
}
.lang-btn.active {
  opacity: 1;
  border-color: rgba(245,166,141,0.4);
  background: rgba(245,166,141,0.07);
  transform: scale(1.05);
}
/* Tooltip on hover */
.lang-btn[aria-label]::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17,17,17,0.92);
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 100;
}
.lang-btn:hover::after {
  opacity: 1;
}

/* Mobile lang inside nav */
.lang-switcher--mobile {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
  justify-content: flex-start;
  gap: 8px;
}
.lang-switcher--mobile .lang-btn { opacity: 0.55; }
.lang-switcher--mobile .lang-btn .fi { width: 34px; height: 24px; }
.lang-switcher--mobile .lang-btn.active { opacity: 1; }
/* Hide tooltip on mobile (no hover) */
.lang-switcher--mobile .lang-btn::after { display: none; }

/* Desktop lang beside hamburger */
.lang-switcher--desktop {
  display: flex;
}

/* ============================================================
   PAGE HERO (generic — used by Menu, About, etc.)
   ============================================================ */
.page-hero {
  position: relative;
  height: 340px;
  background:
    linear-gradient(to bottom, rgba(25,25,25,0.45) 0%, rgba(25,25,25,0.80) 60%, #191919 100%),
    url('https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?w=1600&q=80') center/cover no-repeat,
    linear-gradient(135deg, #2d1a10 0%, #1a1208 40%, #191919 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: var(--nav-h);
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 14px;
  color: var(--white-70);
  letter-spacing: 0.04em;
}

/* ============================================================
   HOME PAGE — FULL HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25,25,25,0.55) 0%, rgba(17,17,17,0.70) 100%),
    url('https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?w=1920&q=85') center/cover no-repeat;
  margin-top: 0;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.30) 60%,
    transparent 100%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 32px 100px;
  width: 100%;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.home-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.home-hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.home-hero-title em {
  font-style: normal;
  color: var(--accent);
}

.home-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-70);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #f8b89f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,141,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--white-40);
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--white-70);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-40);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-40), transparent);
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ============================================================
   HOME — FEATURED SECTION
   ============================================================ */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc-text {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.8;
  max-width: 520px;
}

/* ── Home Stats Bar ──────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 48px 0;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Featured Dishes ─────────────────────────────────────── */
.featured-section {
  padding: 96px 0;
}
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.featured-header-left {}
.featured-header-right {}
.link-arrow {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; }

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

.featured-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.featured-card:hover { transform: translateY(-6px); }
.featured-card:hover .featured-card-img {
  transform: scale(1.07);
}
.featured-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  position: absolute;
  inset: 0;
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(17,17,17,0.92) 0%,
    rgba(17,17,17,0.4) 40%,
    transparent 70%);
}

.featured-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.featured-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.featured-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.featured-card:first-child .featured-card-name {
  font-size: 24px;
}
.featured-card-desc {
  font-size: 12.5px;
  color: var(--white-70);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card-price {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
}

/* ── Experience Section ──────────────────────────────────── */
.experience-section {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-image-wrap {
  position: relative;
}
.experience-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.experience-image-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  bottom: -40px;
  right: -40px;
  border: 4px solid var(--bg-2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.experience-content {}
.experience-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.experience-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: var(--bg-card);
}
.feature-text h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  padding: 96px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.3s var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(245,166,141,0.3);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card-hover);
}
.testimonial-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-source {
  font-size: 11px;
  color: var(--white-40);
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--divider);
  text-align: center;
}
.cta-section .section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-title em {
  font-style: normal;
  color: var(--accent);
}
.cta-desc {
  font-size: 15px;
  color: var(--white-40);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background-image:
    linear-gradient(to bottom, rgba(25,25,25,0.40) 0%, rgba(25,25,25,0.85) 60%, #191919 100%),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80');
}

.about-story {
  padding: 96px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-content {}
.about-story-text {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.9;
  margin-top: 24px;
}
.about-story-text + .about-story-text {
  margin-top: 16px;
}
.about-story-image {
  position: relative;
}
.about-story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.about-story-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.about-badge-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-70);
}

/* ── Values ──────────────────────────────────────────────── */
.values-section {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.value-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--divider);
  transition: border-color 0.2s, transform 0.3s var(--ease);
}
.value-card:hover {
  border-color: rgba(245,166,141,0.3);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13.5px;
  color: var(--white-40);
  line-height: 1.7;
}

/* ── Team ────────────────────────────────────────────────── */
.team-section {
  padding: 96px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card {
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo-wrap {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(30%);
  transition: filter 0.4s;
}
.team-card:hover .team-photo {
  filter: grayscale(0%);
}
.team-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.7;
}

/* ── Gallery Strip ───────────────────────────────────────── */
.gallery-strip {
  padding: 0 0 96px;
}
.gallery-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
  filter: brightness(0.8);
}
.gallery-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-hero {
  background-image:
    linear-gradient(to bottom, rgba(25,25,25,0.40) 0%, rgba(25,25,25,0.85) 60%, #191919 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
}

.booking-section {
  padding: 80px 0 120px;
}
.booking-grid {
  display: flex;
  justify-content: center;
  align-items: start;
}

/* Booking Info sidebar */
.booking-info {}
.booking-info-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
}
.booking-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.booking-info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-info-text h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.booking-info-text p {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
}
.booking-divider {
  width: 100%;
  height: 1px;
  background: var(--divider);
  margin: 32px 0;
}
.booking-hours {}
.booking-hours h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.booking-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-70);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}
.booking-hours-item:last-child { border-bottom: none; }
.booking-hours-item span:last-child { color: var(--white-40); }

/* Booking Form */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 680px;
}
.booking-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.booking-form-subtitle {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 36px;
  line-height: 1.6;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--white-70);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(245,166,141,0.6);
  background: rgba(255,255,255,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-40);
}
.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option {
  background: #222220;
  color: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-notice {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.6;
  background: rgba(245,166,141,0.05);
  border: 1px solid rgba(245,166,141,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.btn-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.btn-booking:hover {
  background: #f8b89f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,141,0.3);
}
.btn-booking:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.booking-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17,17,17,0.72);
  backdrop-filter: blur(4px);
}
.booking-loading-overlay.show {
  display: flex;
}
.booking-loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 320px);
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  text-align: center;
}
.booking-loading-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
}
.booking-loading-box p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

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

/* Booking confirmation message */
.booking-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.booking-success.show { display: block; }
.booking-success-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.booking-success h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.booking-success p {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
}

/* ============================================================
   MENU CATEGORY NAV (sticky links)
   ============================================================ */
.category-nav-wrapper {
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
  background: rgba(17,17,17,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
}

.category-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }

.cat-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white-40);
  text-decoration: none;
  padding: 18px 20px;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
  flex-shrink: 0;
}
.cat-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.cat-btn:hover  { color: var(--white-70); }
.cat-btn.active { color: var(--white); }
.cat-btn.active::after { transform: scaleX(1); }

/* ============================================================
   MENU CONTENT
   ============================================================ */
.menu-loading {
  padding: 80px 0;
  text-align: center;
  color: var(--white-40);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#menu-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 80px;
}

.menu-section {
  display: block;
  scroll-margin-top: calc(var(--nav-h) + 64px);
}
.menu-section + .menu-section { margin-top: 32px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
}
.section-desc {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 0.04em;
  text-align: right;
  max-width: 340px;
}

/* 3-col grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}

/* Menu item card */
.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s;
  position: relative;
  cursor: default;
}
.menu-item:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.menu-item:hover .item-image img { transform: scale(1.05); }

.item-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #2a2a27;
  position: relative;
  cursor: zoom-in;
}
.item-image.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.08) 42%, transparent 72%);
  transform: translateX(-100%);
  animation: imageShimmer 1.25s ease-in-out infinite;
}
.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.item-image.no-img {
  background: linear-gradient(135deg, #252523 0%, #1e1e1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-image.no-img::before {
  content: '🍣';
  font-size: 52px;
  opacity: 0.18;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

@keyframes imageShimmer {
  to { transform: translateX(100%); }
}

.item-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.item-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.4;
}
.item-portion {
  color: var(--white-40);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-top: -4px;
}
.item-desc {
  font-size: 12.5px;
  color: var(--white-40);
  line-height: 1.65;
  margin-top: -2px;
}
.item-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.allergen-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 4px 10px 4px 7px;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
  user-select: none;
}
.allergen-tag:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
}
.allergen-icon {
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}
.allergen-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: rgba(245, 166, 141, 0.18);
  border: 1px solid rgba(245, 166, 141, 0.35);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}
.item-price {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.featured-price { color: var(--accent-2) !important; }

.menu-item.featured {
  border: 1px solid rgba(245, 166, 141, 0.25);
}
.menu-item.featured:hover {
  border-color: rgba(245, 166, 141, 0.5);
  box-shadow: 0 0 24px rgba(245, 166, 141, 0.1);
}
.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(25, 25, 25, 0.88);
  border: 1px solid rgba(245,166,141,0.5);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px 5px 7px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.featured-badge svg { flex-shrink: 0; }

/* ── Allergen legend ──────────────────────────────────────── */
.allergen-legend {
  margin-top: 80px;
  border-top: 1px solid var(--divider);
  padding-top: 32px;
}
.legend-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legend-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
}
.legend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.legend-note {
  font-size: 11.5px;
  color: var(--white-40);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--divider);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 64px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo-text span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.7;
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 5px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-15);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-40);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.footer-btn:hover {
  background: var(--accent);
  color: var(--bg);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--divider);
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white-70); }

.location-map {
  width: 100%;
  background: var(--bg-2);
  border-top: 1px solid var(--divider);
  overflow: hidden;
  line-height: 0;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 450px);
  min-height: 280px;
  border: 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
  animation: lightboxIn 0.22s var(--ease);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(25,25,25,0.7);
  color: rgba(255,255,255,0.8);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(40,40,40,0.85);
}
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--white-70);
  letter-spacing: 0.04em;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-desc { text-align: left; max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-card:first-child { grid-row: span 1; }
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-image-accent { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-image { order: -1; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* ── CSS Variables ──────────────────────── */
  :root {
    --nav-h: 60px;
  }

  /* ── Header & Nav ───────────────────────── */
  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }
  .logo-img {
    height: 36px;
    max-width: 80px;
  }

  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--divider);
    gap: 2px;
    /* Fully hidden: move up + invisible + no clicks */
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease),
                opacity 0.3s var(--ease),
                visibility 0s linear 0.3s;
    z-index: 999;
    /* Safe area for notched iPhones */
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s var(--ease),
                opacity 0.3s var(--ease),
                visibility 0s linear 0s;
  }

  /* Touch-friendly nav links (min 44px tap target) */
  .nav-link {
    padding: 13px 16px;
    font-size: 15px;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    padding: 13px 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hamburger — bigger tap target on mobile */
  .hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 6px;
    flex-shrink: 0;
  }
  .hamburger span { width: 24px; height: 2px; }

  .lang-switcher--desktop { display: none; }
  .lang-switcher--mobile  { display: flex; }

  /* ── Buttons ────────────────────────────── */
  .btn-primary,
  .btn-outline {
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ── Hero ───────────────────────────────── */
  .home-hero-inner {
    padding: calc(var(--nav-h) + 56px) 16px 80px;
  }
  .home-hero-title {
    font-size: clamp(34px, 9.5vw, 52px);
    line-height: 1.08;
  }
  .home-hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* Hide scroll indicator on mobile (no mouse scroll pattern) */
  .hero-scroll { display: none; }

  /* ── Stats Bar ──────────────────────────── */
  .stats-bar { padding: 36px 0; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 0 16px;
  }
  .stat-number { font-size: 30px; }
  .stat-label  { font-size: 11px; }

  /* ── Featured Grid ──────────────────────── */
  .featured-section { padding: 56px 0; }
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-card { aspect-ratio: 4/3; }
  .featured-card:first-child { aspect-ratio: 4/3; }
  .featured-card-body { padding: 20px 18px; }

  /* ── Experience Section ─────────────────── */
  .experience-section,
  .testimonials-section,
  .cta-section,
  .values-section,
  .team-section,
  .about-story,
  .gallery-strip,
  .booking-section { padding: 56px 0; }

  /* ── Section Wrappers ───────────────────── */
  .section-wrap { padding: 0 16px; }
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  .section-heading { font-size: clamp(24px, 7vw, 36px); }
  .section-desc-text { max-width: 100%; }

  /* ── Testimonials ───────────────────────── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }

  /* ── Values ─────────────────────────────── */
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 28px 20px; }

  /* ── Team ───────────────────────────────── */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 40px 0 0;
    gap: 16px;
  }

  /* ── Gallery ────────────────────────────── */
  .gallery-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 3px; }

  /* ── Page Hero (Menu/About/Booking) ─────── */
  .page-hero {
    height: 220px;
    padding-bottom: 32px;
  }
  .hero-content { padding: 0 16px; }
  .hero-title   { font-size: clamp(28px, 8vw, 40px); }
  .hero-eyebrow { font-size: 10px; }

  /* ── Category Nav (Menu sticky tabs) ────── */
  .category-nav { padding: 0 12px; }
  .cat-btn { font-size: 12px; padding: 14px 12px; }

  /* ── Menu Content ───────────────────────── */
  #menu-main { padding: 0 16px 60px; }
  .section-header { padding: 40px 0 28px; }
  .section-title  { font-size: 20px; }

  /* Menu items: horizontal card layout */
  .items-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .menu-item {
    flex-direction: row;
    align-items: stretch;
    min-height: 112px;
  }
  .item-image {
    width: 100px;
    min-width: 100px;
    height: auto;
    align-self: stretch;
    flex-shrink: 0;
    aspect-ratio: unset;
    border-radius: 6px 0 0 6px;
  }
  .item-image img {
    position: absolute;
    inset: 0;
  }
  .item-body {
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 5px;
    flex: 1;
  }
  .item-name  { font-size: 13px; }
  .item-desc  {
    font-size: 11.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .item-price  { font-size: 14px; }
  .item-labels { gap: 4px; margin-top: 2px; }
  .allergen-tag  { font-size: 10px; padding: 3px 7px; }
  .featured-badge { display: none; }

  /* ── Booking ────────────────────────────── */
  .booking-form-wrap { padding: 28px 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* FIX: iOS Safari zooms in on input focus if font-size < 16px */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  /* Touch-friendly form inputs */
  .form-input,
  .form-select {
    min-height: 48px;
  }
  .btn-booking {
    min-height: 52px;
    font-size: 14px;
    width: 100%;
  }

  /* ── CTA Section ────────────────────────── */
  .cta-title { font-size: clamp(26px, 7vw, 40px); }
  .cta-desc  { font-size: 14px; }

  /* ── Footer ─────────────────────────────── */
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 16px 32px;
    gap: 28px;
  }
  .footer-logo-img { width: 56px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px;
    /* Safe area for home-indicator bar */
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px 16px; }

  /* ── About story badges ─────────────────── */
  .about-story-img-badge {
    width: 110px;
    height: 110px;
    left: -10px;
    bottom: -10px;
  }
  .about-badge-number { font-size: 26px; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (max 390px)
   iPhone SE, Galaxy A series, etc.
   ============================================================ */
@media (max-width: 390px) {
  .header-inner { padding: 0 12px; }
  .logo-img {
    height: 32px;
    max-width: 72px;
  }

  .home-hero-inner { padding: calc(var(--nav-h) + 48px) 12px 64px; }
  .home-hero-title { font-size: 30px; }

  .section-wrap { padding: 0 12px; }
  #menu-main    { padding: 0 12px 56px; }

  .stats-inner { gap: 16px 12px; padding: 0 12px; }
  .stat-number { font-size: 26px; }

  .menu-item { min-height: 108px; }
  .item-image { width: 88px; min-width: 88px; }
  .item-name  { font-size: 12.5px; }

  .booking-form-wrap { padding: 24px 12px; }

  .footer-inner  { padding: 32px 12px; }
  .footer-bottom { padding: 14px 12px; }

  .team-grid { grid-template-columns: 1fr; }

  .gallery-strip-inner { grid-template-columns: repeat(2, 1fr); }

  .page-hero { height: 200px; }
  .hero-title { font-size: 26px; }
}

/* ============================================================
   TOUCH / POINTER: coarse = touchscreen
   Extra tap-target safety & remove hover artifacts
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover transforms that feel glitchy on touch */
  .featured-card:hover { transform: none; }
  .menu-item:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .value-card:hover { transform: none; }
  .team-card:hover { transform: none; }
  .btn-primary:hover { transform: none; box-shadow: none; }
  .btn-outline:hover { transform: none; }
  .btn-booking:hover { transform: none; box-shadow: none; }
  .link-arrow:hover { gap: 6px; }

  /* Keep tap highlights natural */
  a, button { -webkit-tap-highlight-color: rgba(245,166,141,0.15); }

  /* Ensure all interactive elements meet 44px minimum */
  .lang-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
  .lang-btn .fi { width: 28px; height: 20px; }
  .social-link  { width: 44px; height: 44px; }
  .cat-btn      { min-height: 44px; }
  .hamburger    { min-width: 44px; min-height: 44px; }
}

