/* La Moreliana Tacos — styles.css
   Brand palette pulled from the logo (red ribbon, black-dot pattern, cream).
   Mobile-first, no build step. */

:root {
  --red:       #B81E2B;
  --red-deep:  #8E1620;
  --red-soft:  #E94B5A;
  --black:     #1A1414;
  --cream:     #FFF6E8;
  --paper:     #FFFDF8;
  --paper-2:   #FAF1DC;
  --gold:      #E8B23A;
  --green:     #2E7D32;
  --ink:       #2A1F1F;
  --ink-2:     #5C4A4A;
  --line:      rgba(26, 20, 20, 0.10);
  --line-2:    rgba(26, 20, 20, 0.18);
  --shadow-sm: 0 2px 8px rgba(26, 20, 20, 0.08);
  --shadow:    0 10px 30px rgba(26, 20, 20, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 20, 20, 0.18);
  --radius:    14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; overscroll-behavior-y: auto; }
[hidden] { display: none !important; }

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  z-index: 1000;
  transform: translateY(-200%);
  transition: transform .18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  color: #fff;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
button { font-family: inherit; cursor: pointer; }

/* Reusable */
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(184, 30, 43, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}
.section {
  padding: 32px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section + .section { padding-top: 24px; }
.section-head {
  text-align: center;
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 12px 0 8px;
  text-transform: none;
}
.section-head .sub {
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}
.btn-ico svg { display: block; }
.btn > span { display: inline-flex; align-items: center; }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 30, 43, 0.30);
}
.btn-primary:hover { background: var(--red-deep); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line-2);
}
.btn-secondary:hover { background: var(--paper-2); }
.btn-call {
  background: linear-gradient(135deg, #1f8a3a, #2E7D32);
  color: #fff;
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.30);
}
.btn-call:hover { background: linear-gradient(135deg, #197a30, #246d29); color: #fff; }
.btn-call .btn-call-ico { color: #fff; }
.btn-text {
  background: linear-gradient(135deg, #1A6FD9, #1456B3);
  color: #fff;
  box-shadow: 0 8px 22px rgba(20, 86, 179, 0.30);
}
.btn-ghost {
  background: var(--paper-2);
  color: var(--ink);
}
.btn-block { width: 100%; }
.btn-clear {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--ink-2);
  font-size: 13px;
  text-decoration: underline;
  padding: 8px;
  margin-top: 4px;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
  border-bottom: 1px solid var(--line);
}
.nav.scrolled { box-shadow: 0 6px 18px rgba(26,20,20,0.08); background: rgba(255,253,248,0.97); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand:hover { color: var(--ink); }
.nav-logo {
  height: 46px;
  width: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(184, 30, 43, 0.18));
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--red);
}
.nav-brand-sub {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-top: 2px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-call-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1f8a3a 0%, #2E7D32 100%);
  color: #fff;
  padding: 11px 18px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.30);
}
.btn-call-mini .btn-call-ico { width: 16px; height: 16px; }
.btn-call-mini:hover { background: linear-gradient(135deg, #197a30 0%, #246d29 100%); color: #fff; }
.btn-call-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn-call-ico svg { display: block; }
.call-text { display: none; }

.nav-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--line-2);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s ease, background .15s ease;
}
.nav-menu-btn:hover { border-color: var(--red); background: var(--paper-2); }
.nav-menu-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}
.nav-menu-bars span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(2) {
  opacity: 0;
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 480px) {
  .call-text { display: inline; }
}
@media (min-width: 720px) {
  .nav { padding: 10px 24px; }
  .nav-logo { height: 52px; width: 52px; }
  .nav-brand-name { font-size: 26px; }
  .nav-brand-sub { font-size: 15px; letter-spacing: 0.22em; }
}
@media (max-width: 380px) {
  .nav-brand-sub { display: none; }
  .nav-brand-name { font-size: 20px; }
  .btn-call-mini { padding: 8px 10px; font-size: 13px; }
}

