/* ============================================================
   MOCA-E-MIELE — Where Memories Brew
   Palette: cream · charcoal · honey-gold · terracotta
   ============================================================ */

:root {
  --cream: #f6f1e7;
  --cream-2: #efe7d7;
  --ink: #191714;
  --ink-2: #241f1a;
  --ink-3: #2e2822;
  --gold: #c89b4b;
  --gold-light: #e0bc77;
  --terracotta: #b4633a;
  --muted: #8a8177;
  --muted-dark: #b8ad9e;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --font-script: "Pinyon Script", cursive;

  --shadow-lg: 0 30px 60px -20px rgba(20, 15, 8, 0.45);
  --shadow-sm: 0 10px 30px -12px rgba(20, 15, 8, 0.25);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 em, h1 em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--gold); }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-sub { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink); box-shadow: 0 12px 28px -10px rgba(200, 155, 75, 0.55);
}
.btn-gold:hover { box-shadow: 0 18px 36px -10px rgba(200, 155, 75, 0.7); }

.btn-ghost { border-color: rgba(246, 241, 231, 0.5); color: var(--cream); }
.btn-ghost:hover { background: rgba(246, 241, 231, 0.1); border-color: var(--cream); }

.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(25, 23, 20, 0.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.nav-inner { display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(246, 241, 231, 0.85);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-12deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--cream); letter-spacing: 0.04em; }
.brand-tag { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(246, 241, 231, 0.85); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-cta { padding: 11px 24px; font-size: 0.82rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.35s var(--ease); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 65%;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(25, 23, 20, 0.35) 0%, rgba(25, 23, 20, 0.78) 75%),
    linear-gradient(to bottom, rgba(25, 23, 20, 0.55), rgba(25, 23, 20, 0.65) 60%, var(--ink) 100%);
}

/* floating "beans" */
.hero-beans { position: absolute; inset: 0; pointer-events: none; }
.hero-beans::before, .hero-beans::after {
  content: "✦"; position: absolute; color: rgba(224, 188, 119, 0.4); font-size: 1.1rem;
  animation: floaty 7s ease-in-out infinite;
}
.hero-beans::before { top: 26%; left: 14%; }
.hero-beans::after { top: 38%; right: 12%; animation-delay: 2.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-22px); opacity: 1; }
}

.hero-content { position: relative; z-index: 2; padding-top: 80px; }

.hero-badge { position: relative; width: 128px; margin: 0 auto 8px; }
.hero-badge img {
  width: 128px; height: 128px; border-radius: 50%;
  border: 3px solid rgba(246, 241, 231, 0.9);
  box-shadow: 0 0 0 8px rgba(246, 241, 231, 0.08), var(--shadow-lg);
}
/* steam animation above badge */
.steam { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.steam i {
  width: 4px; height: 24px; border-radius: 999px;
  background: linear-gradient(to top, transparent, rgba(246, 241, 231, 0.75));
  animation: steam 2.6s ease-in-out infinite;
}
.steam i:nth-child(2) { animation-delay: 0.5s; height: 30px; }
.steam i:nth-child(3) { animation-delay: 1s; }
@keyframes steam {
  0% { transform: translateY(6px) scaleY(0.6); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(-14px) scaleY(1.1); opacity: 0; }
}

.hero-script {
  font-family: var(--font-script); font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-light); margin-bottom: 4px;
}
.hero-sub {
  max-width: 560px; margin: 20px auto 34px;
  font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 300;
  color: rgba(246, 241, 231, 0.88);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.mouse {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(246, 241, 231, 0.6);
  border-radius: 999px; position: relative;
}
.wheel {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px;
  background: var(--gold-light); border-radius: 3px; animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--gold); overflow: hidden; padding: 14px 0; }
.marquee-track {
  display: flex; gap: 34px; align-items: center; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--ink); white-space: nowrap;
}
.marquee-track i { font-style: normal; color: rgba(25, 23, 20, 0.55); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--cream); position: relative; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}

