/* ============================================================
   Tizzle – Sizzlers & More · Design System
   Warm & bright: cream base, charcoal type, booth-red accent,
   ember-orange highlights.
   ============================================================ */

:root {
  --cream: #faf6ef;
  --cream-deep: #f3ecdf;
  --card: #fffdf8;
  --charcoal: #32373d;
  --charcoal-soft: #565d66;
  --espresso: #262320;
  --espresso-soft: #2e2a26;
  --red: #d93a4b;
  --red-dark: #b82c3c;
  --ember: #e8842c;
  --gold: #c49a4a;
  --gold-dark: #a67c2e;
  --gold-soft: #e3c27e;
  --gold-line: rgba(196, 154, 74, 0.4);
  --green: #1e9e4a;
  --line: #e5dccb;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 12px rgba(74, 60, 38, 0.07);
  --shadow-md: 0 14px 34px rgba(74, 60, 38, 0.11);
  --shadow-lg: 0 28px 70px rgba(74, 60, 38, 0.16);
  --radius: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

::selection { background: var(--gold); color: #fff; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

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

a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.section-eyebrow::before,
.section-eyebrow.center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-eyebrow.center::after { background: linear-gradient(to left, transparent, var(--gold)); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0.35em 0 0.45em;
}
/* Gold diamond flourish under centred section titles */
.center .section-title::after {
  content: '';
  display: block;
  width: 88px;
  height: 9px;
  margin: 18px auto 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Crect x='2' y='2' width='5' height='5' fill='%23c49a4a' transform='rotate(45 4.5 4.5)'/%3E%3C/svg%3E") center no-repeat,
    linear-gradient(to right, transparent, var(--gold-line) 30%, transparent 44%, transparent 56%, var(--gold-line) 70%, transparent) center / 100% 1px no-repeat;
}


.section-sub {
  color: var(--charcoal-soft);
  max-width: 620px;
  font-size: 1.02rem;
}

.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

section { padding: 84px 0; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
/* Soft sheen that sweeps across on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(110%); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 44, 60, 0.25);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(184, 44, 60, 0.32); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(50, 55, 61, 0.55);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-light {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 158, 74, 0.22);
}
.btn svg { flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm), inset 0 -1px 0 rgba(196, 154, 74, 0.22);
  padding: 10px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 51px; width: auto; transition: height 0.35s ease; }
.site-header.scrolled .brand img, .site-header.solid .brand img { height: 42px; }
.brand .logo-dark { display: none; }
.site-header.scrolled .logo-light, .site-header.solid .logo-light { display: none; }
.site-header.scrolled .logo-dark, .site-header.solid .logo-dark { display: block; }
.brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  border-left: 1.5px solid var(--line);
  padding-left: 12px;
  line-height: 1.5;
}

/* On transparent header over hero */
.site-header.on-hero:not(.scrolled) { --nav-ink: #fdf9f0; }
.site-header { --nav-ink: var(--charcoal); }
.site-header.on-hero:not(.scrolled) .brand-tag { color: rgba(253, 249, 240, 0.75); border-color: rgba(253, 249, 240, 0.3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }
.site-header.on-hero:not(.scrolled) .nav-links a.active { color: var(--gold-soft); }
.site-header.on-hero:not(.scrolled) .nav-links a.active::after { background: var(--gold-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--nav-ink);
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 9px 20px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--gold-soft); }
.site-header.on-hero:not(.scrolled) .nav-cta:hover { background: #fdf9f0; border-color: #fdf9f0; color: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--nav-ink);
  margin: 5.5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
body.nav-open .nav-toggle span { background: #fdf9f0; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  color: #fdf9f0;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(24, 20, 16, 0.6), transparent 34%),
    linear-gradient(100deg, rgba(24, 20, 16, 0.92) 8%, rgba(24, 20, 16, 0.72) 48%, rgba(24, 20, 16, 0.38) 100%);
}
.hero-content { max-width: 640px; }
/* Gentle staggered entrance */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-kicker, .hero h1, .hero p, .hero-actions, .hero-badges {
  animation: heroRise 0.9s var(--ease-out) backwards;
}
.hero h1 { animation-delay: 0.12s; }
.hero p { animation-delay: 0.24s; }
.hero-actions { animation-delay: 0.36s; }
.hero-badges { animation-delay: 0.52s; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero-kicker::before { content: ''; width: 44px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-soft)); }
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(253, 249, 240, 0.88);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero .btn-outline { color: #fdf9f0; border-color: rgba(253, 249, 240, 0.65); }
.hero .btn-outline:hover { background: #fdf9f0; color: var(--charcoal); border-color: #fdf9f0; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(253, 249, 240, 0.22);
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(253, 249, 240, 0.85); }
.hero-badge svg { color: var(--gold-soft); flex: none; }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253, 249, 240, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  width: 1.5px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(253, 249, 240, 0.8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 50% { opacity: 0.3; transform: translateY(6px); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 84px;
  color: #fdf9f0;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(24, 20, 16, 0.72), rgba(24, 20, 16, 0.6));
}
.page-hero .section-eyebrow { color: var(--gold-soft); justify-content: center; }
.page-hero .section-eyebrow::before { background: linear-gradient(to right, transparent, var(--gold-soft)); }
.page-hero .section-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold-soft)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin: 0.3em 0; }
.page-hero p { color: rgba(253, 249, 240, 0.85); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* ---------- Highlights strip ---------- */
.highlights { padding: 0; transform: translateY(-64px); margin-bottom: -64px; position: relative; z-index: 5; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.highlight {
  padding: 30px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}
.highlight:last-child { border-right: none; }
.highlight-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #faf3e4, #f1e3c4);
  box-shadow: inset 0 0 0 1px rgba(196, 154, 74, 0.28);
  color: var(--gold-dark);
  transition: transform 0.35s var(--ease-out);
}
.highlight:hover .highlight-icon, .contact-card:hover .highlight-icon { transform: translateY(-3px); }
.highlight h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.highlight p { font-size: 0.86rem; color: var(--charcoal-soft); line-height: 1.45; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photos { position: relative; padding-bottom: 56px; }
.about-photos .photo-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 88%;
}
.about-photos .photo-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-photos .about-stamp {
  position: absolute;
  top: -26px;
  right: 6%;
  background: var(--espresso);
  box-shadow: inset 0 0 0 1px rgba(227, 194, 126, 0.3), var(--shadow-md);
  color: var(--gold-soft);
  animation: stampFloat 5.5s ease-in-out infinite;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  rotate: 8deg;
}
@keyframes stampFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-photos .about-stamp { animation: none; }
}
.about-copy .section-title { max-width: 420px; }
.about-copy p { color: var(--charcoal-soft); margin-bottom: 18px; }
.about-points { list-style: none; margin: 26px 0 34px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.about-points svg { color: var(--gold-dark); flex: none; margin-top: 4px; }

/* ---------- Signature dishes ---------- */
.signature { background: var(--cream-deep); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.dish-card {
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(196, 154, 74, 0.38); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.dish-card:hover .dish-media img { transform: scale(1.06); }
.dish-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(38, 35, 32, 0.82);
  color: var(--gold-soft);
  backdrop-filter: blur(6px);
  padding: 6px 15px;
  border-radius: 999px;
  border: 1px solid rgba(227, 194, 126, 0.25);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.35s var(--ease-out);
}
.dish-card:hover .dish-price { transform: translateY(-2px); }
.dish-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish-body h3 { font-size: 1.3rem; font-weight: 700; }
.dish-body p { font-size: 0.92rem; color: var(--charcoal-soft); flex: 1; }
.dish-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Veg / non-veg marks (FSSAI style: dot = veg, triangle = non-veg) ---------- */
.mark {
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.6px solid;
  display: inline-grid;
  place-items: center;
  vertical-align: middle;
}
.mark::after { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.mark.v { border-color: var(--green); } .mark.v::after { background: var(--green); }
.mark.n { border-color: var(--red); }
.mark.n::after {
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-bottom: 8px solid var(--red);
  transform: translateY(-0.5px);
}
.mark.e { border-color: var(--gold); } .mark.e::after { background: var(--gold); }
.marks { display: inline-flex; gap: 5px; align-items: center; }
.spicy { color: var(--red); font-size: 0.8rem; }

/* ---------- Menu ---------- */
.menu-tabs-bar {
  position: sticky;
  top: 64px;
  z-index: 60;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid var(--line);
  padding: 14px 0;
}
.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
/* Centre the tabs when they fit, stay scrollable when they don't */
.menu-tabs-bar .menu-tab:first-child { margin-left: auto; }
.menu-tabs-bar .menu-tab:last-child { margin-right: auto; }
.menu-tab {
  flex: none;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.menu-tab.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.menu-filters { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip.active { background: var(--card); border-color: var(--gold-dark); color: var(--charcoal); box-shadow: var(--shadow-sm); }

.menu-section-note {
  background: var(--card);
  border: 1px solid rgba(196, 154, 74, 0.3);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 0.94rem;
  color: #6d5423;
  margin: 30px 0 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-group { margin-top: 48px; }
.menu-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 3px double var(--gold-line);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.menu-group-head h3 { font-size: 1.6rem; font-weight: 700; }
.menu-group-head .price-note { font-size: 0.86rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.06em; text-align: right; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.menu-item {
  display: flex;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(140, 115, 70, 0.14);
}
.menu-item .marks { margin-top: 5px; }
.menu-item-main { flex: 1; }
.menu-item-title { display: flex; align-items: baseline; gap: 10px; justify-content: space-between; }
.menu-item-title h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.01em; }
.menu-item-title .dots { flex: 1; border-bottom: 1px dotted rgba(140, 115, 70, 0.4); transform: translateY(-4px); min-width: 20px; }
.menu-item-price { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--gold-dark); white-space: nowrap; }
.menu-item-price .variant { display: inline-block; margin-left: 10px; }
.menu-item-price .variant small { font-family: var(--font-body); font-size: 0.78rem; color: var(--charcoal-soft); font-weight: 500; margin-right: 3px; }
.menu-item-desc { font-size: 0.88rem; color: var(--charcoal-soft); margin-top: 3px; max-width: 92%; }
.menu-empty { text-align: center; color: var(--charcoal-soft); padding: 60px 0; display: none; }

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  padding: 20px;
  border: 1px solid rgba(140, 115, 70, 0.18);
  border-radius: 12px;
  font-size: 0.86rem;
  color: var(--charcoal-soft);
  background: var(--card);
}
.menu-legend span { display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.menu-legend .mark, .filter-chip .mark { position: relative; top: -0.5px; }

.menu-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Home menu preview */
.menu-preview {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(196, 154, 74, 0.08), transparent 55%),
    var(--espresso);
  color: #f4eede;
}
.menu-preview .section-eyebrow { color: var(--gold-soft); }
.menu-preview .section-sub { color: rgba(244, 238, 222, 0.68); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.preview-col {
  background: rgba(255, 253, 248, 0.03);
  border: 1px solid rgba(227, 194, 126, 0.14);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color 0.4s ease, transform 0.45s var(--ease-out);
}
.preview-col:hover { border-color: rgba(227, 194, 126, 0.32); transform: translateY(-4px); }
.preview-col h3 {
  font-size: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(227, 194, 126, 0.18);
}
.preview-item { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: 0.96rem; }
.preview-item span:last-child { font-family: var(--font-display); color: var(--gold-soft); font-weight: 500; }
.menu-preview .center-cta { margin-top: 46px; text-align: center; }

/* Delivery / online ordering note */
.delivery-note {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: 0.95rem;
  color: rgba(244, 238, 222, 0.7);
}
.delivery-note a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(227, 194, 126, 0.45);
  transition: border-color 0.25s ease;
}
.delivery-note a:hover { border-color: var(--gold-soft); }
.brand-swiggy, .brand-zomato { font-weight: 600; letter-spacing: 0.01em; }
.brand-swiggy { color: #fc8019; }
.brand-zomato { color: #ff5f6d; }
.menu-cta-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.menu-cta-note .brand-zomato { color: #e23744; }

/* ---------- Order online (Swiggy / Zomato / WhatsApp) ---------- */
.order-online { margin-top: 30px; text-align: center; }
.order-online-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}
.order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.order-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 12px;
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.18);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}
.order-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.order-link img,
.order-link .order-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex: none;
  display: grid;
  place-items: center;
}
.order-link .order-mark { background: var(--whatsapp); color: #fff; }
.order-link-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.order-link-text strong { font-size: 0.98rem; font-weight: 600; color: var(--charcoal); }
.order-link-text small { font-size: 0.76rem; color: var(--charcoal-soft); }
.order-link.swiggy:hover { border-color: #fc8019; }
.order-link.zomato:hover { border-color: #e23744; }
.order-link.whatsapp:hover { border-color: var(--whatsapp); }

/* Compact variant (inside contact cards) */
.order-links-compact { justify-content: flex-start; gap: 10px; margin-top: 2px; }
.order-links-compact .order-link { padding: 7px 16px 7px 8px; gap: 9px; }
.order-links-compact .order-link img { width: 30px; height: 30px; border-radius: 9px; }
.order-links-compact .order-link-text strong { font-size: 0.9rem; }
.contact-card .order-links-compact { justify-content: center; }

/* On the dark menu-preview band */
.menu-preview .order-online-label { color: rgba(244, 238, 222, 0.62); }
.menu-preview .order-link {
  background: rgba(255, 253, 248, 0.05);
  border-color: rgba(227, 194, 126, 0.22);
  box-shadow: none;
}
.menu-preview .order-link-text strong { color: #f4eede; }
.menu-preview .order-link-text small { color: rgba(244, 238, 222, 0.6); }
.menu-preview .order-link:hover { background: rgba(255, 253, 248, 0.09); }
.menu-preview .section-title::after { filter: brightness(1.4); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: none;
  padding: 0;
  background: var(--card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption,
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 12px;
  background: linear-gradient(to top, rgba(24, 20, 16, 0.72), transparent);
  color: #fdf9f0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: left;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Home gallery teaser (full bento: 1 big 2x2 tile + 4 tiles = complete 4x2 grid) */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.teaser-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 17, 14, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253, 249, 240, 0.85);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.lightbox button {
  position: absolute;
  background: rgba(253, 249, 240, 0.1);
  border: 1px solid rgba(253, 249, 240, 0.25);
  color: #fdf9f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.lightbox button:hover { background: rgba(253, 249, 240, 0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Reviews (Google) ---------- */
.reviews { background: var(--cream-deep); overflow: hidden; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 1.02rem;
  color: var(--charcoal-soft);
}
.reviews-rating .score { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.review-stars { display: inline-flex; gap: 2.5px; color: var(--gold); }
.review-stars svg { flex: none; }

.reviews-marquee { position: relative; margin-top: 46px; }
/* Soft fade at both edges */
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(30px, 8vw, 130px);
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(to right, var(--cream-deep), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(to left, var(--cream-deep), transparent); }

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 10px 0 22px;
  animation: reviewsScroll 55s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviewsScroll { to { transform: translateX(calc(-50% - 11px)); } }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; width: auto; }
  .reviews-track[aria-hidden], .reviews-track .dup { display: none; }
  .reviews-marquee::before, .reviews-marquee::after { display: none; }
}

.review-card {
  width: min(360px, 82vw);
  flex: none;
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.14);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(196, 154, 74, 0.38); }
.review-head { display: flex; align-items: center; gap: 13px; }
.review-head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3.5px var(--gold-line);
}
.review-name { line-height: 1.3; }
.review-name strong { display: block; font-weight: 600; font-size: 0.98rem; }
.review-name .review-stars svg { width: 13px; height: 13px; }
.review-text { font-size: 0.93rem; color: var(--charcoal-soft); line-height: 1.68; flex: 1; }
.review-google {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  border-top: 1px solid rgba(140, 115, 70, 0.14);
  padding-top: 14px;
}
.review-google svg { flex: none; }
.reviews .center-cta { margin-top: 34px; text-align: center; }

/* ---------- Feedback page ---------- */
.feedback { padding-top: 60px; }
.fb-question {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  text-align: center;
  margin-bottom: 34px;
  text-wrap: balance;
}
.fb-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.fb-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  padding: 40px 26px 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  color: var(--charcoal);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.fb-option:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fb-option:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.fb-option strong { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700; }
.fb-option span:last-child { font-size: 0.9rem; color: var(--charcoal-soft); }
.fb-face {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  font-size: 3.6rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
}
.fb-option:hover .fb-face { transform: scale(1.08); }
.fb-happy .fb-face { background: linear-gradient(150deg, #f3f8ef, #e2f0dd); box-shadow: inset 0 0 0 1px rgba(63, 138, 79, 0.25); }
.fb-sad .fb-face { background: linear-gradient(150deg, #faf3e4, #f1e3c4); box-shadow: inset 0 0 0 1px rgba(196, 154, 74, 0.28); }
.fb-happy:hover { border-color: rgba(63, 138, 79, 0.4); }
.fb-sad:hover { border-color: rgba(196, 154, 74, 0.42); }

.fb-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px 44px 38px;
  text-align: center;
  animation: fbIn 0.5s var(--ease-out);
}
@keyframes fbIn { from { opacity: 0; transform: translateY(14px); } }
.fb-panel h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; text-wrap: balance; }
.fb-panel > p { color: var(--charcoal-soft); max-width: 48ch; margin: 0 auto 26px; }
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.fb-badge-good { background: #eaf4e6; color: #3f8a4f; }
.fb-badge-sorry { background: #faf1e2; color: var(--gold-dark); }
.fb-label {
  display: block;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 7px;
}
#fb-message {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  resize: vertical;
  margin-bottom: 24px;
}
#fb-message:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 74, 0.14);
}
.fb-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.fb-fineprint { font-size: 0.84rem; color: var(--charcoal-soft); margin-top: 20px; }
.fb-fineprint a { color: var(--gold-dark); font-weight: 600; }
.fb-back {
  margin-top: 26px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--charcoal-soft);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.fb-back:hover { color: var(--charcoal); border-color: var(--gold); }

@media (max-width: 600px) {
  /* Keep both choices side by side, just tighter */
  .fb-options { gap: 12px; }
  .fb-option { padding: 24px 12px 20px; gap: 7px; }
  .fb-option strong { font-size: 1.05rem; }
  .fb-option span:last-child { font-size: 0.8rem; line-height: 1.45; }
  .fb-face { width: 76px; height: 76px; font-size: 2.7rem; }
  .fb-panel { padding: 32px 24px 28px; }
  .fb-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .fb-panel { animation: none; }
}

/* ---------- Reservation ---------- */
.reserve { background: var(--cream-deep); position: relative; overflow: hidden; }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.reserve-info p { color: var(--charcoal-soft); margin-bottom: 20px; }
.reserve-meta { display: grid; gap: 16px; margin-top: 30px; }
.reserve-meta div { display: flex; gap: 14px; align-items: flex-start; }
.reserve-meta svg { color: var(--red); flex: none; margin-top: 3px; }
.reserve-meta strong { display: block; font-weight: 600; }
.reserve-meta span { color: var(--charcoal-soft); font-size: 0.94rem; }

.reserve-card {
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.12);
  border-radius: var(--radius);
  padding: 42px 40px;
  box-shadow: var(--shadow-md);
}
.reserve-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.reserve-card > p { color: var(--charcoal-soft); font-size: 0.94rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.form-field input, .form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2332373d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 74, 0.14);
}
/* ---------- Custom date picker ---------- */
.datepicker { position: relative; }
.datepicker-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal-soft);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.datepicker-toggle svg { flex: none; color: var(--charcoal-soft); }
.datepicker.has-value .datepicker-toggle { color: var(--charcoal); }
.datepicker-toggle:focus-visible,
.datepicker.open .datepicker-toggle {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 74, 0.14);
}
.datepicker.error .datepicker-toggle {
  border-color: var(--red);
  animation: dpShake 0.3s ease;
}
@keyframes dpShake {
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.datepicker-pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 296px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  animation: dpIn 0.18s ease;
}
@keyframes dpIn { from { opacity: 0; transform: translateY(6px); } }
.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.dp-nav { display: flex; gap: 6px; }
.dp-nav button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.dp-nav button:hover:not(:disabled) { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.dp-nav button:disabled { opacity: 0.3; cursor: default; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 6px 0;
}
.dp-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.dp-day:hover:not(:disabled) { background: var(--cream-deep); }
.dp-day:disabled { color: #cdc5b5; cursor: default; }
.dp-day.today { box-shadow: inset 0 0 0 1.5px var(--gold); }
.dp-day.selected { background: var(--espresso); color: var(--gold-soft); font-weight: 600; }
.dp-day.selected:hover { background: #3a352f; }

.reserve-card .btn { width: 100%; margin-top: 22px; }
.reserve-alt { text-align: center; margin-top: 16px; font-size: 0.9rem; color: var(--charcoal-soft); }
.reserve-alt a { color: var(--gold-dark); font-weight: 600; }

/* ---------- Location strip (home) ---------- */
.location-strip .strip-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid rgba(140, 115, 70, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--card);
}
.strip-map { min-height: 340px; }
.strip-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.strip-info { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.strip-info h3 { font-size: 1.7rem; }
.strip-info p { color: var(--charcoal-soft); }
.strip-info .btn { align-self: flex-start; margin-top: 10px; }

/* ---------- Instagram (home) ---------- */
.insta { background: var(--cream-deep); }
.insta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.insta-profile { display: flex; align-items: center; gap: 16px; min-width: 0; }
.insta-ring {
  flex: none;
  display: inline-grid;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: var(--shadow-sm);
}
.insta-ring img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  border: 2.5px solid var(--cream-deep);
}
.insta-id { display: grid; gap: 2px; min-width: 0; }
.insta-id strong {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  line-height: 1.2;
}
.insta-id span {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  transition: color 0.2s ease;
}
.insta-profile:hover .insta-id span { color: var(--red); }
.insta-follow {
  flex: none;
  background: var(--charcoal);
  color: #fdf9f0;
  padding: 10px 20px;
  font-size: 0.85rem;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.insta-follow svg:first-child { width: 15px; height: 15px; }
.insta-follow svg:last-child { width: 13px; height: 13px; }
.insta-follow:hover { background: var(--espresso); box-shadow: var(--shadow-md); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.insta-post {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.insta-post:hover img { transform: scale(1.06); }
.insta-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(24, 20, 16, 0.45);
  color: #fdf9f0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-post:hover .insta-hover,
.insta-post:focus-visible .insta-hover { opacity: 1; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.contact-card {
  background: var(--card);
  border: 1px solid rgba(140, 115, 70, 0.12);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(196, 154, 74, 0.38); }
.contact-card .highlight-icon { width: 54px; height: 54px; }
.contact-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.12rem; }
.contact-card p { color: var(--charcoal-soft); font-size: 0.95rem; flex: 1; }
.contact-card a.link { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; }
.contact-card a.link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hours-table { width: 100%; font-size: 0.95rem; border-collapse: collapse; }
.hours-table td { padding: 6px 0; color: var(--charcoal-soft); }
.hours-table td:last-child { text-align: right; color: var(--charcoal); font-weight: 500; }

.map-section { padding-top: 0; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 460px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fdf9f0;
  text-align: center;
  background-size: cover;
  background-position: center 65%;
  isolation: isolate;
  padding: 108px 0;
}
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  .cta-band { background-attachment: fixed; } /* gentle parallax on desktop */
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(28, 24, 19, 0.8);
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: rgba(253, 249, 240, 0.85); max-width: 520px; margin: 0 auto 32px; }
.cta-band .btn-outline { color: #fdf9f0; border-color: rgba(253, 249, 240, 0.65); margin-left: 12px; }
.cta-band .btn-outline:hover { background: #fdf9f0; color: var(--charcoal); }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(196, 154, 74, 0.06), transparent 55%),
    var(--espresso);
  color: #d5cfc5;
  padding: 70px 0 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(196, 154, 74, 0.28);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p { color: #a49c8f; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(227, 194, 126, 0.28);
  display: grid;
  place-items: center;
  color: #f4eede;
  transition: all 0.3s var(--ease-out);
}
.footer-social a:hover { background: rgba(227, 194, 126, 0.12); border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-3px); }
.site-footer h4 {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { color: #a49c8f; transition: color 0.2s ease, padding-left 0.3s var(--ease-out); }
.footer-links a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-contact { list-style: none; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: #a49c8f; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(227, 194, 126, 0.13);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8a8276;
}
.footer-disclaimer {
  flex-basis: 100%;
  margin-bottom: 4px;
  font-style: italic;
  color: #6f6a61;
}
.made-by .heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .made-by .heart { animation: none; }
}

/* ---------- Floating Order Online widget ---------- */
.order-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  padding: 14px 24px 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: floatIn 0.6s ease 1.2s backwards;
}
.order-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55); }
.order-float svg { flex: none; }
.order-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--whatsapp);
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70%, 100% { transform: scale(1.28); opacity: 0; }
}
@keyframes floatIn { from { opacity: 0; transform: translateY(24px); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: none; }
  .hero-kicker, .hero h1, .hero p, .hero-actions, .hero-badges { animation: none; }
  .btn::before { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(2) { border-right: none; }
  .highlight:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .dish-grid, .preview-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(26, 22, 17, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 24px 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mobile-menu {
    background: rgba(26, 22, 17, 0.62);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
  }
}
body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }
/* Keep the header (logo + close toggle) above the dark glass overlay */
body.nav-open .site-header { z-index: 130; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.nav-open .site-header .logo-light { display: block; }
body.nav-open .site-header .logo-dark { display: none; }
body.nav-open .site-header .brand-tag { color: rgba(253, 249, 240, 0.75); border-color: rgba(253, 249, 240, 0.3); }
.mobile-menu > a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 11px;
  color: #fdf9f0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s ease;
}
body.nav-open .mobile-menu > a { opacity: 1; transform: none; }
body.nav-open .mobile-menu > a:nth-of-type(2) { transition-delay: 0.05s; }
body.nav-open .mobile-menu > a:nth-of-type(3) { transition-delay: 0.1s; }
body.nav-open .mobile-menu > a:nth-of-type(4) { transition-delay: 0.15s; }
.mobile-menu > a:first-of-type { margin-top: auto; }
.mobile-menu > a.active { color: var(--gold-soft); }
.mobile-menu-social {
  display: flex;
  gap: 14px;
  margin-top: auto;
}
.mobile-menu-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 249, 240, 0.28);
  color: #fdf9f0;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.mobile-menu-social a:hover,
.mobile-menu-social a:active {
  background: rgba(253, 249, 240, 0.14);
  border-color: rgba(253, 249, 240, 0.5);
  transform: translateY(-2px);
}
.mobile-menu-note {
  margin-top: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.7;
  color: rgba(253, 249, 240, 0.55);
}

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .nav-wrap nav, .nav-cta { display: none; }
  .nav-toggle { display: block; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  /* Centre the logo; hamburger stays pinned right */
  .nav-wrap { justify-content: center; position: relative; }
  .about-grid, .reserve-grid { grid-template-columns: 1fr; gap: 44px; }
  .location-strip .strip-card { grid-template-columns: 1fr; }
  .menu-tabs-bar { top: 58px; }
  .hero-badges { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Instagram bar: compact, one line */
  .insta-bar { gap: 12px; padding-bottom: 18px; margin-bottom: 20px; }
  .insta-profile { gap: 11px; }
  .insta-ring img { width: 46px; height: 46px; }
  .insta-id strong { font-size: 1.05rem; }
  .insta-id span { font-size: 0.8rem; white-space: nowrap; }
  .insta-follow { padding: 10px 16px; font-size: 0.8rem; gap: 7px; }
  .insta-follow svg:last-child { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .highlights { transform: translateY(-40px); margin-bottom: -40px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight { border-right: none; border-bottom: 1px solid var(--line); }
  .highlight:last-child { border-bottom: none; }
  .dish-grid, .preview-grid, .contact-grid, .teaser-grid, .gallery-grid { grid-template-columns: 1fr; }
  .teaser-grid .gallery-item:nth-child(1) { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .form-grid { grid-template-columns: 1fr; }
  .reserve-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .order-float span { display: none; }
  .order-float { padding: 16px; }
  .brand-tag { display: none; }

  /* Hero: compact side-by-side CTAs, no heavy red block */
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 2.2rem; margin-bottom: 18px; }
  .hero p { font-size: 1.02rem; margin-bottom: 28px; }
  .hero-actions { flex-wrap: nowrap; gap: 12px; }
  .hero-actions .btn {
    flex: 1;
    padding: 13px 10px;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .hero-actions .btn-primary {
    background: #fdf9f0;
    color: var(--charcoal);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  }
  .hero-badges { gap: 14px; margin-top: 40px; padding-top: 22px; }
  .hero-badge { font-size: 0.85rem; }

  /* Menu page: compact tabs & filters so 3-4 fit per row */
  .menu-tab { padding: 8px 14px; font-size: 0.8rem; }
  .filter-chip { padding: 5px 12px; font-size: 0.76rem; }
  .filter-chip .mark { width: 12px; height: 12px; }
  .filter-chip .mark::after { width: 5px; height: 5px; }
  .menu-tabs-bar { padding: 10px 0; }

  /* Menu bottom CTAs: same-width stacked buttons, clear of the float */
  .menu-cta-row { flex-direction: column; align-items: stretch; margin-bottom: 20px; }
  .menu-cta-row .btn { width: 100%; padding: 14px 20px; font-size: 0.94rem; }

  .datepicker-pop { left: 0; right: auto; width: 100%; min-width: 264px; }

  .page-hero { padding: 140px 0 64px; }
  .section-title { font-size: 1.9rem; }
  .contact-card { align-items: center; text-align: center; }
  .strip-info { padding: 32px 26px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center; padding-bottom: 30px; }

  /* Instagram: keep the 3x2 grid, tighten it like a real IG profile */
  .insta-grid { gap: 8px; }
  .insta-post { border-radius: 8px; }
}
