/* ============================================================================
   LECKER ASIA — port of leckerasia.com (Squarespace) to plain static HTML/CSS/JS
   ----------------------------------------------------------------------------
   REBUILD 3: carbon-copy pass. Every column width, font size, and header
   position below is a measured value pulled from the live site via CDP
   getBoundingClientRect on a 1425px-wide viewport (1440 minus scrollbar) —
   not eyeballed. See preview/ for the reference screenshots this was built
   against.

   FONT: the real site uses Adobe Fonts (Typekit) "motor" for nav/body/
   display and "granville" for the menu-board serif logotype. Both are
   commercial Adobe Fonts served through the client's own Typekit kit —
   we cannot legally self-host or hotlink either (it's tied to their
   subscription, not redistributable). Site now runs on Zilla Slab
   (self-hosted, open SIL license, Mozilla's font) per David's explicit
   request — a deliberate departure from "motor" toward a proportional
   slab serif rather than a monospace substitute; not intended as a closer
   visual match, just the font he asked for. Source Serif 4 still stands
   in for "granville" on the menu-board title only.

   MEASURED TYPE SCALE (desktop, 1425px viewport):
     display  67.84px   (hero tagline, address, email/phone)
     h2       47.104px  (Our Story section headings)
     lede     36.736px  (Our Story intro + body paragraphs)
     body     19.456px  (nav, default copy)

   MEASURED COLUMN WIDTHS:
     --w-narrow  664px   hero text/photo, address, email/phone
     --w-wide    1001px  intro paragraph, map, menu board
     --w-meta    551px   Our Story left column (meta/heading/date)
     full-bleed photos sit in the 43px page gutter (1339px content on 1425)

   MOTION CONTRACT (house rule — do not regress)
   - Every element is FULL-OPACITY and complete AT REST.
   - Reveal is pure polish: a self-terminating fade-up that only ENDS at
     opacity:1. No .in class -> stays visible. No JS -> visible.
     prefers-reduced-motion -> everything static and complete.
   ========================================================================== */

@font-face {
  font-family: 'Zilla Slab';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/zilla-slab-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/zilla-slab-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/zilla-slab-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal; font-weight: 200 900; font-display: swap;
  src: url(../fonts/source-serif-4-var.woff2) format('woff2');
}

:root {
  --bg:        #ffffff;
  --ink:       #000000;
  --ink-dim:   #555555;
  --ink-faint: #8a8a8a;
  --line:      #dddddd;
  --tint:      #fafafa;
  --shadow:    rgba(0,0,0,.10);

  --font:  "Zilla Slab", Georgia, "Times New Roman", serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --ease:  cubic-bezier(.2, .7, .2, 1);
  --gutter: clamp(20px, 3vw, 43px);
  --maxw:   1339px;   /* full-bleed content width (viewport minus 43px gutter each side) */

  /* measured type scale, expressed in rem off a 16px root */
  --fs-display: clamp(2.4rem, 3vw + 1.6rem, 4.24rem);   /* 67.84px at desktop */
  --fs-h2:      clamp(1.8rem, 2vw + 1.2rem, 2.944rem);  /* 47.104px */
  --fs-lede:    clamp(1.15rem, 1vw + 1rem, 2.296rem);   /* 36.736px */
  --fs-body:    1.216rem;                                /* 19.456px */

  /* measured column widths. --w-narrow is widened slightly from the measured
     664px: Inconsolata (the open substitute for the licensed "motor" font)
     renders ~7% wider per character at the same point size, which wrapped
     "Good food, good mood." to two lines at the literal measured width. */
  --w-narrow: 720px;
  --w-wide:   1001px;
  --w-meta:   551px;
}

/* ==========================================================================
   BASE
   ========================================================================== */
* { box-sizing: border-box; }
/* Reserve the scrollbar's width unconditionally. Without this, a page short
   enough to need no vertical scrollbar (reservations.html, at exactly one
   viewport tall) has ~15px more available width than every other, taller
   page — and since the header/content center against that available width,
   the whole header sits ~8px differently on that one page only. Keeps
   clientWidth identical across every page regardless of its own content
   height. (Progressive enhancement: unsupported browsers just get the old,
   inconsistent-but-not-broken behavior back.) */
