:root {

  --cream: #f1e6cf;
  --cream-2: #f7eedd;
  --paper: #fdf7ea;

  --red: #d72a1c;
  --red-deep: #b21f12;
  --maroon: #7a1a10;
  --green: #2f7a43;
  --green-deep: #245e34;
  --pine: #1f4a2b;
  --butter: #f7c948;

  --ink: #2b211a;
  --ink-soft: #6b5a4c;
  --line: #e4d6bb;

  --font-fat: "Bagel Fat One", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-script: "Pacifico", cursive;

  --container: clamp(1180px, 90vw, 1500px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px -3px rgba(43,33,26,.30);
  --shadow: 0 14px 30px -14px rgba(43,33,26,.40);
  --shadow-lg: 0 24px 50px -20px rgba(43,33,26,.45);

  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 38px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, iframe, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--red-deep); text-underline-offset: 2px; }
h1, h2, h3 { margin: 0 0 .4em; line-height: 1.05; }
.fat, .hero__title, .band__title, .stamp__wm, .brand__wm, .footer__name { font-family: var(--font-fat); font-weight: 400; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--red); color: #fff; padding: .6rem 1rem; font-weight: 700;
  border-radius: var(--radius-sm); transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 15px 28px; border-radius: 40px; text-decoration: none;
  border: 0; cursor: pointer;
  transition: transform .12s var(--ease-out), box-shadow .12s var(--ease-out), background .15s;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 5px 0 var(--red-deep); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 3px 0 var(--maroon); transform: translateY(2px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2.5px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--text {
  background: transparent; color: var(--ink); border-radius: 0; padding: 12px 2px;
  box-shadow: inset 0 -3px 0 var(--red); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem;
}
.btn--text:hover { box-shadow: inset 0 -6px 0 var(--red); }

.promo {
  background: var(--red);
  color: var(--butter);
  overflow: hidden;
  white-space: nowrap;
  padding: .75rem 0;
  position: relative;
  z-index: 60;
}
.promo__track {
  display: inline-flex;
  width: max-content;

  animation: marquee 28s linear infinite;
}
.promo__item {
  display: inline-block;
  color: var(--butter);
  font-weight: 600;
  letter-spacing: .02em;
}

.promo__item::after { content: "★"; display: inline-block; margin-inline: 2.4rem; }
.promo__item b { font-weight: 800; }
.promo:hover .promo__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stretch { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.stretch:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  transition: box-shadow .2s, background .2s;
}
.site-header[data-elevated="true"] { box-shadow: var(--shadow-sm); background: var(--cream-2); }
.header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }

.brand__logo {
  height: 75px; width: auto; object-fit: contain;
}
.brand__wm { font-size: 1.45rem; line-height: .95; color: var(--red); transition: color .15s; }
.brand:hover .brand__wm { color: var(--red-deep); }

