/* 1. Sucrose — local font for cafe name/logo only */
@font-face {
  font-family: 'Sucrose';
  src: url('fonts/Sucrose-BoldThree.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VINTAGE CAFE — style.css
   Shared design system for all pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --cream: #F5EFE0;
  --cream-dark: #EDE5CC;
  --espresso: #2C1A0E;
  --brown: #5C3D2E;
  --sienna: #C0672A;
  --gold: #D4A96A;
  --gold-lt: #EDD9A3;
  --muted: #7A6653;
  --pale: #FAF6EE;
  --white: #FFFFFF;

  --font-sucrose: 'Sucrose', cursive;
  --font-display: 'Righteous', cursive;
  --font-body: 'DM Sans', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 6px 24px rgba(44, 26, 14, 0.14);
  --shadow-lg: 0 16px 48px rgba(44, 26, 14, 0.20);

  --transition: 0.28s ease;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--pale);
  color: var(--espresso);
  line-height: 1.7;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--espresso);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  color: var(--muted);
}

.italic-gold {
  font-style: italic;
  color: var(--gold-lt);
  font-family: var(--font-display);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 0.5rem;
  display: block;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--sienna);
  color: var(--white);
  border-color: var(--sienna);
}

.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 103, 42, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline.light {
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline.light:hover {
  background: var(--cream);
  color: var(--espresso);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
  background: #C0392B;
  color: #fff;
  border: 2px solid #C0392B;
  letter-spacing: 0.03em;
}

.btn-danger:hover {
  background: #96281B;
  border-color: #96281B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}

.btn-sm {
  padding: 0.45rem 1.1rem !important;
  font-size: 0.82rem !important;
  border-radius: 6px !important;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--espresso);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-sucrose);
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo .logo-mark {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: color 0.2s, background 0.2s;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(212, 169, 106, 0.15);
  color: var(--gold);
  opacity: 1;
}

.nav-links a.active {
  border-bottom: 2px solid var(--gold);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--sienna);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  opacity: 1 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--brown) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

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

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--espresso);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(192, 103, 42, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin: 0.5rem 0 1rem;
}

.page-hero p {
  color: var(--gold-lt);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 2.5rem 0;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.badge-sienna {
  background: var(--sienna);
  color: var(--white);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  min-height: 92.5vh;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(192, 103, 42, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 169, 106, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1.5rem;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sienna);
  display: block;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
  white-space: nowrap;
  opacity: 0.7;
}

.scroll-hint .arrow {
  font-size: 1.2rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Mood Strip */
.mood-strip {
  background: var(--sienna);
  padding: 1rem 0;
  overflow: hidden;
}

.mood-strip-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.mood-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  white-space: nowrap;
}

.mood-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

/* Featured Items */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 520px;
}

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

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

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.featured-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.featured-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.featured-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sienna);
}

/* About Teaser */
.about-teaser {
  background: var(--espresso);
  padding: 5rem 0;
}

.about-teaser h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-teaser p {
  color: rgba(245, 239, 224, 0.75);
  margin-bottom: 1rem;
}

.pinned-note {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: rotate(-1.5deg);
  transition: transform var(--transition);
}

.pinned-note:hover {
  transform: rotate(0deg) scale(1.02);
}

.pinned-note::before {
  content: '📌';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}

.pinned-note blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--espresso);
  text-align: center;
}

.pinned-note cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  text-align: right;
}

/* Vibes Grid */
.vibes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vibe-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), background var(--transition);
}

.vibe-card:hover {
  transform: translateY(-4px);
  background: var(--cream-dark);
}

.vibe-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.vibe-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.vibe-card p {
  font-size: 0.85rem;
}

