/* ============================================================
   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;
  --red: #d93a4b;
  --red-dark: #b82c3c;
  --ember: #e8842c;
  --gold: #c99a3f;
  --green: #1e9e4a;
  --line: #e5dccb;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 10px rgba(50, 55, 61, 0.08);
  --shadow-md: 0 10px 30px rgba(50, 55, 61, 0.12);
  --shadow-lg: 0 24px 60px rgba(50, 55, 61, 0.18);
  --radius: 18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
}
.section-eyebrow::before,
.section-eyebrow.center::after {
  content: '';
  width: 34px;
  height: 1.5px;
  background: var(--ember);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  margin: 0.35em 0 0.45em;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 58, 75, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(217, 58, 75, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-light {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.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.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  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: 38px; width: auto; transition: height 0.35s ease; }
.site-header.scrolled .brand img, .site-header.solid .brand img { height: 32px; }
.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: 2px;
  background: var(--red);
  transition: width 0.28s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }
.site-header.on-hero:not(.scrolled) .nav-links a.active { color: #ffd9a8; }
.site-header.on-hero:not(.scrolled) .nav-links a.active::after { background: #ffd9a8; }

.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(--red); border-color: var(--red); color: #fff; }

.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(100deg, rgba(24, 20, 16, 0.82) 8%, rgba(24, 20, 16, 0.55) 48%, rgba(24, 20, 16, 0.28) 100%);
}
.hero-content { max-width: 640px; }
.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: #ffce93;
  margin-bottom: 22px;
}
.hero-kicker::before { content: ''; width: 44px; height: 1.5px; background: var(--ember); }
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: #ffce93; }
.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: #ffce93; 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: #ffce93; justify-content: center; }
.page-hero .section-eyebrow::before, .page-hero .section-eyebrow::after { background: var(--ember); }
.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-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: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fdeee0, #fbe3c6);
  color: var(--ember);
}
.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(--charcoal);
  color: #f7f0de;
  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;
  box-shadow: var(--shadow-md);
  rotate: 8deg;
}
.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(--red); 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-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dish-card:hover .dish-media img { transform: scale(1.07); }
.dish-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(50, 55, 61, 0.88);
  color: #ffd9a8;
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.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.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ember);
}

/* ---------- Veg / non-veg marks ---------- */
.mark {
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.6px solid;
  display: inline-grid;
  place-items: center;
}
.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 { background: var(--red); }
.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(--red); color: var(--red); }
.menu-tab.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #ffd9a8;
  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(--charcoal); color: var(--charcoal); box-shadow: var(--shadow-sm); }

.menu-section-note {
  background: linear-gradient(135deg, #fdeee0, #fbe3c6);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 0.95rem;
  color: #7a4a12;
  margin: 30px 0 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-group { margin-top: 44px; }
.menu-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--charcoal);
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.menu-group-head h3 { font-size: 1.55rem; font-weight: 700; }
.menu-group-head .price-note { font-size: 0.88rem; color: var(--ember); font-weight: 600; letter-spacing: 0.04em; text-align: right; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.menu-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.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-body); font-weight: 600; font-size: 1.02rem; }
.menu-item-title .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.menu-item-price { font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.menu-item-price .variant { display: inline-block; margin-left: 10px; }
.menu-item-price .variant small { 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 var(--line);
  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; }

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

/* Home menu preview */
.menu-preview { background: var(--charcoal); color: #f4eede; }
.menu-preview .section-eyebrow { color: #ffce93; }
.menu-preview .section-sub { color: rgba(244, 238, 222, 0.72); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.preview-col {
  background: rgba(255, 253, 248, 0.04);
  border: 1px solid rgba(244, 238, 222, 0.12);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.preview-col h3 {
  font-size: 1.35rem;
  color: #ffd9a8;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 238, 222, 0.16);
}
.preview-item { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: 0.96rem; }
.preview-item span:last-child { color: #ffce93; font-weight: 500; }
.menu-preview .center-cta { margin-top: 46px; text-align: center; }

/* ---------- 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; aspect-ratio: auto; }

/* 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%); }

/* ---------- 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-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(--red);
  box-shadow: 0 0 0 4px rgba(217, 58, 75, 0.12);
}
/* ---------- 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(--red);
  box-shadow: 0 0 0 4px rgba(217, 58, 75, 0.12);
}
.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(--ember); }
.dp-day.selected { background: var(--red); color: #fff; font-weight: 600; }
.dp-day.selected:hover { background: var(--red-dark); }

.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(--red); font-weight: 600; }

/* ---------- Location strip (home) ---------- */
.location-strip .strip-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  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; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.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(--red); font-weight: 600; font-size: 0.95rem; }
.contact-card a.link:hover { text-decoration: underline; }

.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;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(30, 25, 20, 0.78);
}
.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: var(--charcoal); color: #cfd3d8; padding: 70px 0 0; font-size: 0.95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { color: #9aa1a9; 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(244, 238, 222, 0.25);
  display: grid;
  place-items: center;
  color: #f4eede;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.site-footer h4 {
  color: #ffd9a8;
  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: #9aa1a9; transition: color 0.2s ease; }
.footer-links a:hover { color: #ffd9a8; }
.footer-contact { list-style: none; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: #9aa1a9; }
.footer-contact svg { color: var(--ember); flex: none; margin-top: 4px; }
.footer-contact a:hover { color: #ffd9a8; }
.footer-bottom {
  border-top: 1px solid rgba(244, 238, 222, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #7d848c;
}
.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(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }
}

/* ---------- 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: #ffce93; }
.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.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 249, 240, 0.55);
}

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .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; }
}

@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 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; }
}