.story-images { position: relative; }
.story-img-main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.story-img-main img { aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.story-img-main:hover img { transform: scale(1.05); }

.story-img-float {
  position: absolute; right: -8%; bottom: -10%; width: 46%;
  border-radius: var(--radius); overflow: hidden;
  border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}
.story-img-float img { aspect-ratio: 1; object-fit: cover; }

/* rotating stamp */
.story-stamp {
  position: absolute; top: -34px; left: -34px; width: 110px; height: 110px;
  background: var(--ink); border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.story-stamp svg { position: absolute; inset: 6px; animation: spin 16s linear infinite; }
.story-stamp text { font-size: 10.5px; letter-spacing: 2.2px; fill: var(--gold-light); text-transform: uppercase; }
.stamp-icon { font-size: 1.6rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.story-text p { color: #5c554b; margin-bottom: 18px; font-size: 1.02rem; }
.story-text h2 { margin-bottom: 22px; }
.story-text strong { color: var(--ink); }

.story-points { list-style: none; margin-top: 30px; display: grid; gap: 20px; }
.story-points li { display: flex; gap: 18px; align-items: flex-start; }
.story-points span {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
  color: var(--gold); border: 1px solid var(--gold);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0;
}
.story-points h4 { font-size: 1.1rem; margin-bottom: 2px; }
.story-points p { margin: 0; font-size: 0.95rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu { position: relative; }
.menu::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 155, 75, 0.07), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(180, 99, 58, 0.07), transparent 40%);
  pointer-events: none;
}

.menu-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Sticky tabs wrapper */
.menu-tabs-wrap {
  position: sticky;
  top: 70px;
  z-index: 20;
  background: var(--ink);
  padding: 16px 0 8px;
  margin: 0 -20px;
  border-radius: 12px;
}
@media (max-width: 560px) {
  .menu-tabs-wrap { top: 60px; margin: 0 -10px; padding: 12px 0 6px; }
}
.menu-tab {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.05em; padding: 12px 26px; border-radius: 999px;
  background: transparent; color: var(--muted-dark);
  border: 1.5px solid rgba(246, 241, 231, 0.22); cursor: pointer;
  transition: all 0.35s var(--ease);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.menu-tab.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.menu-panel { display: none; grid-template-columns: 0.9fr 1.4fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.menu-panel.active { display: grid; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.menu-feature { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.menu-feature img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.menu-feature:hover img { transform: scale(1.06); }
.menu-feature-label {
  position: absolute; inset: auto 0 0 0; padding: 60px 26px 24px;
  background: linear-gradient(to top, rgba(25, 23, 20, 0.92), transparent);
}
.menu-feature-label span {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light);
}
.menu-feature-label h3 { font-size: 1.7rem; margin-top: 4px; }

/* Menu feature placeholder (no image) */
.menu-feature-placeholder {
  aspect-ratio: 4 / 5; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 26px; text-align: center;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink-3) 100%);
  position: relative; overflow: hidden;
}
.menu-feature-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 155, 75, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(180, 99, 58, 0.08), transparent 50%);
  pointer-events: none;
}
.mfp-ornament {
  font-size: 1.3rem; color: var(--gold); opacity: 0.7;
  animation: mfpPulse 3s ease-in-out infinite;
}
.mfp-ornament:last-child { animation-delay: 1.5s; }
@keyframes mfpPulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.menu-feature-placeholder h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--cream); margin: 14px 0 0; line-height: 1.25;
  text-shadow: 0 2px 16px rgba(200, 155, 75, 0.25);
}
.mfp-line {
  width: 50px; height: 2px; margin: 14px 0 12px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.menu-feature-placeholder p {
  font-size: 0.9rem; color: var(--muted-dark); line-height: 1.5; max-width: 280px;
}

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; scroll-margin-top: 200px; }
.menu-item { padding-bottom: 4px; }
.mi-head { display: flex; align-items: baseline; gap: 10px; }
.mi-head h4 { font-size: 1.12rem; font-weight: 600; }
.dots { flex: 1; border-bottom: 1.5px dotted rgba(246, 241, 231, 0.3); transform: translateY(-4px); }
.price { font-family: var(--font-display); font-style: italic; color: var(--gold-light); font-size: 1.02rem; white-space: nowrap; }
.menu-item p { font-size: 0.9rem; color: var(--muted-dark); margin-top: 5px; }

