/* ============================================================
   CLASSIC RESTAURANT TEMPLATE — style.css
   Referans: Lumina Terra (terracotta + krem-bej, light theme)
   ============================================================ */

:root {
  --bg:            #FAF8F5;
  --bg-card:       #EDE4D8;
  --bg-white:      #FFFFFF;

  --accent:        #8C2E1C;
  --accent-hover:  #A33B2A;
  --accent-soft:   #F5EBE7;

  --text:          #1E1410;
  --text-secondary:#6B5645;
  --text-label:    #8B6B55;

  --border:        rgba(140, 110, 85, 0.18);
  --shadow:        0 4px 20px rgba(30, 20, 16, 0.08);
  --shadow-lg:     0 8px 40px rgba(30, 20, 16, 0.13);

  --nav-h:         64px;
  --radius:        12px;
  --container:     1160px;
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================ UTILS */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.875rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* ============================================================ SECTION LABELS */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2.75rem;
}

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-white);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 14px rgba(30, 20, 16, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.22s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: calc(100% - 1.8rem); }
.nav-cta-item { margin-left: 0.75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ LANG SWITCHER */
.lang-switcher { display: flex; align-items: center; flex-shrink: 0; }
.lang-select {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 26px 4px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-label);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  -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='%238B6B55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  transition: border-color 0.18s, color 0.18s;
}
.lang-select:hover { border-color: var(--accent); color: var(--accent); }
.lang-select:focus { outline: none; border-color: var(--accent); }

/* ============================================================ HERO */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 6rem);
  background: linear-gradient(140deg, #2A1708 0%, #5C2714 50%, #8C2E1C 100%);
  padding-top: var(--nav-h);
  padding-inline: clamp(1.5rem, 6vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='0.8' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 30%, rgba(205,120,60,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-logo-decor {
  order: 2;
  flex-shrink: 0;
  width: clamp(320px, 44vw, 640px);
  aspect-ratio: 16 / 9;
  height: auto !important;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.85;
  pointer-events: none;
}
.hero-content {
  order: 1;
  flex: 1;
  min-width: 0;
  max-width: 620px;
  margin: 0;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 228, 216, 0.7);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.25rem, 8vw, 6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  font-style: italic;
  color: #EDE4D8;
  margin-bottom: 2.75rem;
  line-height: 1.45;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================ ABOUT */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.info-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.info-card--white {
  background: var(--bg-white);
  border: 1px solid var(--border);
}
.info-card--beige {
  background: var(--bg-card);
}
.info-icon {
  color: var(--accent);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 8px;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-top: 0.25rem;
}
.info-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
  word-break: break-word;
}
a.info-value:hover { color: var(--accent); }

/* ============================================================ MENU CTA (index.html) */
.menu-cta-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-cta-inner {
  max-width: 640px;
}
.menu-cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================ MENU PAGE (menu.html) */
.menu-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(140deg, #2A1708 0%, #5C2714 50%, #8C2E1C 100%);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.menu-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 30%, rgba(205,120,60,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
}
.menu-hero-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,228,216,0.65);
  margin-bottom: 0.625rem;
}
.menu-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.menu-body {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
  min-height: 50vh;
}

/* ============================================================ MENU */
.menu-section {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.tabs-sticky {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.75rem;
}
.tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 1rem 1.625rem;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--accent-soft);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.menu-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.menu-item-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu-item-img-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: var(--bg-card);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-label);
}
.menu-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
  min-width: 0;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.menu-item-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-item-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.25rem;
}
.menu-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
}
.menu-empty-cat {
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 2rem 0;
}

/* ============================================================ CONTACT */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
}
.contact-val {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
  overflow-wrap: anywhere;
  min-width: 0;
}
a.contact-val:hover { color: var(--accent); }
.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(140, 46, 28, 0.15);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.social-chip:hover {
  background: var(--accent);
  color: #fff;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-label);
  padding: 3rem;
  text-align: center;
}
.map-placeholder p { font-size: 0.875rem; }
.map-open-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1000;
  background: #fff;
  color: #333;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: box-shadow 0.2s;
  white-space: nowrap;
}
.map-open-link:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.32); }
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.map-open-btn:hover { opacity: 0.85; }

/* ============================================================ FOOTER */
.footer {
  background: #1E1410;
  padding: 2.25rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}
.footer-powered {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.footer-powered a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
}
.footer-powered a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  .contact-map iframe { height: 280px; }
}

@media (max-width: 720px) {
  .hero-logo-decor { display: none !important; }
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(30,20,16,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.9rem 1rem; border-radius: 6px; }
  .nav-link::after { display: none; }
  .nav-cta-item { margin-left: 0; margin-top: 0.5rem; }
  .nav-cta-item .btn { width: 100%; justify-content: center; }
  .nav-hamburger { display: flex; }
  .lang-select { font-size: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .info-grid { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; }
  .menu-item-img,
  .menu-item-img-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 8px;
  }
}

/* ============================================================ TOP BAR (13) */
:root {
  --topbar-h: 30px;
  --scroll-offset: calc(var(--nav-h) + var(--topbar-h));
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 801;
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.35rem 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.topbar-item:hover { opacity: 1; }
/* only shift nav when top-bar is present in the DOM (index.html) */
#top-bar ~ .nav { top: var(--topbar-h); }
#hero { padding-top: calc(var(--nav-h) + var(--topbar-h)); }

/* ============================================================ HERO ENHANCEMENTS (14) */
#hero { height: 100vh; height: 100svh; overflow: hidden; min-height: unset; }
.hero__scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s ease-in-out infinite;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  z-index: 2;
  line-height: 0;
}
.hero__scroll-arrow:hover { color: #fff; }
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================ SCROLL REVEAL (17) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ PAGE LOADER (18) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__logo { width: 80px; height: 80px; object-fit: contain; }
.page-loader__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--accent);
}

