/* ============================================================
   SushiGin — base stylesheet
   Direction: bright, modern Japanese. Vermilion is the one bold
   note; indigo + sparing gold stay quiet. Display = Shippori Mincho
   (mincho serif, supports 漢字), body = Zen Kaku Gothic New.
   ============================================================ */

:root {
  /* palette */
  --ground:      #FBF8F3;   /* warm off-white */
  --surface:     #FFFFFF;
  --surface-alt: #F3EEE4;   /* faint sand panel */
  --ink:         #1A2238;   /* deep indigo */
  --ink-soft:    #5B6072;   /* muted body text */
  --ink-faint:   #9AA0AE;
  --accent:      #C8472F;   /* vermilion / hanko red */
  --accent-deep: #A5371F;
  --gold:        #B5894E;   /* quiet secondary */
  --line:        #E4DCCD;   /* hairline on ground */
  --line-soft:   #EFE9DD;

  /* type */
  --font-display: "Shippori Mincho", Georgia, "Times New Roman", serif;
  --font-body:    "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* scale */
  --step--1: clamp(.78rem, .76rem + .1vw, .85rem);
  --step-0:  clamp(1rem, .97rem + .15vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
  --step-4:  clamp(2.7rem, 2rem + 3.6vw, 5rem);

  /* space / shape */
  --gutter: clamp(1.1rem, 3vw, 2.4rem);
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -28px rgba(26, 34, 56, .35);
  --shadow-soft: 0 8px 30px -20px rgba(26, 34, 56, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* off-canvas mobile menu must not create horizontal scroll */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--surface-alt); }

/* eyebrow: kanji + romaji label, echoing the printed menu's section heads */
.eyebrow {
  display: inline-flex; align-items: baseline; gap: .6em;
  font-size: var(--step--1); letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin: 0 0 .9rem;
}
.eyebrow .kanji {
  font-family: var(--font-display); font-size: 1.5em; letter-spacing: 0;
  text-transform: none; color: var(--gold); line-height: 1;
}
.section-title { font-size: var(--step-3); letter-spacing: -.01em; }
.section-lead { color: var(--ink-soft); max-width: 56ch; margin: 1rem 0 0; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: var(--step--1); line-height: 1; letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--ground); }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem var(--gutter);
  background: color-mix(in srgb, var(--ground) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.site-nav.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--ground) 94%, transparent); }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .02em; }
.brand .mark { width: 1.85rem; height: 1.85rem; border-radius: 50%; object-fit: cover; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: var(--step--1); font-weight: 600; letter-spacing: .02em; position: relative; padding-block: .3rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* language switcher */
.lang { display: inline-flex; align-items: center; gap: .15rem; padding: .25rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.lang button { padding: .25rem .55rem; border: none; background: transparent; border-radius: 999px; font-size: var(--step--1); font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); transition: background .2s, color .2s; }
.lang button.is-active { background: var(--ink); color: var(--ground); }

/* mobile nav toggle */
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(4px); }