/* Add to cart button on menu item */
.mi-body { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.mi-body p { flex: 1; font-size: 0.9rem; color: var(--muted-dark); margin-top: 5px; margin-bottom: 0; }
.mi-add-form { margin-top: 10px; flex-shrink: 0; }
.mi-add-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(200, 155, 75, 0.15); color: var(--gold-light);
  border: 1px solid rgba(200, 155, 75, 0.35);
  cursor: pointer; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.mi-add-btn:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  transform: translateY(-1px);
}
.mi-add-btn:active { transform: scale(0.96); }

.menu-note { text-align: center; margin-top: 52px; color: var(--muted-dark); font-size: 0.95rem; }
.menu-note a { color: var(--gold-light); border-bottom: 1px dotted var(--gold-light); }

/* Back to menu button */
.menu-back-top { display: flex; justify-content: center; margin-top: 40px; padding-bottom: 8px; }
.menu-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: transparent; color: var(--gold-light);
  border: 1.5px solid rgba(200, 155, 75, 0.4);
  cursor: pointer; transition: all 0.35s var(--ease);
}
.menu-back-btn:hover {
  background: rgba(200, 155, 75, 0.12); border-color: var(--gold);
  transform: translateY(-2px);
}
.menu-back-arrow {
  display: inline-block; font-size: 1.1rem; transition: transform 0.35s var(--ease);
}
.menu-back-btn:hover .menu-back-arrow { transform: translateY(-3px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 18px;
}
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 1s; }
.g-item:hover img { transform: scale(1.08); filter: brightness(0.75); }
.g-item figcaption {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--cream);
  opacity: 0; transform: translateY(12px); transition: 0.5s var(--ease);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.g-item:hover figcaption { opacity: 1; transform: none; }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   QUOTES
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: var(--cream); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; }
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink-3); }
.quote-card footer { margin-top: 16px; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 70px); align-items: center; }

.visit-list { list-style: none; margin: 30px 0 34px; display: grid; gap: 24px; }
.visit-list li { display: flex; gap: 18px; align-items: flex-start; }
.v-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(200, 155, 75, 0.12); border: 1px solid rgba(200, 155, 75, 0.4);
}
.visit-list h4 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 2px; }
.visit-list p { color: var(--muted-dark); font-size: 0.98rem; }
.visit-list a { border-bottom: 1px dotted var(--gold-light); color: var(--cream); }
.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.visit-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(246, 241, 231, 0.12);
  height: 100%; min-height: 420px;
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #121009; color: var(--cream); padding-top: 64px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand img { width: 84px; height: 84px; border-radius: 50%; border: 2px solid rgba(246, 241, 231, 0.6); margin-bottom: 14px; }
.footer-script { font-family: var(--font-script); font-size: 1.7rem; color: var(--gold-light); }
.footer-desc { color: var(--muted-dark); font-size: 0.95rem; margin-top: 6px; }

.footer-col h5 {
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; color: var(--muted-dark); margin-bottom: 10px; font-size: 0.98rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.08);
  padding: 20px 0; text-align: center; font-size: 0.85rem; color: var(--muted);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .menu-panel { grid-template-columns: 1fr; }
  .menu-feature { max-width: 520px; margin-inline: auto; }
  .menu-feature img { aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  .menu-items { scroll-margin-top: 100px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 90;
    background: #191714;
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto; padding: 100px 24px 48px;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { font-size: 1.3rem; }
  /* keep logo, cart badge and the ✕ toggle clickable above the overlay */
  .brand, .cart-link, .nav-toggle { position: relative; z-index: 95; }

  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .story-images { max-width: 480px; margin-inline: auto; }
  .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 720px) {
  .menu-tabs-wrap { position: static; margin: 0; padding: 0; border-radius: 0; }
  .menu-items { scroll-margin-top: 80px; }
}

@media (max-width: 560px) {
  .menu-items { grid-template-columns: 1fr; scroll-margin-top: 70px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-wide { grid-column: span 1; }
  .brand-tag { display: none; }
  .hero-actions .btn { width: 100%; }
  /* pull navbar controls away from the screen edges (gesture zones) */
  .nav-inner { padding-inline: 12px; }
}