.nav { display: flex; align-items: center; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--red); cursor: pointer; position: relative;
}
.nav__toggle-bar, .nav__toggle-bar::before, .nav__toggle-bar::after {
  content: ""; position: absolute; left: 12px; width: 20px; height: 2.5px;
  background: #fff; border-radius: 2px; transition: transform .2s var(--ease-out), opacity .2s;
}
.nav__toggle-bar { top: 50%; translate: 0 -50%; }
.nav__toggle-bar::before { left: 0; top: -6px; }
.nav__toggle-bar::after  { left: 0; top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { transform: translateY(-6px) rotate(-45deg); }

.nav__menu {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .93rem;
  white-space: nowrap;
  padding: .35rem 0; box-shadow: inset 0 0 0 var(--red); transition: color .15s, box-shadow .15s;
}
.nav__menu a:hover { color: var(--red); box-shadow: inset 0 -2px 0 var(--red); }
.nav__cta {
  background: var(--red); color: #fff !important; border-radius: 40px;
  padding: .6rem 1.15rem !important; box-shadow: 0 4px 0 var(--red-deep) !important;
  text-transform: uppercase; letter-spacing: .05em; font-size: .82rem !important;
}
.nav__cta:hover { background: var(--red-deep); color: #fff !important; transform: translateY(2px); box-shadow: 0 2px 0 var(--maroon) !important; }

.nav[data-nav="compact"] .nav__toggle { display: block; }
.nav[data-nav="compact"] .nav__menu {
  position: absolute; left: 0; right: 0; top: 100%;
  flex-direction: column; align-items: stretch; gap: 0;
  background: var(--cream-2); border-top: 2px solid var(--line);
  box-shadow: var(--shadow); padding: .5rem 1.2rem 1.1rem;
  display: none;
}
.nav[data-nav="compact"] .nav__menu[data-open="true"] { display: flex; }
.nav[data-nav="compact"] .nav__menu li { border-bottom: 1px solid var(--line); }
.nav[data-nav="compact"] .nav__menu li:last-child { border-bottom: 0; padding-top: .85rem; }
.nav[data-nav="compact"] .nav__menu a { display: block; padding: .9rem 0; }
.nav[data-nav="compact"] .nav__cta { text-align: center; }

[data-view="home"] { --container: 1180px; }
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero__inner {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 720px) { .hero__inner { grid-template-columns: 1.02fr .98fr; } }

.hero__eyebrow {
  margin: 0 0 .9rem; font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}

.hero__title {
  text-wrap: balance; font-size: clamp(2.9rem, 8vw, 4.6rem); margin-bottom: .1em; }
.hero__title .accent { color: var(--red); }
.hero__script {
  font-family: var(--font-script); color: var(--green);
  font-size: clamp(1.35rem, 3.4vw, 1.85rem); margin: 0 0 1rem; transform: rotate(-1.5deg);
}
.hero__lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 46ch; margin: 0 0 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }

.hero__note {
  margin: 1.5rem 0 0; display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .9rem; color: var(--ink-soft);
  background: rgba(43,33,26,.05); border: 1.5px solid var(--line);
  padding: .5rem 1rem; border-radius: 40px;
}
.hero__note::before { content: "●"; color: var(--ink-soft); font-size: .7rem; }

.hero__note[data-open="true"] {
  color: var(--green-deep);
  background: rgba(47,122,67,.10); border-color: rgba(47,122,67,.28);
}
.hero__note[data-open="true"]::before { color: var(--green); }

.hero__note[data-open="false"] {
  color: var(--red-deep);
  background: rgba(215,42,28,.10); border-color: rgba(215,42,28,.30);
}
.hero__note[data-open="false"]::before { color: var(--red); }

.hero__service { margin: .9rem 0 0; font-size: .88rem; color: var(--ink-soft); }
.hero__service strong { color: var(--red-deep); }

.hero__cards { position: relative; aspect-ratio: 1.04; min-height: 380px; }
.pc {
  position: absolute; border-radius: var(--radius-sm);
  border: 7px solid #fff; box-shadow: var(--shadow);
  object-fit: cover; background: var(--paper);
}
.pc--a { width: 52%; aspect-ratio: 4/3;   top: 0;    left: 0;   rotate: -6.5deg; z-index: 1; }
.pc--b { width: 67%; aspect-ratio: 3/2;   top: 26%;  right: 0;  rotate: 4.5deg;  z-index: 3; }
.pc--c { width: 48%; aspect-ratio: 4/3;   bottom: 0; left: 3%;  rotate: 6.5deg;  z-index: 2; }
.pc { transition: rotate .35s var(--ease-spring), scale .35s var(--ease-spring); }
.pc:hover { rotate: 0deg; scale: 1.04; z-index: 5; }

@media (max-width: 719px) {
  .hero__cards {
    width: min(100%, 430px);
    margin-inline: auto;
    min-height: 0;
    aspect-ratio: 1.04;
  }
}

.ing {
  position: absolute; z-index: 4;
  width: 12%; height: auto;
  filter: drop-shadow(0 4px 8px rgba(43,33,26,.24));
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.ing--basil  { top: 9%;    right: 2%;  width: 12.3%; animation-delay: 0s;   }
.ing--tomato { top: 46%;   left: -1%;  width: 11.0%; animation-delay: 1.4s; }
.ing--cheese { bottom: 10%; right: 5%;  width: 13.9%; animation-delay: 2.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}

.wave { width: 100%; height: clamp(40px, 6vw, 70px); display: block; margin-bottom: -1px; }
.wave path { fill: var(--red); }

.band { background: var(--red); color: var(--cream); padding: 0 0 clamp(1.5rem, 4vw, 2.5rem); }
.band__inner {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; text-align: center;
}

.band__mascot {
  --mascot: clamp(200px, 20vw, 288px);
  width: var(--mascot); height: auto;
  margin-top: calc(var(--mascot) * -0.3);

  margin-bottom: calc(var(--mascot) * -0.159);
  transform-origin: 50% 88%;
  animation: mascot-sway 7s ease-in-out infinite;
  transition: scale .35s var(--ease-spring);
}
.band__mascot:hover { scale: 1.06; }

@keyframes mascot-sway {
  0%, 100% { transform: translateY(0)     rotate(-2.2deg); }
  50%      { transform: translateY(-12px) rotate(2.2deg); }
}
.band__title { font-size: clamp(2rem, 5.5vw, 3.5rem); margin: 0; }
.band__o { color: var(--butter); }

.band__sub {
  margin: .45rem 0 0; font-size: 1.02rem; font-weight: 700;
  color: rgba(255,255,255,.92);
}

.band__chips {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
}
.band__chips li {
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 40px; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  transition: background .15s, border-color .15s;
}
.band__chips a { display: block; padding: .35rem 1rem; color: inherit; text-decoration: none; }
.band__chips li:hover { background: rgba(255,255,255,.28); border-color: var(--butter); }

.band__chips--gf { background: var(--butter) !important; border-color: var(--butter) !important; }
.band__chips--gf a { color: var(--maroon); }
.band__chips li.band__chips--gf:hover { background: #ffd75e !important; }

.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section__head { max-width: 60ch; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section__eyebrow {
  margin: 0 0 .5rem; font-size: .76rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--green);
}
.section__title { font-family: var(--font-fat); font-weight: 400; font-size: clamp(2.1rem, 5.5vw, 3rem); color: var(--red); margin: 0 0 .35em; }
.section__sub { margin: 0; color: var(--ink-soft); font-size: 1.02rem; }

.specials { background: var(--cream-2); }

.specials__grid { display: grid; gap: clamp(1.4rem, 1.75vw, 2.4rem); grid-template-columns: 1fr; }
@media (min-width: 620px)  { .specials__grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 861px)  { .specials__grid { grid-template-columns: repeat(4, 1fr); } }

.special {
  position: relative; background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  padding: clamp(2.6rem, 3.25vw, 3.5rem) clamp(1.6rem, 2vw, 2.2rem) clamp(1.7rem, 2.125vw, 2.4rem); text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.special:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }

.special--feature { background: var(--green); color: var(--cream); border-color: var(--pine); box-shadow: 6px 6px 0 var(--pine); }
.special--feature:hover { box-shadow: 9px 9px 0 var(--pine); }
.special--feature .special__title { color: var(--butter); }
.special--feature .special__desc { color: rgba(255,255,255,.9); }

.special__badge {
  position: absolute; top: -22px; left: 50%; translate: -50% 0;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-content: center; line-height: 1;
  border: 3px solid var(--cream-2); box-shadow: var(--shadow-sm);
}
.special__badge span { font-size: .55rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.special__badge strong { font-family: var(--font-fat); font-weight: 400; font-size: 1.15rem; }
.special__badge--alt { background: var(--butter); color: var(--maroon); }

.special__badge strong:only-child { font-size: 1.5rem; }

.special__icon {
  display: block; width: 76px; height: 54px; object-fit: contain;
  margin: .1rem auto .55rem;
  animation: bob 5.5s ease-in-out infinite;
}

.special:nth-child(4) .special__icon { padding: 6.5px 0; }

.special:nth-child(2) .special__icon { animation-delay: -1.3s; }
.special:nth-child(3) .special__icon { animation-delay: -2.6s; }
.special:nth-child(4) .special__icon { animation-delay: -3.9s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-7px) rotate(2deg); }
}

.special__title {
  font-family: var(--font-fat); font-weight: 400; font-size: 1.8rem;
  color: var(--red); margin: .3rem 0 .4rem; text-wrap: balance;
}
.special__desc { margin: 0; font-size: clamp(1.1rem, 1.375vw, 1.3rem); line-height: 1.45; color: var(--ink-soft); }

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.card__media { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card__title { font-size: 1.15rem; font-weight: 800; margin: 0; color: var(--ink); line-height: 1.25; }
.card__desc { margin: 0; font-size: .88rem; color: var(--ink-soft); flex: 1; }

.card__foot {
  margin-top: auto; padding-top: .5rem;
  display: flex; align-items: center; justify-content: flex-end;
}
.card__go {
  color: var(--red); font-weight: 800; font-size: 1rem; line-height: 1;
  transition: translate .2s var(--ease-out);
}
.card:hover .card__go { translate: 5px 0; }

.menu__cats { margin-top: 2.5rem; text-align: center; }
.menu__cats-label {
  display: block; margin-bottom: .8rem; font-size: .76rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft);
}
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }

.chips li {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 40px;
  font-size: .82rem; font-weight: 700; color: var(--ink-soft);
  transition: border-color .15s, background .15s;
}
.chips li a { display: block; padding: .3rem .95rem; color: inherit; text-decoration: none; }
.chips li:hover { border-color: var(--red); background: #fff; color: var(--red); }

.full-menu { background: var(--cream-2); }
.menu-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; align-content: start; }
@media (min-width: 820px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1000px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-category {
  background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); overflow: hidden; height: fit-content;
  transition: border-color .2s, box-shadow .2s;
}
.menu-category:has(.menu-category__content[data-open="true"]) { border-color: var(--red); box-shadow: var(--shadow-sm); }

@media (min-width: 820px) {
  .menu-category:has(.menu-category__content[data-open="true"]) { grid-column: 1 / -1; }
  .menu-category:has(.menu-category__content[data-open="true"]) .menu-items {
    columns: 2; column-gap: 2.6rem;
  }

  .menu-category:has(.menu-category__content[data-open="true"]) .menu-item {
    break-inside: avoid;
  }

  .menu-category:has(.menu-category__content[data-open="true"]) .bc-items {
    columns: 2; column-gap: 2.6rem;
  }

  .menu-category:has(.menu-category__content[data-open="true"]) .bc-items--wide {
    columns: 1;
  }
  .menu-category:has(.menu-category__content[data-open="true"]) .bc-items li {
    break-inside: avoid;
  }

  .menu-category:has(.menu-category__content[data-open="true"]) .bc-subsection {
    break-inside: avoid;
  }
}

.menu-category__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: transparent; border: 0; cursor: pointer;
  padding: 1.1rem 1.25rem; text-align: left; font: inherit; color: inherit;
  transition: background .15s;
}
.menu-category__toggle:hover { background: rgba(215,42,28,.06); }
.menu-category__title {
  font-family: var(--font-fat); font-weight: 400; font-size: 1.22rem; color: var(--red); margin: 0;
}
.menu-category__note, .bc-category__note {
  display: block; font-family: var(--font-body); font-weight: 700;
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green);
  margin-top: .15rem;
}
.menu-category__chev {
  flex: none; width: 12px; height: 12px; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red);
  rotate: 45deg; translate: 0 -3px; transition: rotate .25s var(--ease-out), translate .25s var(--ease-out);
}
[aria-expanded="true"] .menu-category__chev { rotate: 225deg; translate: 0 3px; }