/* ========== DRAWER ========== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 20, 0.55);
  backdrop-filter: blur(2px);
  animation: fadeIn .2s ease;
}
.drawer-panel {
  position: relative;
  z-index: 1;
  width: min(86vw, 340px);
  height: 100%;
  background: var(--paper);
  box-shadow: -16px 0 40px rgba(26, 20, 20, 0.22);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 22px;
  animation: drawerIn .28s cubic-bezier(.22,.9,.3,1);
}
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.drawer-logo { height: 56px; width: 56px; object-fit: contain; }
.drawer-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-2);
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 18px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease;
}
.drawer-link:hover { background: var(--paper-2); color: var(--ink); }
.drawer-link-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(184, 30, 43, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.drawer-call {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1f8a3a 0%, #246d29 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.34);
  font-weight: 700;
}
.drawer-call:hover { color: #fff; }
.drawer-call-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  flex-shrink: 0;
}
.drawer-call-ico svg { display: block; }
.drawer-call-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.drawer-call-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
body.drawer-open { overflow: hidden; }

/* Hero EN/ES pill slider — BigEZ pattern */
.lang-pill {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.lang-pill button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
.lang-pill button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184, 30, 43, 0.30);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 24px 20px 32px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
/* 2x2 photo collage — 4 distinct dish photos as a feast watermark */
.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  pointer-events: none;
  z-index: -1;
}
.hero-bg-tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Subtle fade so each photo reads as a distinct cut — not a blur, not full-color either */
  filter: saturate(0.75) brightness(1.02);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.35);
}
/* Cream wash — paint a paper-toned veil ON TOP of the photos so text remains readable
   but the photos still read as four distinct quadrants. */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 2px at 12px 12px, rgba(184, 30, 43, 0.08) 1.5px, transparent 2px) 0 0 / 36px 36px,
    linear-gradient(180deg,
      rgba(255, 253, 248, 0.40) 0%,
      rgba(255, 253, 248, 0.46) 40%,
      rgba(255, 253, 248, 0.52) 80%,
      rgba(250, 241, 220, 0.58) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Horizontal logo lockup — circle medallion + wordmark side-by-side */
.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(26, 20, 20, 0.18));
  max-width: 100%;
}
.hero-logo-mark {
  height: clamp(72px, 18vw, 110px);
  width: auto;
  flex-shrink: 0;
}
.hero-logo-wordmark {
  height: clamp(58px, 14vw, 90px);
  width: auto;
  max-width: 100%;
  flex-shrink: 1;
}
@media (max-width: 320px) {
  .hero-logo-lockup { flex-direction: column; gap: 6px; }
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(184, 30, 43, 0.30);
  margin-bottom: 20px;
  transition: transform .12s ease, box-shadow .2s ease;
}
.hero-loc:hover { background: var(--red); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(184, 30, 43, 0.40); }
.hero-loc:active { transform: scale(0.98); }
.hero-loc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  flex-shrink: 0;
}
.hero-loc-ico svg { display: block; }
.hero-h1 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin: 0 0 12px;
  color: var(--ink);
  text-shadow:
    0 1px 0 rgba(255, 253, 248, 0.9),
    0 2px 14px rgba(255, 253, 248, 0.75);
}
.hero-h1 span { display: block; }
.hero-script {
  font-family: "Pacifico", cursive;
  color: var(--red);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 6px 0;
  text-shadow:
    0 0 8px rgba(255, 253, 248, 0.95),
    0 0 18px rgba(255, 253, 248, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.08);
}
.hero-tagline {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 10px;
  margin: 0 auto 18px;
  padding: 2px 4px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 100%;
  text-shadow:
    0 1px 0 rgba(255, 253, 248, 0.9),
    0 0 8px rgba(255, 253, 248, 0.8);
}
/* Hero tiles — Call + Google listing */
.hero-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 460px;
  margin: 8px auto 22px;
  width: 100%;
}
.hero-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 18px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-sm);
}
.hero-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--red);
  color: var(--ink);
}
.hero-tile-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
}
.hero-tile-ico svg { display: block; }
.hero-tile-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  line-height: 1.2;
}
.hero-tile-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.hero-tile-call {
  background: linear-gradient(135deg, #1f8a3a 0%, #2E7D32 100%);
  border-color: #2E7D32;
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.30);
}
.hero-tile-call:hover { border-color: #1f8a3a; }
.hero-tile-call .hero-tile-label,
.hero-tile-call .hero-tile-value { color: #fff; }
.hero-tile-call .hero-tile-label { color: rgba(255, 255, 255, 0.88); }
.hero-tile-call .hero-tile-ico { color: #fff; }
.hero-tile-call .hero-tile-ico svg { display: block; }
.hero-tile-map {
  background: linear-gradient(135deg, #1A6FD9 0%, #1456B3 100%);
  border-color: #1456B3;
}
.hero-tile-map .hero-tile-label,
.hero-tile-map .hero-tile-value { color: #fff; }
.hero-tile-map .hero-tile-label { color: rgba(255, 255, 255, 0.85); }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 460px;
  margin: 0 auto 14px;
  width: 100%;
}
.hero-cta .btn { width: 100%; }
.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  padding: 16px 24px;
}
.btn-menu-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
}
.btn-menu-ico svg { display: block; }
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(255, 253, 248, 0.9),
    0 0 8px rgba(255, 253, 248, 0.8);
}
.hero-hours::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.22);
}