/* Reserve CTA */
.reserve-cta {
  background: linear-gradient(135deg, var(--espresso) 0%, #2a1810 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 169, 106, 0.2);
  border-bottom: 1px solid rgba(212, 169, 106, 0.2);
}

.reserve-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(212, 169, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.reserve-cta .section-label {
  color: var(--gold);
  margin-bottom: 1rem;
}

.reserve-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.reserve-cta h2 .cta-answer {
  color: var(--cream);
}

.reserve-cta p {
  font-family: var(--font-body);
  color: rgba(245, 239, 224, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.reserve-cta .btn-primary,
.reserve-cta .btn {
  background: var(--gold);
  color: var(--espresso);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 169, 106, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.reserve-cta .btn-primary:hover,
.reserve-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 169, 106, 0.4);
  background: #e6bc7c;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: inline-flex;
}

.footer-brand p {
  color: rgba(245, 239, 224, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(245, 239, 224, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-col address {
  font-style: normal;
  color: rgba(245, 239, 224, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: rgba(245, 239, 224, 0.4);
  font-size: 0.8rem;
}

.footer-bottom-credit {
  position: absolute;
  bottom: 0.35rem;
  right: 0.75rem;
  font-size: 0.65rem;
  color: rgba(245, 239, 224, 0.2);
  font-style: italic;
  z-index: 10;
}

.footer-bottom-credit a {
  color: rgba(245, 239, 224, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-credit a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-bottom-credit {
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.timeline-note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--sienna);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.timeline-note:hover {
  transform: translateX(4px);
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sienna);
  margin-bottom: 0.25rem;
}

.timeline-note p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
}

/* Team */
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.team-grid>* {
  flex: 1 1 300px;
  max-width: 420px;
}

.team-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(44, 26, 14, 0.2);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--sienna);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: block;
}

.team-card p {
  font-size: 0.88rem;
}

/* Quote Banner */
.quote-banner {
  background: var(--sienna);
  padding: 4rem 0;
  text-align: center;
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.quote-banner cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* Story text */
.story-text h2 {
  margin-bottom: 1.25rem;
}

.story-text p {
  margin-bottom: 1rem;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.menu-tabs-wrapper {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--pale);
  padding: 1rem 0;
  border-bottom: 2px solid var(--cream-dark);
  box-shadow: 0 4px 16px rgba(44, 26, 14, 0.06);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--sienna);
  color: var(--sienna);
}

.tab-btn.active {
  background: var(--sienna);
  border-color: var(--sienna);
  color: var(--white);
}

.menu-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-cat-header {
  margin-bottom: 2.5rem;
}

.menu-cat-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--espresso);
}

.menu-cat-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.menu-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sienna);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESERVATIONS PAGE
   ============================================================ */

.res-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Forms */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  margin-bottom: 0.5rem;
}

.form-card>p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--pale);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px rgba(192, 103, 42, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

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

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

.field-error {
  display: none;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.field-error.show {
  display: block;
}

.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.success-message.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-message h3 {
  margin-bottom: 0.5rem;
}

.success-message p {
  font-size: 0.95rem;
}

/* Sidebar */
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--espresso);
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--espresso);
}

.hours-table td:last-child {
  text-align: right;
}

.tips-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tips-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sienna);
  font-size: 0.6rem;
  top: 0.55rem;
}

.whatsapp-card {
  background: #25D366;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: #25D366;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.btn-whatsapp:hover {
  transform: scale(1.03);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-info-grid .sidebar-card {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-grid .map-widget {
  margin-bottom: 0 !important;
  height: 100% !important;
  min-height: 220px;
}

.info-panel {}

.info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.info-card address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 2;
}

.map-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  border: 2px dashed var(--muted);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
}

.map-placeholder:hover {
  background: var(--cream);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--espresso);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .res-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--espresso);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  /* Grids */
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Pinned note */
  .pinned-note {
    transform: rotate(0);
  }

  /* Hero */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Section padding */
  .section {
    padding: 3.5rem 0;
  }

  .about-teaser {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .vibes-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mood-strip-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .mood-sep {
    display: none;
  }
}

/* ── Utility Classes ──────────────────────────────────────── */
.hidden {
  display: none !important;
}

/* ── Admin Layout ─────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 60px);
}

.admin-sidebar {
  background: var(--espresso);
  padding: 1.5rem 0;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
}

.admin-nav {
  list-style: none;
  margin-top: 0.5rem;
}

.admin-nav li a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: rgba(245, 239, 224, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.admin-nav li a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--sienna);
}

.admin-nav li a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold);
}

.admin-main {
  padding: 2rem;
  background: var(--pale);
  overflow-y: auto;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.admin-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--espresso);
}

/* Mobile: stack sidebar on top */
@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    top: 0;
    height: auto;
  }

  .admin-nav li a {
    padding: 0.6rem 1rem;
  }
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}

.mi-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.about-quote-box blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--espresso);
  line-height: 1.6;
}