/* ============================================================ STICKY NAV BLUR (12) */
#site-nav { transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s; }
#site-nav.scrolled {
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ============================================================ WHY US / TRUST CARDS (2) */
.why-us-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-card);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.why-card:hover { background: var(--accent); color: #fff; transform: translateY(-6px); }
.why-card__icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.why-card p { font-size: 0.875rem; line-height: 1.6; opacity: 0.85; }

/* ============================================================ FEATURED DISHES / FLIP CARD (1+16) */
.featured-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.flip-card { perspective: 1000px; height: 280px; }
.flip-card-inner {
  transform-style: preserve-3d;
  transition: transform 0.6s;
  position: relative;
  width: 100%;
  height: 100%;
}
.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
}
.flip-card-front img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.flip-card-back {
  transform: rotateY(180deg);
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  gap: 0.5rem;
  text-align: center;
}
.flip-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
.flip-card__price { font-size: 1.4rem; font-weight: 700; }
.flip-card__category { font-size: 0.8rem; opacity: 0.8; }

/* ============================================================ MENU CATEGORIES + SLIDER (4+11) */
.menu-categories-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-card);
}
.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.category-card {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: background 0.25s, color 0.25s;
}
.category-card:hover,
.category-card.active { background: var(--accent); color: #fff; }
.category-slider-wrap { margin-bottom: 1.5rem; }
.category-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}
.category-slider::-webkit-scrollbar { display: none; }
.menu-item-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.menu-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-item-card__img { width: 100%; height: 130px; object-fit: cover; display: block; }
.menu-item-card__img-placeholder {
  width: 100%;
  height: 130px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.menu-item-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu-item-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-item-card__price { color: var(--accent); font-weight: 700; font-size: 0.9375rem; }
.menu-full-link-wrap { margin-top: 2rem; text-align: center; }
.menu-full-link-wrap .btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.menu-full-link-wrap .btn-outline:hover { background: var(--accent); color: #fff; }

/* ============================================================ RESERVATION CTA (6) */
.reservation-cta {
  background: #1E1410;
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.reservation-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.reservation-cta__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}
.reservation-cta__phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.reservation-cta__phone:hover { color: #f5c4b8; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ============================================================ ORDER STEPS (7) */
.order-steps-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: var(--accent);
  opacity: 0.2;
  pointer-events: none;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.step-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-bottom: -0.75rem;
}
.step-card__icon { font-size: 2rem; }
.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.step-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================ REVIEWS CAROUSEL (3) */
.reviews-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--accent); font-size: 1.125rem; letter-spacing: 2px; }
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  quotes: none;
}
.review-author {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-label);
}

/* ============================================================ GALLERY + LIGHTBOX (9) */
.gallery-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-card);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg);
  border: none;
  padding: 0;
}
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.08); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  line-height: 0;
  transition: background 0.2s;
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ============================================================ FOOTER REDESIGN (21) */
.site-footer {
  background: #1E1410;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1.5rem;
}
.footer-col__title {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.footer-logo { height: 44px; width: auto; object-fit: contain; }
.footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9375rem;
  opacity: 0.65;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.2s;
}
a.footer-contact-item:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer .footer-powered { font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.site-footer .footer-powered a { color: rgba(255,255,255,0.38); }
.site-footer .footer-powered a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================ SOCIAL STRIP (8) */
.social-strip {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  min-height: 44px;
  align-items: center;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.25s, background 0.25s;
  flex-shrink: 0;
  line-height: 0;
}
.social-link:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================ OPEN NOW BADGE (10) */
.open-badge {
  position: fixed;
  bottom: 7rem;
  left: 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.open-badge[hidden] { display: none; }
.open-badge__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.open-badge--open .open-badge__dot  { background: #22c55e; }
.open-badge--closed .open-badge__dot { background: #ef4444; }

/* ============================================================ BACK TO TOP (19) */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 0;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ============================================================ WHATSAPP FAB (20) */
.whatsapp-fab {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 700;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.25s;
  line-height: 0;
}
.whatsapp-fab[hidden] { display: none; }
.whatsapp-fab:hover { transform: scale(1.1); }

/* ============================================================ SCROLL MARGIN (all anchored sections) */
#about-section, #why-us, #featured-dishes,
#menu-categories, #reservation-cta, #order-steps,
#reviews, #gallery, #contact-section {
  scroll-margin-top: var(--scroll-offset);
}

/* ============================================================ RESPONSIVE — NEW SECTIONS */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .top-bar { display: none; }
  #top-bar ~ .nav { top: 0; }
  #hero { padding-top: var(--nav-h); }
  #about-section, #why-us, #featured-dishes,
  #menu-categories, #reservation-cta, #order-steps,
  #reviews, #gallery, #contact-section {
    scroll-margin-top: var(--nav-h);
  }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .open-badge { bottom: 5rem; left: 1rem; }
  .whatsapp-fab { right: 1rem; bottom: 4.5rem; }
  .back-to-top { right: 1rem; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .review-card { flex: 0 0 85vw; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}
