/* Blue Frog Thai Noodle & Rice — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Kanit:wght@300;400;600&family=Open+Sans:wght@300;400;500;600&display=swap');

/*
 * THEME: Tropical Thai
 * Palette pulled from the Blue Frog logo (blue frog, cyan highlights, teal spots)
 * combined with Thai temple saffron/gold and deep tropical forest greens.
 *
 * Logo is a white-background PNG so the scrolled nav transitions to a
 * light ivory — logo reads perfectly on it and the dark→light fade feels
 * natural against the lush green theme.
 */
:root {
  /* Brand greens */
  --primary:       #2A8A6A;   /* Thai jade forest green  */
  --primary-dark:  #1D6A50;   /* deep pressed green      */
  --primary-light: #3DB589;   /* bright hover green      */

  /* Accents */
  --accent:        #E8A820;   /* turmeric / saffron gold */
  --accent-dark:   #C48A10;
  --frog-blue:     #4A9FD4;   /* frog body blue (from logo) */
  --teal:          #5BC4B0;   /* frog spot teal          */
  --gold:          #D4A030;

  /* Backgrounds — deep tropical forest */
  --dark:     #061310;
  --surface:  #0C2019;
  --surface2: #112820;
  --surface3: #173328;

  /* Text */
  --text:       #EDF4EE;      /* cool cream-green white  */
  --text-muted: #7EBFA4;      /* sage green muted        */
  --text-dim:   #3D6E55;

  /* Borders */
  --border: #1C3E2E;

  /* Nav scrolled state */
  --nav-scrolled-bg:   #2A8A6A;   /* primary jade green — matches buttons/accents */
  --nav-scrolled-text: rgba(255, 255, 255, 0.95);
  --nav-scrolled-link: rgba(255, 255, 255, 0.92);

  /* Type */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-subhead: 'Kanit', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --shadow:    0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-subhead);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-heading {
  margin-bottom: 1.25rem;
  color: var(--text);
}
.section-subtext {
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 1.05rem;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: #1a1a00;
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ─── NAVIGATION ─────────────────────────────────── */

/* Nav height token — used by sticky menu tabs */
:root { --nav-h: 58px; }

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent at hero top — slight gradient keeps logo/text readable */
.site-nav:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(6,19,16,0.55) 0%, transparent 100%);
}

/* ── Scrolled: solid jade green — matches the site's primary colour and
      feels native to the tropical theme. White text reads clearly on it. */
.site-nav.scrolled {
  background: var(--nav-scrolled-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.5rem;          /* thinner vertical — was 1rem */
  max-width: 1180px;
  margin: 0 auto;
  min-height: var(--nav-h);
}

/* Logo */
.nav-logo img {
  height: 44px;                     /* was 52px */
  width: auto;
  border-radius: 4px;               /* softens the white-bg rect slightly */
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.2;
}
.nav-logo .logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Nav links — white when transparent, dark when scrolled */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--accent); }

/* Links stay white on the green scrolled nav */
.site-nav.scrolled .nav-links a        { color: var(--nav-scrolled-link); }
.site-nav.scrolled .nav-links a:hover  { color: var(--teal); }
.site-nav.scrolled .nav-links a.active { color: #fff; font-weight: 600; }

/* CTA button: white fill on the green nav so it pops */
.nav-cta { margin-left: 1rem; }
.site-nav.scrolled .nav-cta.btn-primary {
  background: #fff;
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  color: rgba(255,255,255,0.9);
  padding: 0.25rem;
}
.site-nav.scrolled .nav-toggle { color: rgba(255,255,255,0.9); }

/* Mobile nav — z-index must exceed site-nav (1000) so the overlay
   fully covers the hamburger button when the drawer is open */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; height: 100svh; /* svh = stable small-viewport; prevents zoom on mobile scroll */
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,19,16,0.88) 0%,
    rgba(6,19,16,0.62) 50%,
    rgba(6,19,16,0.28) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1.5rem;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(237,244,238,0.85);
  margin-bottom: 2rem;
  max-width: 46ch;
}
/* Fix: prevent hero action buttons overflowing on narrow screens */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ─── FEATURES STRIP ─────────────────────────────── */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(42,138,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.feature-item h4 { color: var(--text); font-size: 1rem; margin-bottom: 0.2rem; }
.feature-item p { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 640px) {
  .features-strip .container { grid-template-columns: 1fr; }
}

/* ─── ABOUT / INTRO ──────────────────────────────── */
.about-section {
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
}
.about-content { padding-right: 1rem; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-fact-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
}
.about-fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
}