.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #fff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.note-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sienna);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.reserve-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}


/* ========================================================================= */
/* MENU SIDEBAR LAYOUT */
/* ========================================================================= */

.menu-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: start;
  min-height: 80vh;
}

.menu-sidebar {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  background: #2C1A0E;
  padding: 1.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: #C0672A transparent;
}

.menu-sidebar::-webkit-scrollbar {
  width: 4px;
}

.menu-sidebar::-webkit-scrollbar-thumb {
  background: #C0672A;
  border-radius: 2px;
}

.menu-sidebar-title {
  color: #D4A96A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.menu-sidebar-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1.5rem;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: rgba(245, 239, 224, 0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-sidebar-btn:hover {
  color: #D4A96A;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #C0672A;
}

.menu-sidebar-btn.active {
  color: #D4A96A;
  background: rgba(192, 103, 42, 0.15);
  border-left-color: #D4A96A;
  font-weight: 700;
}

.menu-content {
  padding: 2.5rem 2rem;
  background: #FAF6EE;
  min-height: calc(100vh - 70px);
}

.menu-mobile-toggle {
  display: none;
  background: #2C1A0E;
  padding: 0.75rem 1.5rem;
}

.menu-mobile-toggle button {
  background: none;
  border: 1px solid rgba(212, 169, 106, 0.4);
  color: #D4A96A;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: relative;
    top: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .menu-sidebar.mobile-open {
    max-height: 400px;
    padding: 1rem 0;
    overflow-y: auto;
  }

  .menu-mobile-toggle {
    display: block;
  }

  .menu-content {
    padding: 1.5rem 1rem;
  }
}

.menu-category {
  scroll-margin-top: 140px;
}

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  animation: wa-bounce-in 0.6s ease forwards;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: translateY(0);
}

.whatsapp-label {
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

/* Collapse label on mobile to just show icon */
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-label {
    display: none;
  }
}

/* Entrance animation */
@keyframes wa-bounce-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  60% {
    transform: translateY(-4px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pulse ring effect */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@media (max-width: 480px) {
  .whatsapp-float::after {
    border-radius: 50%;
  }
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ── SCROLL ANIMATIONS ── */

/* Base state — elements start hidden */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state — triggered by JS when in viewport */
.anim-fade-up.visible,
.anim-fade-in.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale-up.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.anim-stagger>*:nth-child(1) {
  transition-delay: 0.05s;
}

.anim-stagger>*:nth-child(2) {
  transition-delay: 0.15s;
}

.anim-stagger>*:nth-child(3) {
  transition-delay: 0.25s;
}

.anim-stagger>*:nth-child(4) {
  transition-delay: 0.35s;
}

.anim-stagger>*:nth-child(5) {
  transition-delay: 0.45s;
}

.anim-stagger>*:nth-child(6) {
  transition-delay: 0.55s;
}

.anim-stagger>*:nth-child(7) {
  transition-delay: 0.65s;
}

.anim-stagger>*:nth-child(8) {
  transition-delay: 0.75s;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .anim-fade-up,
  .anim-fade-in,
  .anim-fade-left,
  .anim-fade-right,
  .anim-scale-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── MENU FILTERS BAR ── */
.menu-filters-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
  position: sticky;
  top: 60px;
  z-index: 49;
}

.menu-filters-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Search */
.menu-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 220px;
}

.search-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  pointer-events: none;
}

.menu-search-input {
  width: 100%;
  padding: 0.6rem 2.5rem 0.6rem 2.2rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--espresso);
  background: var(--white);
  transition: border-color 0.2s;
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--sienna);
}

.menu-search-input::placeholder {
  color: var(--muted);
  font-size: 0.825rem;
}

.search-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.75rem;
  padding: 4px;
  line-height: 1;
}

.search-clear:hover {
  color: var(--espresso);
}

/* Spicy filter chips */
.filter-chip-wrap {
  display: flex;
  gap: 6px;
}

.filter-chip {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--sienna);
  color: var(--sienna);
}

.filter-chip.active {
  background: var(--sienna);
  border-color: var(--sienna);
  color: #fff;
}

/* Budget chips */
.budget-filter-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.budget-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.budget-chips {
  display: flex;
  gap: 4px;
}