@media (max-width: 860px) {
  /* drop the blur on mobile: backdrop-filter creates a containing block that
     would trap the position:fixed drawer inside the ~56px nav bar */
  .site-nav { backdrop-filter: none; background: color-mix(in srgb, var(--ground) 95%, transparent); }
  .site-nav.is-scrolled { background: color-mix(in srgb, var(--ground) 98%, transparent); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 70;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 6rem 2rem 2rem; background: var(--ground); box-shadow: var(--shadow);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: var(--step-1); }
  /* dim backdrop behind the open drawer. MUST sit below .site-nav (z-60):
     the drawer's z-70 is trapped inside the nav's stacking context, so a
     scrim above the nav would also cover — and block clicks on — the drawer. */
  .nav-scrim { position: fixed; inset: 0; z-index: 50; background: rgba(16,20,34,.42);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,20,34,.42) 0%, rgba(16,20,34,.22) 42%, rgba(16,20,34,.9) 100%),
    linear-gradient(75deg, rgba(16,20,34,.6) 0%, rgba(16,20,34,.15) 52%, rgba(16,20,34,0) 75%);
}
/* giant seal watermark — brand-specific motif */
.hero__kanji {
  position: absolute; z-index: -1; right: -6vw; top: 50%; transform: translateY(-50%);
  width: 78vh; height: 78vh; max-width: 90vw; border-radius: 50%; object-fit: cover;
  opacity: .16; pointer-events: none; user-select: none;
}
.hero__inner { padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 7rem; }
.hero__eyebrow { display: inline-flex; flex-wrap: wrap; gap: .4em .6em; align-items: center; font-size: var(--step--1); letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: #fff; }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: var(--step-4); margin: 1.2rem 0 .4rem; letter-spacing: -.015em; max-width: 16ch; text-shadow: 0 2px 24px rgba(10,12,22,.45); }
.hero__tag { font-size: var(--step-1); font-family: var(--font-display); font-weight: 400; font-style: italic; color: #fff; text-shadow: 0 1px 16px rgba(10,12,22,.5); }
.hero__sub { max-width: 46ch; margin: 1.1rem 0 0; color: rgba(255,255,255,.92); text-shadow: 0 1px 14px rgba(10,12,22,.55); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__cta .btn { padding: 1.05em 2em; font-size: var(--step-0); }
.hero__scroll { margin-top: 2.6rem; display: inline-flex; align-items: center; gap: .6rem; font-size: var(--step--1); letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.hero__scroll .line { width: 46px; height: 1px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--accent); animation: slide 2.4s var(--ease) infinite; }
@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* ============================================================
   CONCEPT (buffet infinity)
   ============================================================ */
.concept { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.concept__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.concept__media img { width: 100%; height: 100%; object-fit: cover; }
.concept__badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem; background: var(--surface);
  border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: .7rem;
}
.concept__badge .inf { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent); line-height: 1; }
.concept__badge small { display: block; font-size: var(--step--1); color: var(--ink-soft); line-height: 1.3; }
.rules { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.rules li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.rules .num { font-family: var(--font-display); color: var(--accent); font-weight: 700; font-size: 1.1rem; min-width: 1.6em; }
.rules b { display: block; }
.rules span { color: var(--ink-soft); font-size: var(--step--1); }

@media (max-width: 820px) { .concept { grid-template-columns: 1fr; } .concept__media { aspect-ratio: 3/2; } }

/* ============================================================
   STATS / TRUST
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.4rem 1rem; border-radius: var(--radius); }
.stat .big { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; min-height: 1em; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: .25rem; }
.stat .big .star { color: var(--gold); font-size: .7em; }
.stat .stars { position: relative; display: inline-block; font-size: .64em; line-height: 1; letter-spacing: .06em; color: var(--line); white-space: nowrap; }
.stat .stars::before { content: "\2605\2605\2605\2605\2605"; }
.stat .stars__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 90%; overflow: hidden; color: var(--gold); }
.stat .stars__fill::before { content: "\2605\2605\2605\2605\2605"; }
.stat .lbl { color: var(--ink-soft); font-size: var(--step--1); letter-spacing: .04em; margin-top: .3rem; }
.stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat + .stat { border-left: none; } .stat:nth-child(even) { border-left: 1px solid var(--line); } }

/* ============================================================
   GALLERY (grid + lightbox)
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-grid.is-preview { grid-template-columns: repeat(3, 1fr); }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; background: var(--surface-alt); border: none; padding: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.8rem; background: rgba(26,34,56,0); opacity: 0; transition: background .3s, opacity .3s; }
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { background: rgba(26,34,56,.32); opacity: 1; }
.g-item.tall { aspect-ratio: 1 / 1.4; }
/* extra images stay hidden until "view full gallery" — same grid, so no gap opens up */
.g-item.is-extra { display: none; }
.gallery-grid.show-all .g-item.is-extra { display: block; }
@media (max-width: 900px) { .gallery-grid, .gallery-grid.is-preview { grid-template-columns: repeat(2, 1fr); } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(14,17,28,.92); padding: 4vw; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; font-size: 1.4rem; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-close { position: absolute; top: 3vh; right: 3vw; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; font-size: 1.3rem; }
.lb-count { position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: var(--step--1); letter-spacing: .15em; }
@media (max-width: 640px) { .lb-prev { left: 1rem; } .lb-next { right: 1rem; } .lb-btn { width: 44px; height: 44px; } }

/* ============================================================
   RESERVATION
   ============================================================ */
.reserve-note { max-width: 620px; margin: 0 auto 1.4rem; text-align: center; font-size: var(--step--1); color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .7rem 1.3rem; box-shadow: var(--shadow-soft); }
.reserve-note::before { content: "ℹ"; color: var(--accent); font-weight: 700; margin-right: .5em; }
.reserve-note a { color: var(--accent); font-weight: 700; white-space: nowrap; }
.reserve-note a:hover { text-decoration: underline; }
.reserve-note + .reserve-note { margin-top: -.6rem; }
.reserve-note--holiday::before { content: "📅"; margin-right: .45em; }
@media (max-width: 600px) { .reserve-note { border-radius: var(--radius); } }
.reserve-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1rem, 3vw, 2rem); box-shadow: var(--shadow-soft); overflow: hidden; }
/* fixed height (no auto-resizer): the CoverManager resizer over-reported height
   and left a huge blank area below the widget. Side-by-side on desktop is short;
   the module stacks (calendar over form) on phones, so it needs more height there. */
.reserve-wrap iframe { width: 100%; border: 0; display: block; border-radius: 10px; height: 500px; }
/* give the CoverManager widget the full width on phones so it doesn't scroll sideways;
   the module stacks vertically there so it needs more height */
@media (max-width: 600px) { .reserve-wrap { padding: .35rem; border-radius: var(--radius); } .reserve-wrap iframe { border-radius: 8px; height: 720px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.82); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.contact-map { margin-top: 1.1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.14); max-width: 320px; }
.contact-map iframe { width: 100%; height: 168px; border: 0; display: block; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.footer .brand { color: #fff; }
.footer h4 { font-size: var(--step--1); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer p { margin: .35rem 0; font-size: var(--step--1); color: rgba(255,255,255,.78); }
.footer .socials { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.footer .socials a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: var(--step--1); color: rgba(255,255,255,.55); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   reveal-on-scroll — only hides when JS is active (.js on <html>),
   so content is always visible if JS is slow, fails, or disabled.
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero { padding-top: 8.5rem; padding-bottom: 1rem; text-align: center; }
.menu-hero .section-lead { margin-inline: auto; }

.menu-pdf { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* sticky category tabs */
.menu-tabs-wrap { position: sticky; top: 58px; z-index: 40; background: color-mix(in srgb, var(--ground) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-tabs { display: flex; gap: .4rem; overflow-x: auto; padding: .7rem var(--gutter); max-width: var(--maxw); margin-inline: auto; scrollbar-width: none; -ms-overflow-style: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button {
  flex: 0 0 auto; border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: .45rem 1rem; font-size: var(--step--1); font-weight: 600;
  color: var(--ink-soft); display: inline-flex; align-items: baseline; gap: .45rem; transition: all .2s;
}
.menu-tabs button .k { font-family: var(--font-display); color: var(--gold); font-size: 1.05em; }
.menu-tabs button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-tabs button.is-active .k { color: var(--accent); }

.menu-cat { padding-top: clamp(2.4rem, 5vw, 3.5rem); }
.menu-cat__head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1.6rem; border-bottom: 2px solid var(--ink); padding-bottom: .7rem; }
.menu-cat__head .k { font-family: var(--font-display); color: var(--accent); font-size: var(--step-2); line-height: 1; }
.menu-cat__head h2 { font-size: var(--step-2); }

.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem 2.6rem; }
.m-item { display: grid; grid-template-columns: 84px 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-bottom: 1px dashed var(--line); }
/* photos come from the PDF on white backgrounds with the dish off-centre,
   so contain (not cover) keeps each whole dish centred and consistently framed */
.m-item__photo { width: 84px; height: 84px; border-radius: 14px; object-fit: contain; background: #fff; padding: 3px; box-shadow: var(--shadow-soft); }
.m-item.no-photo { grid-template-columns: 1fr; }
.m-item__body { min-width: 0; }
.m-item__row { display: flex; justify-content: space-between; align-items: flex-start; gap: .8rem; }
.m-item__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .5rem; }
.m-item__code { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--accent); font-size: var(--step--1); letter-spacing: .05em; }
.m-item__name { font-weight: 700; font-size: var(--step-0); }
.m-item__tags { display: inline-flex; gap: .35rem; align-self: center; }
.tag-chip { font-size: .62rem; font-weight: 700; letter-spacing: .05em; padding: .12em .5em; border-radius: 999px; text-transform: uppercase; }
.tag-chip.spicy { background: #fbe7e2; color: var(--accent-deep); }
.tag-chip.vegan { background: #e6f0e2; color: #3f7a34; }
.m-item__allerg { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .4rem; }
.m-item__desc { color: var(--ink-soft); font-size: var(--step--1); margin-top: .45rem; }
.allg { width: 1.4rem; height: 1.4rem; border-radius: 50%; object-fit: cover; flex: 0 0 auto; vertical-align: middle; }
@media (max-width: 780px) { .menu-items { grid-template-columns: 1fr; gap: 0; } }

/* allergen legend */
.legend { display: flex; flex-wrap: wrap; gap: .7rem 1.3rem; margin-top: 1.4rem; }
.legend span { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--step--1); color: var(--ink-soft); }
.menu-note { color: var(--ink-soft); font-size: var(--step--1); margin-top: 1rem; }