@media (min-width: 600px) {
  .hero-cta { flex-direction: row; max-width: none; justify-content: center; }
  .hero-cta .btn { width: auto; }
}

/* ========== SOCIAL BAR (below hero) ========== */
.social-bar-wrap {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 20px;
}
.social-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.social-bar-label::before,
.social-bar-label::after {
  content: "";
  flex: 0 0 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2));
}
.social-bar-label::after {
  background: linear-gradient(90deg, var(--line-2), transparent);
}
.social-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.social-bar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
  min-width: 0;
  text-align: center;
}
.social-bar-card:hover { transform: translateY(-2px); color: #fff; box-shadow: var(--shadow); }
.social-bar-ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}
.social-bar-tt {
  background: linear-gradient(135deg, #010101 0%, #25F4EE 100%);
}
.social-bar-fb {
  background: linear-gradient(135deg, #1877F2 0%, #0d5fcf 100%);
}
.social-bar-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  overflow: visible;
}
.social-bar-ico svg { width: 22px; height: 22px; display: block; }
.social-bar-net {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .social-bar-card { flex-direction: row; gap: 12px; padding: 12px 16px; text-align: left; }
  .social-bar-ico { width: 40px; height: 40px; }
  .social-bar-ico svg { width: 22px; height: 22px; }
  .social-bar-net { font-size: 13px; letter-spacing: 0.1em; }
}

/* ========== STOREFRONT SECTION ========== */
.storefront-section {
  padding: 0 20px;
  max-width: 1100px;
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
}
.storefront-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  background: var(--paper-2);
  aspect-ratio: 16 / 9;
}
.storefront-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.storefront-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(184, 30, 43, 0.04), rgba(184, 30, 43, 0.04) 20px, rgba(232, 178, 58, 0.06) 20px, rgba(232, 178, 58, 0.06) 40px),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  pointer-events: none;
  opacity: 0;
}
.storefront-card.no-photo .storefront-placeholder { opacity: 1; }
.storefront-placeholder-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 8px rgba(184, 30, 43, 0.2));
}
.storefront-placeholder-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.storefront-placeholder-sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}
.storefront-placeholder-tip {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  margin-top: 6px;
  background: rgba(184, 30, 43, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ========== FEATURED PLATES ========== */
.section-featured { padding-top: 36px; padding-bottom: 36px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.featured-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  transition: transform .15s ease, box-shadow .2s ease;
}
.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 20, 0.85) 100%);
  color: #fff;
}
.featured-name {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.featured-price {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(184, 30, 43, 0.4);
}
@media (min-width: 720px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .featured-card { aspect-ratio: 1 / 1; }
  .featured-name { font-size: 15px; }
}
@media (min-width: 1080px) {
  .featured-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ========== "SEE MENU AS LIST" toggle button ========== */
.list-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  gap: 6px;
}
.btn-list-toggle {
  font-size: 17px;
  padding: 18px 32px;
  box-shadow: 0 10px 26px rgba(184, 30, 43, 0.34);
}
.list-toggle-icon {
  font-size: 20px;
}
.list-toggle-tip {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  max-width: 420px;
}
.list-collapse-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ========== PILLS ========== */
.pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 24px 20px 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pill-icon { font-size: 28px; margin-bottom: 6px; }
.pill-title { font-weight: 800; font-size: 14px; color: var(--ink); }
.pill-sub { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
@media (min-width: 720px) {
  .pills { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pill { padding: 22px 18px; }
  .pill-icon { font-size: 32px; }
  .pill-title { font-size: 15px; }
}

/* ========== MENU SCANS ========== */
.section-menus { padding-top: 28px; padding-bottom: 24px; }
.menu-lang-toggle {
  display: inline-flex;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 14px;
}
.menu-lang-toggle { display: flex; justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; }
.menu-lang-toggle button {
  border: none;
  background: transparent;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--ink-2);
}
.menu-lang-toggle button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184, 30, 43, 0.25);
}
.menu-scans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.menu-card {
  position: relative;
  border: none;
  padding: 0;
  background: var(--red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.menu-card img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-card-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  pointer-events: none;
}
@media (min-width: 880px) {
  .menu-scans { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ========== CATEGORY CHIPS ========== */
.cat-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -20px 22px;
  padding: 10px 20px 12px;
  position: sticky;
  top: 60px;
  z-index: 30;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chips { scrollbar-width: none; }
.cat-chip.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.cat-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.cat-chip-ico { font-size: 18px; }

/* ========== MENU ITEMS ========== */
.cat-block {
  margin-top: 32px;
  scroll-margin-top: 140px;
}
.cat-head { margin-bottom: 14px; }
.cat-title-row { display: flex; align-items: center; gap: 10px; }
.cat-emoji { font-size: 28px; }
.cat-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.cat-note {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: var(--ink-2);
}
.cat-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .cat-items { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (min-width: 1080px) {
  .cat-items { grid-template-columns: repeat(3, 1fr); }
}

.item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.item:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.item.item-photo { padding: 0; overflow: hidden; }
.item-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}
.item-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.item.item-photo .item-body { padding: 16px; }
.item-body { display: flex; flex-direction: column; gap: 8px; }
.item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.item-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}
.item-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}
.item-desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.item-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.btn-add {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(184, 30, 43, 0.25);
  transition: transform .12s ease, background .2s ease;
}
.btn-add:hover { background: var(--red-deep); }
.btn-add:active { transform: scale(0.96); }

.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 4px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--red-deep); }
.qty-val { min-width: 24px; text-align: center; font-weight: 800; font-size: 15px; color: var(--ink); }