.menu-category__content { display: none; padding: 0 1.25rem 1.25rem; }
.menu-category__content[data-open="true"] { display: block; animation: slide-down .28s var(--ease-out); }
@keyframes slide-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.menu-items, .bc-items { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item__header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-item__name { font-weight: 700; font-size: .95rem; }
.menu-item__price { font-weight: 800; color: var(--red); font-size: .9rem; white-space: nowrap; }
.menu-item__desc { margin: .2rem 0 0; font-size: .82rem; color: var(--ink-soft); }

.menu-item__note { margin: .7rem 0 .5rem; font-size: .82rem; color: var(--green-deep); }

.menu-item__note--warn {
  color: var(--red-deep); background: rgba(215,42,28,.07);
  border-left: 3px solid var(--red); border-radius: 0 6px 6px 0;
  padding: .55rem .7rem; margin: .5rem 0 .7rem;
}

.bc-subsection { margin-top: 1.1rem; }
.bc-subsection:first-child { margin-top: 0; }
.bc-subsection__title {
  font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green); margin: 0 0 .5rem; padding-bottom: .35rem; border-bottom: 2px solid var(--line);
}
.bc-items li { padding: .5rem 0; border-bottom: 1px dashed var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bc-items li:last-child { border-bottom: 0; }

.bc-items li:has(.menu-item__desc) { row-gap: .1rem; }
.bc-items li > .menu-item__desc { flex: 0 0 100%; margin: 0; }
.bc-item__name { font-weight: 700; font-size: .93rem; }
.bc-item__price { font-weight: 800; color: var(--red); font-size: .88rem; white-space: nowrap; margin-left: auto; }
.bc-toppings { background: rgba(47,122,67,.08); border-radius: var(--radius-sm); padding: .9rem 1rem; }
.bc-toppings__text { margin: 0; font-size: .84rem; color: var(--ink-soft); }

.bc-notes { display: grid; gap: .35rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.visit { background: var(--cream-2); color: var(--ink); }
.visit .section__sub { color: var(--ink-soft); }
.visit__grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; align-items: stretch; }

.visit__side { display: flex; flex-direction: column; gap: 1rem; min-height: 0; }
.visit__side .visit__map { flex: 0 0 auto; }

.visit__shot { flex: 1 1 0; margin: 0; min-height: 120px; }
.visit__shot img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }

@media (max-width: 860px) {
  .visit__shot { flex: 0 0 auto; }
  .visit__shot img { height: auto; aspect-ratio: 4 / 3; }
}

@media (min-width: 861px) { .visit__grid { grid-template-columns: 1fr 1.25fr; } }

.visit__info {
  background: var(--paper); border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  border-radius: var(--radius); padding: 1.6rem;
}
.hours { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li[data-today="true"] { color: var(--red); font-weight: 800; }
.hours li[data-today="true"]::after { content: "today"; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.contact { display: grid; gap: .8rem; }

.contact__line {
  display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem;
  color: var(--ink); font-weight: 700; text-decoration: none; transition: color .15s;
}
.contact__line:hover, .contact__line:focus-visible { color: var(--red); text-decoration: underline; }
.contact__line small { display: block; font-weight: 400; font-size: .82rem; color: var(--ink-soft); }

.contact__icon { flex: none; height: 1.6rem; width: auto; margin-top: .05rem; }
.callbar__icon { height: 1.35rem; width: auto; }

.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.visit__service {
  margin: 1.1rem 0 0; font-size: .86rem; color: var(--ink-soft);
  padding-top: 1rem; border-top: 1px dashed var(--line);
}

.visit__live { margin: .1rem 0 .35rem; font-size: .9rem; color: var(--green-deep); }

.visit__service strong { color: var(--red-deep); }

.visit__map {
  border-radius: var(--radius); overflow: hidden; min-height: 300px;
  border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
}
.visit__map iframe, .visit__map img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; border: 0; }

[data-viewmode="tabs"] main {
  min-height: calc(100vh - var(--chrome-h, 200px));
  min-height: calc(100svh - var(--chrome-h, 200px));
  display: flex; flex-direction: column;
}

[data-viewmode="tabs"] .section[data-view].is-view {
  flex: 1 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}

[data-viewmode="tabs"] .hero[data-view].is-view {
  flex: 1 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}

[data-viewmode="tabs"] [data-view] { display: none; }
[data-viewmode="tabs"] [data-view].is-view { display: block; }

[data-viewmode="tabs"] .section { padding: clamp(.8rem, 1.6vw, 1.2rem) 0; }
[data-viewmode="tabs"] .section__head { margin-bottom: clamp(.9rem, 1.8vw, 1.3rem); }

[data-viewmode="tabs"] .footer__grid { display: none; }
[data-viewmode="tabs"] .site-footer { padding: 0 0 1.2rem; }
[data-viewmode="tabs"] .footer__legal { margin-top: 0; padding-top: 1.2rem; }

[data-viewmode="tabs"] .stamp { display: none; }

[data-viewmode="tabs"] .card__media { aspect-ratio: 16/9; }
[data-viewmode="tabs"] .cards { gap: 1rem; }

@media (min-width: 861px) {
  [data-viewmode="tabs"] .card__body { padding: .9rem 1rem 1rem; }
  [data-viewmode="tabs"] .card__title { font-size: 1.05rem; }
  [data-viewmode="tabs"] .card__desc { font-size: .86rem; }

  [data-viewmode="tabs"] .menu-category__toggle { padding: .85rem 1.25rem; }
  [data-viewmode="tabs"] .menu-grid { gap: clamp(.7rem, min(calc(.7rem + (100vw - 1280px) * .022), calc(.7rem + (100vh - 800px) * .0345)), 1.2rem); }

  [data-viewmode="tabs"] .visit__map,
  [data-viewmode="tabs"] .visit__map iframe,
  [data-viewmode="tabs"] .visit__map img { height: 215px; min-height: 0; }
  [data-viewmode="tabs"] .visit__info { padding: 1.2rem; }
  [data-viewmode="tabs"] .hours li { padding: .28rem 0; font-size: .88rem; }
  [data-viewmode="tabs"] .hours { margin-bottom: 1rem; }
  [data-viewmode="tabs"] .visit__actions { margin-top: .8rem; }

  [data-viewmode="tabs"] .visit__service { margin-top: .7rem; padding-top: .7rem; }
  [data-viewmode="tabs"] .hero__lead { margin-bottom: 1rem; }

  [data-viewmode="tabs"] .hero { padding-block: 2.5rem; }
  [data-viewmode="tabs"] .band { padding-block: 1.2rem; }
}

.nav__menu a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -2px 0 var(--red); }
.nav[data-nav="compact"] .nav__menu a[aria-current="page"] { box-shadow: none; }