/* ─── FEATURED DISHES ────────────────────────────── */
.featured-section { background: var(--surface); }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dish-card {
  background: var(--surface2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dish-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.dish-card-body { padding: 1.25rem; }
.dish-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.dish-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

/* ─── ORDER ONLINE STRIP ─────────────────────────── */
.order-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
}
.order-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.order-strip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.4rem;
}
.order-strip-text p { color: rgba(255,255,255,0.85); }
.order-strip-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
/* Equal-width stacked buttons on narrow screens */
@media (max-width: 540px) {
  .order-strip .container { flex-direction: column; align-items: stretch; }
  .order-strip-actions { flex-direction: column; width: 100%; }
  .order-strip-actions .btn { width: 100%; justify-content: center; text-align: center; }
}
.btn-white {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
}
.btn-white:hover { background: #e8f5ee; color: var(--primary-dark); transform: translateY(-1px); }
.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  font-weight: 600;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── TESTIMONIAL ────────────────────────────────── */
.testimonial-section {
  background: var(--dark);
  text-align: center;
  padding: 5rem 0;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.testimonial-attribution {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.about-blurb {
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 3rem 0 3.25rem;
  text-align: center;
}
.about-blurb p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── HOURS & CONTACT ────────────────────────────── */
.contact-section { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.95rem;
}
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 500; }
.hours-table tr.today td { color: var(--accent) !important; }
.contact-info { margin-top: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-item .icon-wrap {
  width: 40px; height: 40px;
  background: rgba(42,138,106,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info-item .info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}
.contact-info-item .info-value {
  color: var(--text);
  font-weight: 500;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-col-heading {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
/* Map sits inside the right footer column */
.footer-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border);
}
.footer-map iframe { width: 100%; height: 100%; border: none; display: block; }
/* Contact links (phone + address) below the map */
.footer-contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-contact-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }

.footer-manage {
  text-align: center;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(61, 181, 137, 0.08);
}
.footer-manage-link {
  font-size: 0.7rem;
  color: rgba(126, 191, 164, 0.18);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-manage-link:hover { color: rgba(126, 191, 164, 0.45); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
}

/* ─── MENU PAGE ──────────────────────────────────── */
.menu-hero {
  height: 44vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}
.menu-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,9,6,0.72);
}
.menu-hero-content { position: relative; z-index: 2; }
.menu-hero-content h1 { color: #fff; margin-bottom: 0.5rem; }
.menu-hero-content p { color: rgba(255,255,255,0.75); }
.menu-order-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}
.menu-order-bar p { color: var(--text-muted); margin-bottom: 0.75rem; font-size: 0.9rem; }
/* Equal-width delivery/call buttons — inline and stacked */
.menu-order-bar .order-btns {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-order-bar .order-btns .btn {
  min-width: 180px;
  justify-content: center;
}
@media (max-width: 480px) {
  .menu-order-bar .order-btns { flex-direction: column; width: 100%; padding: 0 1.5rem; }
  .menu-order-bar .order-btns .btn { width: 100%; min-width: 0; }
}
/* Sticky tabs sit below the fixed nav */
.menu-tabs-wrap {
  position: sticky;
  top: var(--nav-h);               /* attaches just under nav — was top:0 */
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs-wrap::-webkit-scrollbar { display: none; }
.menu-tabs {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
  border-left: none; border-right: none; border-top: none;
}
.menu-tab-btn:hover { color: var(--text); }
.menu-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.menu-body { padding: 3rem 0; background: var(--dark); }
.menu-section { margin-bottom: 3.5rem; }
.menu-section-header {
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-header h2 {
  font-size: 1.6rem;
  color: var(--text);
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.menu-item {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--surface2); }
.menu-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-item-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* ─── MENU IMAGE BUTTON + LIGHTBOX ───────────────── */

/* Clickable thumbnail wrapper */
.menu-img-btn {
  display: block;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  width: 80px;
  height: 80px;
}
.menu-img-btn .menu-item-img { display: block; }

/* ─── Lightbox overlay ──────────────────────────── */
.img-lb {
  position: fixed;
  inset: 0;
  z-index: 1100; /* above site-nav (1000) and mobile overlay (1001) */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,19,16,.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.img-lb.open {
  opacity: 1;
  pointer-events: all;
}

/* Invisible full-area backdrop — click to close */
.img-lb-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

/* Content shell — sits above backdrop */
.img-lb-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(86vw, 820px);
  width: 100%;
  gap: 1rem;
  pointer-events: none; /* let clicks fall through to backdrop except on direct children */
}
.img-lb-shell > * { pointer-events: all; }

/* Image frame */
.img-lb-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  width: 100%;
}
.img-lb-frame img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 72px rgba(0,0,0,.75);
  display: block;
  transition: opacity 0.18s ease;
}
.img-lb-frame img.lb-loading { opacity: 0; }

/* Spinner */
.img-lb-spinner {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(91,196,176,.2);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: lb-spin 0.7s linear infinite;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.img-lb-spinner.lb-show { opacity: 1; }
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Caption */
.img-lb-caption { text-align: center; padding: 0 1rem; }
.img-lb-name {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.img-lb-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.55;
}

/* Close button */
.img-lb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 0 1px;
  transition: background var(--transition), border-color var(--transition);
}
.img-lb-close:hover { background: rgba(91,196,176,.3); border-color: var(--teal); }

/* Prev / Next */
.img-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 2px;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}
.img-lb-nav:hover { background: rgba(91,196,176,.3); border-color: var(--teal); }
.img-lb-prev { left: 14px; }
.img-lb-next { right: 14px; }
.img-lb-nav[aria-disabled="true"] { opacity: 0.22; pointer-events: none; }

@media (max-width: 520px) {
  .img-lb-prev { left: 6px; }
  .img-lb-next { right: 6px; }
  .img-lb-nav  { width: 38px; height: 38px; font-size: 1.5rem; }
  .img-lb-shell { max-width: 96vw; }
}

/* ─── CONTACT PAGE ───────────────────────────────── */
.page-hero {
  height: 36vh;
  min-height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(14,9,6,0.72);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: #fff; margin-bottom: 0.4rem; }
.page-hero-content p { color: rgba(255,255,255,0.75); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-page-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.contact-page-map iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-map { height: 280px; }
}

/* ─── UTILITIES ──────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