html { scrollbar-gutter: stable; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }
a:hover { color: var(--ink-dim); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.col-narrow { max-width: var(--w-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.col-wide   { max-width: var(--w-wide);   margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 0; }

/* Available to screen readers and crawlers, but takes no visual space. Used
   for the Our Story page title, which the layout expresses as a lede rather
   than a visible heading. */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.section { padding: clamp(40px, 6vw, 72px) 0; }
.section--tint { background: var(--tint); }

/* was a hardcoded .95rem (15.2px) — smaller than the --fs-body (19.456px)
   text right next to it (the date, on Our Story's meta column), which is
   exactly the "inconsistent font" the eye catches. Matched to body size. */
.eyebrow { margin: 0 0 8px; font-size: var(--fs-body); color: var(--ink-dim); text-align: center; }
h1, h2 {
  margin: 0; font-family: var(--font); font-weight: 400;
  line-height: 1.1; color: var(--ink);
}
h3, h4 { font-family: var(--font); font-weight: 700; color: var(--ink); }

.section-head { text-align: center; }
/* margin-block only — NOT the margin shorthand. .lede is combined with
   .col-wide on the Our Story intro (`class="lede col-wide"`); .col-wide
   centers via margin-inline:auto, and a plain `margin:0` here would reset
   that back to 0, flattening the box to the left edge. Learned this one
   the hard way — verified via getBoundingClientRect (x was 0, not centered). */
/* Matches .story-copy exactly (font-size/line-height/color) — the real site's
   intro paragraph is the SAME H3-scale text as the rest of Our Story's body
   copy (measured 36.736px), not smaller body-size text. Was wrongly set to
   --fs-body + --ink-dim, which read as a different, lighter, smaller block. */
.lede { margin-block: 0; font-size: var(--fs-lede); line-height: 1.35; color: var(--ink); }

.textlink { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.textlink:hover { color: var(--ink-dim); }

/* ==========================================================================
   HEADER — measured against the live site: nav starts at the page gutter,
   wordmark is a true center (grid column, not flex auto-margin), Instagram
   is a 34x34 icon-only button, a (non-functional) language toggle sits to
   its right, matching what's actually there.
   ========================================================================== */
.site-header { position: relative; z-index: 50; background: var(--bg); }
/* The header must stop growing at the SAME width cap as the rest of the
   page (--maxw). It previously had max-width:none, so on a wide monitor the
   header stretched edge-to-edge while every content section below it
   stayed capped at --maxw — the header and the content disagreed on where
   center was, and the page never stopped filling the window the way the
   real (fixed-width) site does. */
.site-header__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 33px var(--gutter) 33px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px;
}
/* Header type runs bigger than body copy on purpose (see below), and
   nav/icons must read CLEARLY smaller than the centered "Lecker Asia"
   wordmark — the real page's ratio (measured wordmark box height vs nav
   font-size) is roughly 1.45x. The first pass over-corrected and brought
   nav up close to the wordmark size (1.18x), losing that hierarchy. */
.site-nav { display: flex; align-items: center; gap: 0; justify-self: start; font-size: 1.2rem; }
.navlink { font-size: 1em; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap; padding: 0 12px; }
.navlink:first-child { padding-left: 0; }
.navlink.is-active { text-decoration: underline; text-underline-offset: 3px; }
.navlink:hover { color: var(--ink-dim); }

.brand { justify-self: center; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.75rem; white-space: nowrap; }

.header-icons { display: flex; align-items: center; gap: 18px; justify-self: end; font-size: 1.2rem; }
.header-icons .ig { width: 24px; height: 24px; color: var(--ink); }
.header-icons a { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.header-icons a:hover { color: var(--ink-dim); }
.lang-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 1em; color: var(--ink); text-decoration: none; }
.lang-toggle:hover { color: var(--ink-dim); }
/* Scoped per-icon, NOT a blanket `.lang-toggle svg` rule — the real site's
   language control is a GLOBE glyph + "English" + a small chevron, and a
   single shared svg size would shrink the globe to chevron size. */
.lang-toggle .globe { width: 19px; height: 19px; flex: 0 0 auto; }
.lang-toggle .chev  { width: 9px;  height: 9px;  flex: 0 0 auto; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; justify-self: end;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); }

.mobile-nav { display: none; }
.mobile-nav.open {
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  padding: 24px var(--gutter) 40px; border-top: 1px solid var(--line);
}
.mobile-nav a { font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.mobile-nav a.is-active { text-decoration: underline; text-underline-offset: 3px; }
.mobile-nav .mobile-lang { display: flex; gap: 20px; margin-top: 8px; font-size: .95rem; color: var(--ink-dim); }

@media (max-width: 860px) {
  .site-nav, .header-icons { display: none; }
  .hamburger { display: flex; }
  .site-header__inner { grid-template-columns: auto 1fr auto; padding-block: 20px; }
  .brand { justify-self: start; }
}

/* ==========================================================================
   HERO (home) — image and headline share the SAME 664px column, centered,
   exactly like the source (not a two-column grid).
   ========================================================================== */
.hero { text-align: center; padding: clamp(24px, 4vw, 48px) var(--gutter) clamp(40px, 6vw, 64px); }
.hero__photo { max-width: var(--w-narrow); margin: 0 auto clamp(24px, 4vw, 40px); }
.hero__photo img { width: 100%; height: auto; }
.hero__name {
  margin: 0 auto; font-weight: 400; font-size: var(--fs-display); line-height: 1.12; color: var(--ink);
  max-width: var(--w-narrow);
}
.hero__links { margin: clamp(28px, 4vw, 44px) 0 0; font-size: var(--fs-body); }
.hero__links a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.hero__links a:hover { color: var(--ink-dim); }
.hero__links .sep { margin: 0 10px; color: var(--ink-faint); }
.hero__contact { margin: 14px 0 0; font-size: var(--fs-body); }
.hero__contact a { color: var(--ink); text-decoration: none; }
.hero__contact a:hover { text-decoration: underline; }

/* ==========================================================================
   SITE LINKS — repeated "Menu · Reservations · Location + contact" footer.
   ========================================================================== */
.site-links { text-align: center; padding: clamp(40px, 6vw, 64px) var(--gutter); }
.site-links__nav { font-size: var(--fs-body); }
.site-links__nav a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.site-links__nav a:hover { color: var(--ink-dim); }
.site-links__nav .sep { margin: 0 10px; color: var(--ink-faint); }
.site-links__contact { margin: 14px 0 0; font-size: var(--fs-body); }
.site-links__contact a { color: var(--ink); text-decoration: none; }
.site-links__contact a:hover { text-decoration: underline; }
.site-links__hours { margin: 8px 0 0; font-size: .85rem; color: var(--ink-faint); }

/* ==========================================================================
   VALUE TRIO (disclosed addition beyond 1:1 — kept minimal/plain)
   ========================================================================== */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.vitem { padding-top: 16px; border-top: 1px solid var(--ink); }
.vitem__no { font-weight: 700; font-size: .95rem; color: var(--ink-dim); }
.vitem h3 { margin: 10px 0 8px; font-size: 1.05rem; line-height: 1.25; }
.vitem p { margin: 0; color: var(--ink-dim); font-size: .95rem; }

/* ==========================================================================
   OUR STORY — carbon-copy grid: full-bleed photo, then a 2-column row
   (551px meta/heading/date column, centered text) + (remaining-width
   body paragraph, left-aligned). Motion is a plain scroll-reveal fade-up
   per block (same .reveal mechanism used elsewhere) — NOT a pinned/scrub
   crop, because that mechanism can't coexist with full-bleed photos at
   their real aspect ratio without cropping them, which is what the source
   never does.
   ========================================================================== */
.story-photo-full { width: 100%; height: auto; }
.story-row {
  display: grid; grid-template-columns: var(--w-meta) 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-block: clamp(32px, 5vw, 56px);
}
.story-meta { text-align: center; }
.story-meta .eyebrow { margin-bottom: 0; }
.story-meta h2 { font-size: var(--fs-h2); margin: 8px 0; }
.story-meta .date { font-size: var(--fs-body); color: var(--ink-dim); }
.story-copy { font-size: var(--fs-lede); line-height: 1.35; color: var(--ink); }
.story-copy b { font-weight: 700; }

@media (max-width: 860px) {
  .story-row { grid-template-columns: 1fr; gap: 20px; }
}

.story-teaser { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.story-teaser__fig img { width: 100%; height: auto; }
@media (max-width: 780px) {
  .story-teaser { grid-template-columns: 1fr; gap: 20px; }
  .story-teaser__fig { max-width: 340px; margin: 0 auto; }
}

/* ==========================================================================
   MENU — bordered board matches the real page's ~1001px column width.
   ========================================================================== */
.menu-board { max-width: var(--w-wide); margin-inline: auto; border: 1px solid var(--ink); }
.menu-board__head { text-align: center; padding: clamp(28px, 5vw, 48px) 20px clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--ink); }
.menu-board__title { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: .12em; font-size: clamp(1.8rem, 5vw, 3.2rem); }
.menu-board__sub { margin: 6px 0 0; font-family: var(--serif); font-style: italic; font-size: clamp(.95rem, 1.6vw, 1.2rem); color: var(--ink-dim); }

.menu-cols { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 0; }
.menu-railcell { display: flex; align-items: center; justify-content: center; padding: 0 6px; border-right: 1px solid var(--line); }
.menu-rail { writing-mode: vertical-rl; transform: rotate(180deg); font-size: .78rem; letter-spacing: .18em; color: var(--ink-dim); white-space: nowrap; }
.menu-colbody { padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(16px, 2.4vw, 24px); }
.menu-colbody + .menu-railcell { border-left: 1px solid var(--line); border-right: 0; }

.menu-cat { margin-bottom: clamp(24px, 3.5vw, 36px); }
.menu-cat:last-child { margin-bottom: 0; }
.menu-item { margin-bottom: 14px; }
.menu-item:last-child { margin-bottom: 0; }
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name { font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.menu-item__spacer { flex: 1; }
.menu-item__price { font-weight: 700; font-size: .95rem; white-space: nowrap; }
.menu-item__desc { margin: 3px 0 0; font-size: .85rem; color: var(--ink-dim); line-height: 1.5; }
.menu-item__tags { display: inline-flex; gap: 4px; }
.tag { font-size: .62rem; font-weight: 700; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 50%; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; }

.menu-note { margin: 0; padding: 16px 20px; border-top: 1px solid var(--ink); text-align: center; font-size: .82rem; color: var(--ink-dim); line-height: 1.8; }

@media (max-width: 780px) {
  .menu-cols { grid-template-columns: 1fr; }
  .menu-railcell { display: none; }
  .menu-colbody { border-top: 1px solid var(--line); }
  .menu-colbody:first-child { border-top: 0; }
}

/* ==========================================================================
   RESERVATIONS — matches measured spacing: email + phone H1s stacked
   tightly (~110px apart), body-size paragraph below, same 664px column.
   ========================================================================== */
.res { text-align: center; }
/* Keep the address and number each on ONE line. `word-break: break-word`
   used to split the email mid-domain on phones ("team@leckerasia.co / m").
   Measured cause: at 390px the string renders 361px wide at the 38.4px
   display size, with only 350px available. Fix is to cap the FONT SIZE to
   what fits rather than break the word — this string is ~9.41x its font-size
   in Zilla Slab, so 8.8vw keeps ~10% headroom (enough that the fallback
   serif also fits if the webfont ever fails to load). Above ~426px the
   normal display size is the smaller of the two and wins, so desktop is
   untouched. Both rules share the cap so the two lines stay the same size. */
.res__email,
.res__phone { font-size: min(var(--fs-display), 8.8vw); white-space: nowrap; }
.res__email { margin: 0; font-weight: 400; line-height: 1.15; }
.res__phone { margin: 8px 0 0; font-weight: 400; line-height: 1.15; }
.res__phone a, .res__email a { color: var(--ink); text-decoration: none; }
.res__phone a:hover, .res__email a:hover { text-decoration: underline; }
.res__note { margin: clamp(20px, 3vw, 32px) auto 0; font-size: var(--fs-body); color: var(--ink-dim); }
/* ==========================================================================
   RESERVATION INTAKE FORM (a deliberate addition beyond the 1:1 port)
   Styled to disappear into the site's own language: monochrome, hairline
   borders, Zilla Slab, no accent colour, no rounded pill buttons.
   ========================================================================== */
.resform-section { padding-top: 0; border-top: 1px solid var(--line); margin-top: clamp(32px, 5vw, 56px); }
.resform-section { padding-top: clamp(36px, 5vw, 64px); }
.resform__heading { text-align: center; font-size: var(--fs-h2); }
.resform__intro {
  margin: 14px auto clamp(28px, 4vw, 40px); text-align: center;
  font-size: var(--fs-body); color: var(--ink-dim); max-width: 34em;
}

.resform__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resform__grid--2 { grid-template-columns: repeat(2, 1fr); }

.field { margin: 0 0 18px; display: flex; flex-direction: column; }
.field label { font-size: .95rem; margin-bottom: 6px; color: var(--ink); }
.field__opt { color: var(--ink-faint); }
.field__hint { margin-top: 6px; font-size: .8rem; color: var(--ink-faint); line-height: 1.4; }

.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1.05rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--ink);
  padding: 12px 13px; min-height: 50px; width: 100%; border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.5; }
.field select { background-image: none; cursor: pointer; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 2px;
}
.field input:disabled, .field select:disabled { color: var(--ink-faint); border-color: var(--line); cursor: not-allowed; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
/* invalid state is a thicker rule, not a colour — this site has no accent */
.field .is-invalid, .field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-width: 2px; box-shadow: inset 0 -2px 0 var(--ink);
}

/* honeypot: kept in the layout flow but visually and audibly gone */
.resform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.resform__submit {
  font-family: var(--font); font-size: 1.1rem; font-weight: 600; letter-spacing: .01em;
  color: var(--bg); background: var(--ink); border: 1px solid var(--ink);
  min-height: 56px; padding: 15px 30px; width: 100%; cursor: pointer; border-radius: 0;
  transition: opacity .15s var(--ease);
}
.resform__submit:hover { opacity: .82; }
.resform__submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.resform__submit:disabled { opacity: .5; cursor: progress; }

.resform__status { font-size: .95rem; line-height: 1.6; }
.resform__status:empty { display: none; }
.resform__status.is-ok,
.resform__status.is-error,
.resform__status.is-notice { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--ink); }
.resform__status.is-error { border-width: 2px; }
.resform__status.is-notice { border-color: var(--line); }
.resform__status ul { margin: 8px 0 0; padding-left: 20px; }
.resform__status li { margin-bottom: 4px; }

/* One-tap re-pick buttons offered on a 409 (room said no, here are the
   nearest open times either side). Same square, monochrome language as the
   submit button, just smaller and outline instead of filled. */
.alt-times { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.alt-time-btn {
  font-family: var(--font); font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--ink); border-radius: 0;
  padding: 10px 16px; min-height: 44px; cursor: pointer;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.alt-time-btn:hover { background: var(--ink); color: var(--bg); }
.alt-time-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Unavailable slots stay in the list (a full evening should look full) —
   disabled is the browser's own greyed-out treatment; this just nudges the
   label color where the browser lets a stylesheet touch it at all. */
.field select option:disabled { color: var(--ink-faint); }

.resform__fine { margin: 16px 0 0; font-size: .8rem; color: var(--ink-faint); text-align: center; }

@media (max-width: 700px) {
  .resform__grid, .resform__grid--2 { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   LOCATION — map is a constrained 1001px column (NOT full-bleed), matching
   the measured iframe box exactly. Address uses the same display style as
   the hero tagline.
   ========================================================================== */
.map-frame { position: relative; aspect-ratio: 1001 / 479; width: 100%; background: var(--tint); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.loc-address { text-align: center; padding: clamp(40px, 6vw, 64px) var(--gutter) clamp(16px, 3vw, 32px); }
.loc-address h1 { font-size: var(--fs-display); max-width: var(--w-narrow); margin-inline: auto; }
.hours-wrap { max-width: 26rem; margin: 0 auto; padding: 0 var(--gutter) clamp(32px, 5vw, 48px); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-table td:last-child { text-align: right; }
.hours-note { text-align: center; font-size: .8rem; color: var(--ink-faint); padding-bottom: clamp(24px, 4vw, 40px); }

/* ==========================================================================
   MICRO-MOTION
   ========================================================================== */
.navlink, .textlink, a { transition: color .15s var(--ease); }

/* ==========================================================================
   MOTION — reveal is polish only. Resting state is always fully visible.
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: reveal-in .6s var(--ease) both; }
  @keyframes reveal-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

  .trio .vitem.in:nth-child(2) { animation-delay: .08s; }
  .trio .vitem.in:nth-child(3) { animation-delay: .16s; }

  .hero__photo, .hero__name, .hero__links, .hero__contact { animation: hero-rise .7s var(--ease) both; }
  .hero__photo   { animation-delay: 0s; }
  .hero__name    { animation-delay: .08s; }
  .hero__links   { animation-delay: .18s; }
  .hero__contact { animation-delay: .24s; }
  @keyframes hero-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 780px) {
  .trio { grid-template-columns: 1fr; gap: 0; }
  .vitem { border-top: none; padding-top: 0; margin-top: 24px; }
  .vitem:first-child { margin-top: 0; }
  .vitem { border-top: 1px solid var(--ink); padding-top: 18px; margin-top: 26px; }
}

/* ==========================================================================
   STATUS BOARD (status.html) — private partner-facing page, shared by URL
   only. English only (2026-07-28: dropped the earlier bilingual DE/EN
   pattern per David — the owner's scope recordings were fluent English, so
   one line per item, not two). No new colour, no new type scale — reuses
   --fs-display/--fs-h2/--fs-body and the site's existing card language
   (hairline top border, like .vitem) so this reads as part of the same
   site, not a bolted-on admin tool.
   ========================================================================== */
.status-hero { text-align: center; }
.status-title { font-family: var(--font); font-weight: 400; font-size: var(--fs-display); line-height: 1.12; margin: 0; }
.status-lede { margin: clamp(20px, 3vw, 28px) 0 0; font-size: var(--fs-body); line-height: 1.6; color: var(--ink); }

.status-h2 { font-size: var(--fs-h2); font-weight: 400; margin: 0 0 clamp(24px, 4vw, 40px); text-align: center; }

.status-intro { text-align: center; margin: -12px auto clamp(28px, 4vw, 40px); font-size: var(--fs-body); color: var(--ink-dim); max-width: 34em; }

/* ---- update log: newest first, dense list, each entry a bordered row --- */
.log-list { list-style: none; margin: 0; padding: 0; max-width: var(--w-wide); margin-inline: auto; }
.log-item { padding: 18px 0; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 8.5em 1fr; gap: 4px 20px; align-items: baseline; }
.log-item:last-child { padding-bottom: 0; }
.log-date { font-size: .85rem; font-weight: 700; color: var(--ink-dim); white-space: nowrap; }
.log-en { grid-column: 2; margin: 0; font-size: 1rem; line-height: 1.5; }

@media (max-width: 600px) {
  .log-item { grid-template-columns: 1fr; }
  .log-date { grid-column: 1; }
  .log-en { grid-column: 1; }
}

/* ---- roadmap: a table, one row per thing the owner actually asked for
   in his scope recordings, mapped 1:1 to a status. Plain <table> — no JS,
   readable with CSS off, scrolls horizontally on its own on narrow screens
   rather than letting the page itself overflow. -------------------------- */
.road-table-wrap { max-width: var(--w-wide); margin-inline: auto; overflow-x: auto; }
.road-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.road-table th, .road-table td { text-align: left; padding: 12px 14px; vertical-align: top; }
.road-table thead th { border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-dim); }
.road-table tbody tr:not(.road-table__group) { border-bottom: 1px solid var(--line); }
.road-table tbody tr:not(.road-table__group) td:first-child { max-width: 22em; }
.road-table tbody tr:not(.road-table__group) td:last-child { max-width: 20em; color: var(--ink-dim); }
.road-table__group th { padding: 20px 14px 8px; border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); }
.road-table__group:first-child th { padding-top: 0; }
.road-table__note { display: block; margin-top: 6px; font-size: .84em; line-height: 1.5; color: var(--ink-dim); }

/* Status chips: word + treatment, never colour alone (this site has no
   colour at all, so the differentiator is fill/border style + the word
   itself, which also makes it print-safe on a b/w printer). */
.chip { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 4px 10px; line-height: 1.4; border: 1px solid var(--ink); white-space: nowrap; }
.chip--done { background: var(--ink); color: var(--bg); }
.chip--progress { background: var(--bg); color: var(--ink); border-style: solid; border-width: 2px; }
.chip--next { background: var(--bg); color: var(--ink); border-style: dashed; }
.chip--later { background: var(--tint); color: var(--ink-dim); border-color: var(--line); }
.chip--not { background: var(--bg); color: var(--ink-faint); border-style: dotted; text-decoration: line-through; text-decoration-color: var(--ink-faint); }

@media (max-width: 640px) {
  .road-table { min-width: 46em; }
}

/* ---- open-questions form: per-question card, inline send + confirm ---- */
.qlist { margin-top: clamp(20px, 3vw, 28px); }
.qcard { padding: 20px 0; border-top: 1px solid var(--line); }
.qcard:first-child { border-top: 1px solid var(--ink); }
.qcard__label { margin: 0 0 12px; font-size: 1rem; line-height: 1.5; color: var(--ink); }
.qcard__input {
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--ink);
  padding: 12px 13px; width: 100%; border-radius: 0; resize: vertical;
  line-height: 1.5; appearance: none; -webkit-appearance: none;
}
.qcard__input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.qcard__input:disabled { color: var(--ink-dim); border-color: var(--line); background: var(--tint); }
.qcard__row { display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.qcard__submit {
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  color: var(--bg); background: var(--ink); border: 1px solid var(--ink);
  min-height: 44px; padding: 10px 22px; cursor: pointer; border-radius: 0;
  transition: opacity .15s var(--ease);
}
.qcard__submit:hover { opacity: .82; }
.qcard__submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.qcard__submit:disabled { opacity: .5; cursor: not-allowed; }
.qcard__status { font-size: .88rem; line-height: 1.5; }
.qcard__status.is-ok { color: var(--ink); font-weight: 600; }
.qcard__status.is-error { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---- answered qcards: same hairline-rule card, collapsed by default via
   native <details>, greyed to read as done-and-out-of-the-way. Reuses the
   existing .chip (chip--done, relabelled "Answered") and .disclosure__chev
   markup so no new visual language or JS dependency is introduced. -------- */
.qcard--answered { list-style: none; cursor: default; background: var(--tint); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.qcard--answered > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.qcard--answered > summary::-webkit-details-marker { display: none; }
.qcard--answered > summary::marker { content: ''; }
.qcard--answered > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.qcard--answered .qcard__label { color: var(--ink-dim); flex: 1 1 auto; }
.qcard--answered .qcard__chev { width: 12px; height: 12px; flex: 0 0 auto; color: var(--ink-dim); transition: transform .2s var(--ease); }
.qcard--answered[open] > summary .qcard__chev { transform: rotate(180deg); }
.qcard--answered .qcard__body { padding-top: 14px; }
.qcard__answer { margin: 0 0 12px; font-size: .95rem; line-height: 1.6; color: var(--ink-dim); }
.qcard__answer strong { color: var(--ink); }
.qcard__edit-btn {
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: var(--ink); background: var(--bg); border: 1px solid var(--ink);
  min-height: 40px; padding: 8px 18px; cursor: pointer; border-radius: 0;
  transition: opacity .15s var(--ease);
}
.qcard__edit-btn:hover { opacity: .82; }
.qcard__edit-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.qcard__edit-wrap { margin-top: 14px; }
@media (prefers-reduced-motion: reduce) {
  .qcard--answered .qcard__chev { transition: none; }
}

.qform-noscript { max-width: var(--w-narrow); margin-inline: auto; text-align: center; }
.qform-noscript__list { list-style: none; margin: 20px 0 0; padding: 0; text-align: left; }
.qform-noscript__list li { padding: 12px 0; border-top: 1px solid var(--line); font-size: .95rem; line-height: 1.5; }

/* ---- build cost / running costs — a quiet section at the very bottom,
   figures set in tabular-nums so the $ column lines up. Same table
   language as .road-table (hairline rules, no colour), own scroll
   container on narrow screens. -------------------------------------- */
.status-cost { border-top: 1px solid var(--line); }
.cost-block { max-width: var(--w-narrow); margin: 0 auto clamp(28px, 4vw, 40px); text-align: center; }
.cost-line { margin: 0; font-size: var(--fs-body); }
.cost-line--note { margin-top: 4px; font-size: .88rem; color: var(--ink-dim); }
.cost-num { font-variant-numeric: tabular-nums; }

.cost-table-wrap { max-width: var(--w-narrow); margin-inline: auto; overflow-x: auto; }
.cost-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.cost-table__caption { text-align: left; margin-bottom: 10px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-dim); }
.cost-table th, .cost-table td { text-align: left; padding: 10px 4px; }
.cost-table td:last-child, .cost-table th:last-child { text-align: right; }
.cost-table thead th { border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-dim); }
.cost-table tbody tr { border-bottom: 1px solid var(--line); }
.cost-table__total td { border-top: 1px solid var(--ink); padding-top: 12px; font-weight: 700; }
.cost-foot { max-width: var(--w-narrow); margin: 16px auto 0; font-size: .8rem; color: var(--ink-faint); text-align: center; }

@media (max-width: 420px) {
  .cost-table { min-width: 24em; }
}

/* ---- comparable-systems table — same quiet table language, no row gets
   extra visual weight (including "This system": no highlight, no border
   colour, no bold) so the figures do the arguing, not the styling. ------ */
.compare-table-wrap { max-width: var(--w-wide); margin-inline: auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.compare-table th, .compare-table td { text-align: left; padding: 12px 14px; vertical-align: top; }
.compare-table thead th { border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-dim); }
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table tbody td:first-child { font-weight: 600; max-width: 14em; }
.compare-table tbody td:nth-child(2) { color: var(--ink-dim); max-width: 18em; }
.compare-table tbody td:last-child { max-width: 16em; }

@media (max-width: 700px) {
  .compare-table { min-width: 46em; }
}

/* ---- disclosure (details/summary) — native, no-JS-friendly collapsible
   used for "Earlier updates" and every section body below the open
   questions (roadmap, build costs, market comparison, big picture). Summary
   is a bordered row carrying the useful stat/snapshot, so a closed section
   still tells you something before you tap it. Chevron flips on [open];
   details/summary handles keyboard + screen reader state natively. -------- */
.disclosure { margin-top: clamp(16px, 2.5vw, 20px); }
.disclosure > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 48px; padding: 14px 18px;
  font-family: var(--font); font-size: .95rem; font-weight: 600; color: var(--ink);
  border: 1px solid var(--ink); background: var(--bg);
  transition: background-color .15s var(--ease);
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::marker { content: ''; }
.disclosure > summary:hover { background: var(--tint); }
.disclosure > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.disclosure__label { line-height: 1.4; }
.disclosure__chev { width: 12px; height: 12px; flex: 0 0 auto; color: var(--ink); transition: transform .2s var(--ease); }
.disclosure[open] > summary .disclosure__chev { transform: rotate(180deg); }
.disclosure__body { padding-top: clamp(20px, 3vw, 28px); }
@media (prefers-reduced-motion: reduce) {
  .disclosure__chev { transition: none; }
}

/* ---- big-picture Q&A — plain question/answer cards, same hairline-rule
   card language as .qcard, no colour. -------------------------------- */
.bigq-list { margin-top: 0; }
.bigq { padding: 18px 0; border-top: 1px solid var(--line); }
.bigq:first-child { border-top: 1px solid var(--ink); }
.bigq__q { margin: 0 0 8px; font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--ink); }
.bigq__a { margin: 0; font-size: .92rem; line-height: 1.65; color: var(--ink-dim); }

/* ---- voice notes — record button, elapsed timer, preview player, file
   fallback. Same monochrome/hairline language as the rest of the status
   board; the record button is the primary action so it gets a larger tap
   target than the per-question Send buttons. -------------------------- */
.voice-card { margin-top: clamp(16px, 2.5vw, 20px); }
.voice-record-row { display: flex; align-items: center; gap: 16px; }
.voice-record-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--ink);
  background: var(--bg); border: 1px solid var(--ink);
  min-height: 56px; padding: 12px 24px; cursor: pointer; border-radius: 0;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.voice-record-btn:hover { background: var(--tint); }
.voice-record-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.voice-record-btn__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); flex: 0 0 auto; }
.voice-record-btn.is-recording { background: var(--ink); color: var(--bg); }
.voice-record-btn.is-recording .voice-record-btn__dot { background: var(--bg); animation: voice-pulse 1.1s ease-in-out infinite; }
@keyframes voice-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) {
  .voice-record-btn.is-recording .voice-record-btn__dot { animation: none; }
}
.voice-record-btn[hidden] { display: none; }
.voice-timer { font-variant-numeric: tabular-nums; font-size: .95rem; color: var(--ink-dim); min-width: 3em; }