.budget-chip {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  padding: 0.4rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.budget-chip:hover {
  border-color: var(--sienna);
  color: var(--sienna);
}

.budget-chip.active {
  background: var(--sienna);
  border-color: var(--sienna);
  color: #fff;
}

/* Filter summary bar */
.filter-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
}

.filter-summary span {
  color: var(--sienna);
  font-weight: 700;
}

.filter-summary button {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-summary button:hover {
  background: var(--espresso);
  color: #fff;
  border-color: var(--espresso);
}

/* No results state */
.menu-no-results {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}

.menu-no-results.visible {
  display: block;
}

.menu-no-results p:first-child {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.menu-no-results h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.menu-no-results p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Highlight search match */
.search-highlight {
  background: #FFF3CD;
  border-radius: 2px;
  padding: 0 2px;
}

/* Mobile filters */
@media (max-width: 768px) {
  .menu-filters-inner {
    gap: 0.75rem;
  }

  .menu-search-wrap {
    min-width: 100%;
    flex: none;
    width: 100%;
  }

  .filter-chip-wrap {
    flex-wrap: wrap;
  }

  .budget-filter-wrap {
    flex-wrap: wrap;
  }
}

/* ── REVIEWS SECTION ── */
.reviews-section {
  background: var(--cream);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--espresso);
  line-height: 1;
  font-weight: 700;
}

.stars-row {
  color: #F4A623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.score-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-divider {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
}

.reviews-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--espresso);
  font-weight: 700;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.reviews-cta-btn {
  margin-left: auto;
}

/* Carousel */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  flex: 1;
  min-height: 200px;
  transition: opacity 0.3s ease;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sienna);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--espresso);
  font-weight: 700;
}

.review-time {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  color: #F4A623;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-google {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}

.dish-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brown);
}

/* Carousel nav buttons */
.carousel-btn {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: var(--espresso);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--sienna);
  width: 24px;
  border-radius: 4px;
}

/* Autoplay toggle */
.autoplay-toggle {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.autoplay-toggle:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    gap: 1rem;
  }

  .reviews-divider {
    display: none;
  }

  .reviews-cta-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .reviews-stats {
    gap: 1rem;
  }

  .carousel-btn {
    display: none;
  }
}

/* ── CONTACT PAGE ENHANCEMENTS ── */

.contact-hero {
  background: linear-gradient(135deg, var(--espresso) 0%, #1a0f08 100%);
  position: relative;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 169, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form-wrap {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sienna);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pale);
  color: var(--sienna);
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s, background 0.3s;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--white);
}

.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card-warm {
  background: var(--cream);
}

.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--pale);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: all 0.25s;
}

.social-btn .s-icon {
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--sienna);
  color: var(--white);
  border-color: var(--sienna);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 103, 42, 0.25);
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
}

/* ── ADMIN PANEL ENHANCEMENTS ── */

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: var(--pale);
  color: var(--muted);
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--cream-dark);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background var(--transition);
}

.admin-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* Beautiful Inputs inside Tables */
.admin-table input[type="text"],
.admin-table input[type="number"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--pale);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--espresso);
  transition: all 0.2s ease;
  outline: none;
}

.admin-table input[type="text"]:focus,
.admin-table input[type="number"]:focus {
  background: var(--white);
  border-color: var(--sienna);
  box-shadow: 0 0 0 2px rgba(192, 103, 42, 0.15);
}

/* Custom Checkbox Toggle */
.admin-table input[type="checkbox"].toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #d1d5db;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.admin-table input[type="checkbox"].toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.admin-table input[type="checkbox"].toggle:checked {
  background: var(--sienna);
}

.admin-table input[type="checkbox"].toggle:checked::after {
  transform: translateX(18px);
}

/* Add Item Button in Category Header */
.category-add-btn {
  float: right;
  margin-top: -0.25rem;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ── UPGRADED FEATURED CARDS ── */
.featured-card {
  background: var(--white) !important;
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem 1.5rem !important;
  text-align: center;
  border: 1px solid var(--cream-dark) !important;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sienna);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem !important;
  padding: 0.35rem 0.65rem !important;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.featured-price {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--cream-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-tag-sm {
  font-size: 0.85rem !important;
  font-family: var(--font-body) !important;
  font-weight: 700;
  color: var(--sienna);
  line-height: 1.4;
}

/* ── TIMELINE DESIGN ── */
.timeline-container {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .timeline-container {
    padding-left: 1.5rem;
  }
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  height: 100%;
  width: 2px;
  background: var(--cream-dark);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sienna);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 4px var(--cream);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: -1.5rem;
  }
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  background: var(--espresso);
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  position: relative;
}