/* ========== ABOUT ========== */
.section-about {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  max-width: none;
  padding: 28px 0;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.about-grid h2 { text-align: left; margin-top: 10px; }
.about-grid .btn { margin-top: 8px; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-photos img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 30% 35%;
  box-shadow: var(--shadow);
}
.about-photos img:nth-child(2) { transform: translateY(20px); }
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

/* ========== VISIT ========== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.visit-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row:last-of-type { border-bottom: none; }
.visit-icon {
  width: 40px; height: 40px;
  background: rgba(184, 30, 43, 0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.visit-icon svg { display: block; }
.visit-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.visit-value {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  text-decoration: none;
}
a.visit-value {
  min-height: 44px;
  padding: 8px 0;
}
.visit-value.alt { color: var(--ink-2); font-weight: 500; }
.visit-value:hover { color: var(--red); }
.visit-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.visit-buttons .btn { width: 100%; padding: 14px 12px; font-size: 15px; }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 280px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
  pointer-events: auto;
}
.visit-map { min-height: 280px; }
/* Prevent map iframe from hijacking scroll on touch devices until user taps. */
.visit-map {
  position: relative;
}
.visit-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
  transition: opacity .2s ease;
  cursor: pointer;
}
.visit-map.active::after {
  pointer-events: none;
}
@media (min-width: 880px) {
  .visit-grid { grid-template-columns: 1fr 1.1fr; gap: 28px; }
}