.voice-preview { margin-top: 16px; }
.voice-preview audio { width: 100%; height: 40px; }

.voice-or { margin: 18px 0 8px; font-size: .85rem; color: var(--ink-faint); }
.voice-file {
  font-family: var(--font); font-size: .9rem; color: var(--ink);
  width: 100%; padding: 6px 0;
}

.voice-author { margin-top: 18px; max-width: 22em; }

@media (max-width: 480px) {
  .voice-record-row { flex-wrap: wrap; }
}

/* ==========================================================================
   GROWTH CAMPAIGN section (status.html) — numbers and categories only,
   never a prospect name. See CLAUDE-facing note in status.html itself.
   ========================================================================== */
.growth-intro { max-width: 34em; margin: 0 auto clamp(24px, 3vw, 32px); font-size: var(--fs-body); line-height: 1.6; text-align: center; }
.growth-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; max-width: var(--w-wide); margin: 0 auto clamp(28px, 4vw, 36px); text-align: center; }
.growth-stat__num { display: block; font-family: var(--font); font-size: 2.2rem; line-height: 1; }
.growth-stat__label { display: block; margin-top: 6px; font-size: .85rem; color: var(--ink-dim); max-width: 12em; }
.growth-note { max-width: 34em; margin: 0 auto clamp(20px, 3vw, 28px); font-size: .92rem; line-height: 1.6; color: var(--ink-dim); text-align: center; }
.growth-links { max-width: 34em; margin: 0 auto; text-align: center; }
.growth-links a { display: inline-block; margin: 0 12px 12px; font-size: var(--fs-body); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   HOSTED PITCH PAGES (pitch-en.html / pitch-de.html) — leckerAI one-pagers,
   handed to prospect restaurants. Minimal chrome: brand mark only, no site
   nav (Lecker Asia's Home/Menu/Reservations links don't apply here), same
   type scale and tokens as the rest of the site so it reads as one system.
   noindexed, no third-party requests, no internal (dashboard/status) links.
   ========================================================================== */
.pitch-header { padding: clamp(20px, 3vw, 28px) var(--gutter); text-align: center; }
.pitch-brand { font-family: var(--font); font-size: 1.3rem; }
.pitch-title { font-size: var(--fs-h2); font-weight: 400; line-height: 1.2; margin: 0; }
.pitch-lede { margin: clamp(16px, 2.5vw, 22px) 0 0; font-size: var(--fs-body); line-height: 1.6; }
.pitch-list { list-style: none; margin: 0; padding: 0; max-width: var(--w-wide); margin-inline: auto; }
.pitch-list li { padding: 16px 0; border-top: 1px solid var(--line); font-size: var(--fs-body); line-height: 1.6; }
.pitch-list li:first-child { border-top: 1px solid var(--ink); }
.pitch-body { font-size: var(--fs-body); line-height: 1.6; text-align: center; max-width: 34em; margin: 0 auto; }
.pitch-footer { text-align: center; padding: clamp(40px, 6vw, 64px) var(--gutter); }
.pitch-footer__contact { margin: 0; font-size: var(--fs-body); }
.pitch-footer__note { margin: 10px 0 0; font-size: .8rem; color: var(--ink-faint); }