/* Triangle pointing to the timeline */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  transform: rotate(45deg);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sienna);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── UPGRADED VALUES SECTION ── */
.values-section {
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }
}

.value-card {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem 2rem !important;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-dark) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(110, 69, 39, 0.08) !important;
  border-color: var(--sienna) !important;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--cream);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-content h4 {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  color: var(--espresso) !important;
  margin-bottom: 0.75rem !important;
  font-weight: 700;
}

.value-content p {
  color: var(--muted) !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

.value-num-watermark {
  position: absolute;
  bottom: -25px;
  right: -15px;
  font-size: 8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream-dark);
  opacity: 0.3;
  line-height: 1;
  z-index: -1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.value-card:hover .value-num-watermark {
  opacity: 0.6;
  color: var(--sienna);
  transform: translateX(-5px) translateY(-5px);
}

.value-content {
  z-index: 2;
  position: relative;
}

/* ── UPGRADED TEAM CARDS ── */
.team-card {
  background: var(--white) !important;
  border-top: 4px solid var(--sienna) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 12px 24px rgba(110, 69, 39, 0.06) !important;
  border-left: 1px solid var(--cream-dark) !important;
  border-right: 1px solid var(--cream-dark) !important;
  border-bottom: 1px solid var(--cream-dark) !important;
  position: relative !important;
  overflow: visible !important;
  margin-top: 3rem !important;
  /* space for overlapping avatar */
  padding-top: 3rem !important;
}

.team-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(110, 69, 39, 0.12) !important;
}

.team-avatar {
  width: 80px !important;
  height: 80px !important;
  font-size: 2rem !important;
  position: absolute !important;
  top: -40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 4px solid var(--white) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
}

.team-name {
  font-size: 1.5rem !important;
  color: var(--espresso) !important;
}

.team-role {
  color: var(--sienna) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  margin-bottom: 1.5rem !important;
}

.team-bio {
  font-style: italic !important;
  color: var(--muted) !important;
  position: relative !important;
  line-height: 1.7 !important;
  z-index: 2 !important;
}

.team-bio::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--cream-dark);
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.4;
  z-index: -1;
  line-height: 1;
}



/* ── CURRENT OFFERS ── */
.offers-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--sienna) 100%);
  padding: 4rem 0;
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.offers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.offers-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.offers-header .section-eyebrow {
  color: var(--espresso);
  font-weight: 900;
}