.vibe__grid { display: grid; gap: clamp(1.6rem, min(calc(1.6rem + (100vw - 1280px) * .03), calc(1.6rem + (100vh - 800px) * .047)), 2.3rem); grid-template-columns: 1fr; align-items: start;
  max-width: var(--container); margin-inline: auto; }

.reviews { display: grid; gap: .75rem; align-content: start; }
@media (min-width: 700px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (min-width: 861px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.gallery .section__head { margin-bottom: .6rem; }

.full-menu .section__head { margin-bottom: .7rem; }

.vibe__glink {
  display: inline-block; margin-top: .7rem; font-size: .88rem; font-weight: 800;
  color: var(--green); text-decoration: none;
  border-bottom: 2px solid transparent; transition: border-color .15s;
}
.vibe__glink:hover, .vibe__glink:focus-visible { border-bottom-color: var(--green); }

.vibe__mascot {
  display: block; width: min(230px, 62%); height: auto; margin: .9rem auto 0;
  transform-origin: 50% 88%;
  animation: mascot-sway 8s ease-in-out infinite -2.4s;
  transition: scale .35s var(--ease-spring);
}
.vibe__mascot:hover { scale: 1.05; }
@media (min-width: 861px) {
  .gallery .section__head.vibe__head {
    display: flex; align-items: center; gap: 1.6rem;
    max-width: 1020px; text-align: left;
  }
  .vibe__head-text { flex: 1 1 auto; }
  .vibe__mascot { flex: 0 0 auto; width: clamp(170px, 19.5vw, 250px); margin: 0; }
}

.review {
  position: relative;
  margin: 0; background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(.8rem, min(calc(.8rem + (100vw - 1280px) * .05), calc(.8rem + (100vh - 800px) * .078)), 1.5rem)
           clamp(1.05rem, calc(1.05rem + (100vw - 1280px) * .05), 1.75rem);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.review:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.review:has(.stretch:focus-visible) { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.review__text { margin: 0 0 .5rem; font-size: clamp(.93rem, min(calc(.93rem + (100vw - 1280px) * .022), calc(.93rem + (100vh - 800px) * .0345)), 1.18rem); line-height: 1.45; }

.review__text::before { content: "\201C"; }
.review__text::after  { content: "\201D"; }
.review__by { font-size: clamp(.8rem, min(calc(.8rem + (100vw - 1280px) * .014), calc(.8rem + (100vh - 800px) * .022)), .95rem); font-weight: 800; color: var(--red); }
.review__by span { color: var(--ink-soft); font-weight: 600; }

.tile { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.tile img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: scale .4s var(--ease-out); }
.tile:hover img { scale: 1.06; }

.tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem .9rem .7rem; color: #fff; font-size: .82rem; font-weight: 700;
  background: linear-gradient(to top, rgba(43,33,26,.75), transparent);
}

.stamp { text-align: center; padding: clamp(2rem, 6vw, 3.5rem) 0; }
.stamp__wm {
  font-size: clamp(2.4rem, 11vw, 7rem); color: var(--red); line-height: .9;
  margin: 0; opacity: .92;
}
.stamp__tag {
  font-family: var(--font-script); color: var(--green);
  font-size: clamp(1.1rem, 3vw, 1.6rem); margin: .3rem 0 0; rotate: -2deg;
}

.callbar {
  position: fixed; right: .9rem; left: auto;
  bottom: calc(.9rem + env(safe-area-inset-bottom)); z-index: 80;
  display: none; align-items: center; gap: .45rem;
  padding: .72rem 1.1rem;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 800; font-size: .95rem; letter-spacing: .02em;
}

.callbar:active { background: var(--red-deep); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
@media (max-width: 700px) {
  .callbar { display: flex; }

  .site-footer,
  [data-viewmode="tabs"] .site-footer {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

.site-footer { background: var(--ink); color: var(--cream-2); padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.5rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__name { font-size: 1.6rem; color: var(--butter); margin: 0 0 .3rem; }
.footer__tag { margin: 0; color: rgba(255,255,255,.7); font-size: .92rem; max-width: 40ch; }
.footer__col h3 { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--butter); margin: 0 0 .8rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer__col a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .9rem; }
.footer__col a:hover { color: var(--butter); text-decoration: underline; }
.footer__legal {
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .8rem; color: rgba(255,255,255,.55);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1.5rem;
}
.footer__legal p { margin: 0; }

.footer__addr a {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.8); text-decoration: none; font-weight: 700;
  transition: color .15s;
}
.footer__addr a:hover { color: var(--butter); text-decoration: underline; }
.footer__pin { height: 1.35rem; width: auto; flex: none; }
.footer__addr-link { font-style: normal; line-height: 1.6; }

@media (min-width: 1000px) {
  [data-viewmode="tabs"] .menu-category__toggle {
    padding: clamp(1.15rem, min(calc(1.15rem + (100vw - 1280px) * .055), calc(1.15rem + (100vh - 800px) * .086)), 2rem)
             clamp(1.25rem, calc(1.25rem + (100vw - 1280px) * .04), 1.9rem);
  }
  [data-viewmode="tabs"] .menu-category__title {
    font-size: clamp(1.22rem, min(calc(1.22rem + (100vw - 1280px) * .016), calc(1.22rem + (100vh - 800px) * .025)), 1.5rem);
  }
}

@media (min-width: 861px) {
  [data-viewmode="tabs"] .visit__actions { margin-top: .6rem; gap: .5rem; }
  [data-viewmode="tabs"] .visit__actions .btn { padding: 11px 16px; font-size: .82rem; }
  [data-viewmode="tabs"] .hours li { padding: .18rem 0; font-size: .84rem; }
}

@media (min-width: 861px) and (max-width: 1100px) {
  [data-viewmode="tabs"] .visit .section__title { font-size: 2rem; }
}