/* ========== CATERING ========== */
.section-catering {
  padding: 24px 20px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.catering-card {
  background: linear-gradient(135deg, #FFFDF8 0%, #FAF1DC 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.catering-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232, 178, 58, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.catering-copy h2 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.05;
  margin: 10px 0 10px;
  color: var(--ink);
  text-align: left;
}
.catering-copy > p {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.catering-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 6px;
}
.catering-list li {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.btn-catering-cta {
  padding: 14px 22px;
  font-size: 16px;
}
.catering-phone {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}
.catering-phone a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1.5px dashed var(--line-2);
}
.catering-photo img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
@media (min-width: 760px) {
  .catering-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    padding: 32px 32px;
  }
  .catering-photo img { aspect-ratio: 1 / 1; }
}

/* ========== SOCIAL ========== */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--shadow);
}
.social-card:hover { transform: translateY(-2px); color: #fff; }
.social-ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}
.social-tt {
  background: linear-gradient(135deg, #000 0%, #25F4EE 100%);
}
.social-fb {
  background: linear-gradient(135deg, #1877F2 0%, #0d5fcf 100%);
}
.social-icon {
  font-size: 32px;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.social-icon svg { width: 30px; height: 30px; display: block; }
.social-label { font-size: 13px; opacity: 0.9; letter-spacing: 0.05em; text-transform: uppercase; }
.social-handle { font-size: 18px; font-weight: 800; }
@media (min-width: 600px) {
  .social-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); max-width: 980px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: #FBEFD2;
  padding: 32px 20px 20px;
  margin-top: 18px;
}
.footer a { color: #FBEFD2; }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 12px; }
.footer-tag { color: #D7C7A8; font-size: 14px; }
.footer-h {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-grid p { margin: 4px 0; font-size: 14px; line-height: 1.5; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #BDA37A;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ========== FLOATING CART ========== */
.cart-fab {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
  right: calc(env(safe-area-inset-right, 0px) + 14px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 16px 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(184, 30, 43, 0.40);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease, background .2s;
  max-width: calc(100vw - 28px);
}
.cart-fab.has-items {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cart-fab:hover { background: var(--red-deep); }
.cart-fab-icon { font-size: 18px; }
.cart-fab-text { display: inline; }
@media (max-width: 360px) {
  .cart-fab { padding: 10px 12px; font-size: 13px; gap: 6px; }
  .cart-fab-text { display: none; }
  .cart-fab-count { min-width: 20px; height: 20px; padding: 0 6px; font-size: 11px; }
}
.cart-fab-count {
  background: #fff;
  color: var(--red);
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== MODAL (cart) ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 20, 0.55);
  backdrop-filter: blur(2px);
  animation: fadeIn .2s ease;
}
.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideUp .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { transform: translateY(100%) } to { transform: translateY(0) } }
.modal-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-head h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--ink);
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-2);
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-2);
}
.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cart-item-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.cart-item-price { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.cart-item-controls { display: inline-flex; gap: 4px; align-items: center; background: var(--paper-2); padding: 3px; border-radius: 999px; }
.cart-item-line { font-weight: 800; color: var(--red); font-size: 15px; min-width: 64px; text-align: right; }
.cart-totals {
  margin-top: 14px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.cart-line-note {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.cart-line-note span { font-weight: 500; }
.modal-foot {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-tip {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
  text-align: center;
  background: var(--paper-2);
  padding: 8px 12px;
  border-radius: 10px;
}
.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cart-actions .btn { width: 100%; padding: 14px 8px; font-size: 14px; }

@media (min-width: 600px) {
  .modal { align-items: center; }
  .modal-panel { border-radius: var(--radius-lg); }
  @keyframes slideUp { from { transform: translateY(40px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}
.lightbox-close {
  position: absolute;
  top: env(safe-area-inset-top, 12px);
  right: 12px;
  margin-top: 12px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.lightbox-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.lightbox-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#lightbox-img {
  max-width: 96%;
  max-height: 88%;
  user-select: none;
  transition: transform .15s ease;
  transform-origin: center center;
  cursor: grab;
  will-change: transform;
}
#lightbox-img:active { cursor: grabbing; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 76px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: var(--green);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity .2s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
  z-index: 250;
  pointer-events: none;
}
.toast::before { content: "✓ "; }
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== DESKTOP COMPACTION ========== */
@media (min-width: 960px) {
  .hero { padding: 24px 20px 24px; }
  .hero-h1 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 10px; }
  .hero-sub { margin-bottom: 14px; font-size: 15px; }
  .hero-tiles { margin-bottom: 14px; }
  .hero-cta { margin-bottom: 10px; }
  .section { padding: 28px 20px; }
  .section + .section { padding-top: 18px; }
  .section-head { margin-bottom: 14px; }
  .section-head h2 { margin: 6px 0 4px; font-size: clamp(28px, 3.4vw, 40px); }
  .section-menus { padding-top: 22px; padding-bottom: 18px; }
  .section-about { padding: 28px 0; }
  .about-grid { gap: 28px; }
  .about-photos img { aspect-ratio: 4 / 5; }
  .about-photos img:nth-child(2) { transform: translateY(14px); }
  .menu-scans { gap: 18px; }
  .visit-grid { gap: 22px; }
  .visit-map, .visit-map iframe { min-height: 320px; }
  .footer { padding: 28px 20px 16px; margin-top: 10px; }
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible {
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