.offers-header .section-title {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.offer-card {
  background: rgba(44, 26, 14, 0.4);
  /* translucent espresso */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-card:hover {
  transform: translateY(-3px);
  background: rgba(44, 26, 14, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.offer-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.2;
}

.offer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  flex: 1;
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.offer-category {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.offer-validity {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.offer-validity.expiring-soon {
  color: var(--gold);
  font-weight: 700;
}

.offer-wa-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.25));
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #3AE077;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.05);
  margin-top: 0.25rem;
}

.offer-wa-btn:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

/* Badge for active offers count */
.offers-badge {
  display: inline-block;
  background: var(--sienna);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-header {
    flex-direction: column;
  }
}


/* ── MOOD MATCHER ── */
.mood-section {
  background: var(--pale);
  min-height: 70vh;
  padding: 4rem 0;
}

/* Mood picker grid */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.mood-card {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.mood-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mood-color, var(--sienna));
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.mood-card:hover {
  border-color: var(--mood-color, var(--sienna));
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.1);
}

.mood-card:hover::before {
  transform: scaleX(1);
}

.mood-card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.mood-card-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--espresso);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.mood-card-hinglish {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.mood-card-arrow {
  font-size: 1.2rem;
  color: var(--mood-color, var(--sienna));
  opacity: 0;
  transition: opacity 0.2s;
}

.mood-card:hover .mood-card-arrow {
  opacity: 1;
}

/* Back button */
.mood-back-btn {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all 0.15s;
}

.mood-back-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

/* Result header */
.mood-result-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.mood-result-emoji {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.mood-result-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.mood-result-hinglish {
  font-size: 1rem;
  color: var(--sienna);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mood-result-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Result items grid */
.mood-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mood-item-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mood-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mood-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.mood-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.mood-item-price {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Result actions */
.mood-result-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary.mood-wa-btn {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.btn-primary.mood-wa-btn:hover {
  background: #1DA851;
  border-color: #1DA851;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Share section */
.mood-share {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 1rem;
}

/* Homepage teaser */
.mood-teaser-section {
  background: var(--cream);
}

.mood-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.mood-teaser-pill {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--espresso);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.mood-teaser-pill:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-result-actions {
    flex-direction: column;
    align-items: center;
  }

  .mood-teaser-grid {
    gap: 0.5rem;
  }

  .mood-teaser-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* --- COMPREHENSIVE MOBILE FIXES --- */

/* 20. FONT SIZES */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-hero p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/* 19. GENERAL TOUCH TARGETS */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tab-btn {
    min-height: 40px;
  }

  .filter-chip,
  .budget-chip {
    min-height: 40px;
  }
}

/* 1. NAVBAR */
@media (max-width: 768px) {
  .navbar {
    padding: 0.875rem 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--espresso);
    padding: 1rem;
    gap: 0.5rem;
    z-index: 99;
  }

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

  .nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }
}

/* 2. HERO SECTION */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero-tagline {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* 3. MOOD STRIP */
@media (max-width: 768px) {
  .mood-strip {
    flex-direction: column;
  }

  .mood-strip span {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .mood-strip span:last-child {
    border-bottom: none;
  }
}

/* 4. CURRENT OFFERS */
@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-header {
    flex-direction: column;
    gap: 1rem;
  }
}

/* 5. FEATURE CARDS */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. ABOUT TEASER */
@media (max-width: 768px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 7. REVIEWS CAROUSEL */
@media (max-width: 768px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .reviews-divider {
    display: none;
  }

  .reviews-stats {
    justify-content: center;
  }

  .reviews-cta-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* 8. MOOD MATCHER TEASER */
@media (max-width: 768px) {
  .mood-teaser-grid {
    gap: 0.5rem;
  }

  .mood-teaser-pill {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
  }
}

/* 9. RESERVE CTA */
@media (max-width: 768px) {
  .reserve-cta h2 {
    font-size: 1.8rem;
  }

  .reserve-cta .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* 10. FOOTER */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    padding: 0 1rem;
    text-align: center;
  }
}

/* 11. MENU PAGE — Sidebar */
@media (max-width: 768px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: relative;
    top: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .menu-sidebar.mobile-open {
    max-height: 60vh;
    padding: 0.5rem 0;
    overflow-y: auto;
  }

  .menu-mobile-toggle {
    display: block;
  }

  .menu-content {
    padding: 1.5rem 1rem;
  }

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

/* 12. MENU FILTERS BAR */
@media (max-width: 768px) {
  .menu-filters-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .menu-search-wrap {
    width: 100%;
    min-width: unset;
  }

  .budget-chips {
    flex-wrap: wrap;
  }

  .filter-chip-wrap {
    flex-wrap: wrap;
  }

  .filter-summary {
    width: 100%;
    justify-content: center;
  }
}

/* 13. RESERVATIONS PAGE */
@media (max-width: 768px) {
  .res-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* 14. CONTACT PAGE */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* 15. MOOD MATCHER PAGE */
@media (max-width: 768px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-result-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mood-result-actions .btn {
    text-align: center;
  }
}

/* 16. WHATSAPP + AI ASSISTANT BUBBLES */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem;
    border-radius: 50%;
  }

  .whatsapp-label {
    display: none;
  }

  .assistant-bubble {
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.85rem;
    border-radius: 50%;
  }

  .assistant-bubble-label {
    display: none;
  }

  .assistant-window {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    bottom: 5rem;
  }
}

/* 17. ABOUT PAGE */
@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

/* 18. GALLERY PAGE */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* 19. MOBILE MENU REDESIGN OVERRIDES */
@media (max-width: 768px) {

  /* FIX 1 — Compact filter bar on mobile */
  .menu-filters-bar {
    padding: 0.5rem 0;
    top: 56px;
  }

  .menu-filters-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-filters-inner::-webkit-scrollbar {
    display: none;
  }

  .menu-search-wrap {
    min-width: 160px;
    flex: 1;
  }

  .menu-search-input {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
  }

  .filter-chip-wrap {
    flex-wrap: nowrap;
    gap: 4px;
    flex-shrink: 0;
  }

  .filter-chip {
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .budget-filter-wrap {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 4px;
  }

  .budget-label {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .budget-chip {
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .filter-summary {
    display: none;
  }

  /* FIX 2 — Better Browse Categories button */
  .menu-mobile-toggle {
    background: var(--espresso);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-mobile-toggle button {
    background: rgba(212, 169, 106, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s;
  }

  .menu-mobile-toggle button::after {
    content: '▼';
    font-size: 0.7rem;
    opacity: 0.7;
  }

  .menu-mobile-toggle button:hover {
    background: var(--gold);
    color: var(--espresso);
  }

  .menu-sidebar.mobile-open {
    max-height: 50vh;
    padding: 0.5rem 0;
    overflow-y: auto;
  }

  .menu-sidebar-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  /* FIX 3 — Menu items better on mobile */
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-content {
    padding: 1rem 0.875rem;
  }

  .menu-cat-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .menu-cat-header h2 {
    font-size: 1.4rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-item {
    padding: 0.875rem 1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--cream-dark);
    background: var(--white);
  }

  .menu-item:first-child {
    border-top: 1px solid var(--cream-dark);
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .menu-item:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: 1px solid var(--cream-dark);
  }

  .mi-info h4 {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .mi-price {
    font-size: 0.82rem;
    min-width: 70px;
    text-align: right;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
  }

  .menu-category {
    margin-bottom: 2rem;
  }

  .menu-no-results {
    padding: 2rem 1rem;
  }

  /* FIX 4 — Better mobile category scroll margin */
  .menu-category {
    scroll-margin-top: 160px;
  }

  /* FIX 5 — Navbar on mobile — tighter */
  .navbar {
    padding: 0.75rem 1rem;
  }
}

/* ── FOOTER BOTTOM LOGO ── */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(1.2);
  transition: opacity 0.2s;
}

.footer-bottom-logo:hover {
  opacity: 1;
}

.nav-logo-link {
  all: unset;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-bottom-logo {
    height: 24px;
  }
}

/* ── FOOTER MAIN LOGO ── */
.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-main-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .footer-main-logo {
    height: 42px;
  }

  .footer-brand-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

/* ── NAV LOGO (TOP RIGHT) ── */
.nav-top-logo {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  z-index: 10;
}

@media (min-width: 769px) {
  /* Ensure nav-links don't overlap the logo on desktop screens */
  .nav-inner {
    padding-right: 8rem;
  }
}

@media (max-width: 768px) {
  .nav-top-logo {
    right: 3.5rem; /* leave space for hamburger */
    height: 38px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── GALLERY PAGE ── */
.gallery-section {
  background: var(--pale);
  padding-top: 2rem;
}

/* Filter tabs */
.gallery-tabs-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.75rem 0;
  position: sticky;
  top: 60px;
  z-index: 50;
}

.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tab {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.gallery-tab:hover {
  border-color: var(--sienna);
  color: var(--sienna);
}

.gallery-tab.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.gallery-tab-count {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: 0.72rem;
}

.gallery-tab.active .gallery-tab-count {
  background: rgba(255, 255, 255, 0.2);
}

/* Gallery grid — masonry-style */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
}

.gallery-item-img-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-item-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-img-wrap img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-icon {
  font-size: 2rem;
  color: #fff;
}

.gallery-item-info {
  padding: 0.75rem;
  background: var(--white);
}

.gallery-item-info h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--espresso);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Instagram CTA */
.gallery-insta-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 2rem;
}

.gallery-insta-cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--espresso);
  margin: 0.5rem 0;
}

.gallery-insta-cta p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-prev {
  left: -56px;
}

.lightbox-next {
  right: -56px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  text-align: center;
  padding: 1rem 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.lightbox-caption h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.lightbox-counter {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

/* Mobile gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
    column-gap: 0.75rem;
  }

  .gallery-tabs-wrap {
    top: 56px;
  }

  .lightbox-prev {
    left: -10px;
  }

  .lightbox-next {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 2;
    column-gap: 0.5rem;
  }

  .gallery-item-info {
    padding: 0.5rem;
  }

  .gallery-item-info h4 {
    font-size: 0.75rem;
  }
}