    /* ─── reset & base ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
      scrollbar-gutter: stable;
      overflow-x: hidden;
      max-width: 100%;
      overscroll-behavior-x: none;
      touch-action: pan-y;
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      font-size: var(--text-base);
      line-height: var(--leading-body);
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100%;
      overscroll-behavior-x: none;
      touch-action: pan-y;
    }
    html.modal-locked,
    body.modal-locked {
      position: fixed !important;
      width: 100% !important;
      height: 100% !important;
      overflow: hidden !important;
      overscroll-behavior: none !important;
      touch-action: none !important;
    }
    img, svg {
      display: block;
      max-width: 100%;
      -webkit-user-drag: none;
      -webkit-touch-callout: none;
      user-select: none;
    }
    [hidden] { display: none !important; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; }
    p { margin: 0; text-wrap: pretty; }
    h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
    .icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

    /* ─── layout primitives ─────────────────────────────────────────── */
    .container {
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: var(--gutter);
    }
    .section { padding-block: clamp(48px, 7vw, var(--section-y-desktop)); }
    .section + .section { border-top: 1px solid var(--border-soft); }
    .stack { display: flex; flex-direction: column; }
    .stack > * + * { margin-top: var(--space-4); }
    .row { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
    .row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
    .grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); align-items: start; }
    .grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); align-items: start; }
    @media (max-width: 920px) {
      .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
      .container { padding-inline: var(--container-gutter-tablet); }
      .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
    }
    @media (max-width: 639px) { .container { padding-inline: var(--container-gutter-phone); } }
    @media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

    /* ─── type ──────────────────────────────────────────────────────── */
    .h1, h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700; line-height: 1.04; letter-spacing: var(--tracking-display); }
    .h2, h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; line-height: 1.1; letter-spacing: var(--tracking-display); }
    .h3, h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 700; line-height: 1.3; }
    .lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--fg-2); max-width: 62ch; }
    .eyebrow {
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--meta);
      margin: 0 0 var(--space-4);
    }
    .meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
    .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

    /* ─── onyx blinds text reveal ───────────────────────────────────── */
    .blinds-text {
      position: relative;
    }
    .blinds-text-wrapper {
      display: inline-flex;
      flex-wrap: wrap;
      vertical-align: top;
      max-width: 100%;
    }
    .blinds-word {
      display: inline-flex;
      white-space: nowrap;
      margin-right: 0.28em;
      margin-bottom: 0.04em;
    }
    .char-clip {
      overflow: hidden;
      contain: paint;
      display: inline-block;
      position: relative;
      line-height: 1.15;
      vertical-align: baseline;
    }
    .char-clip span {
      display: inline-block;
      white-space: pre;
      opacity: 0;
      transform: translate(-102%);
      will-change: transform, opacity;
    }
    .blinds-text.visible .char-clip span {
      opacity: 1;
      transform: translate(0);
      transition: opacity 1.45s ease, transform 2s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--i);
    }
    @media (prefers-reduced-motion: reduce) {
      .char-clip span {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ─── chrome: topbar + header ───────────────────────────────────── */
    .topbar { background: var(--fg); color: var(--bg); font-size: var(--text-xs); }
    .topbar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-block: 8px; flex-wrap: wrap; }
    .topbar span { opacity: 0.82; }
    .topbar .topbar-links { display: flex; gap: var(--space-4); }
    .site-header {
      position: sticky; top: 0; z-index: 80;
      background: color-mix(in oklab, var(--bg) 94%, transparent);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .site-header .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: 14px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; }
    .brand .brand-mark {
      width: 33px; height: 33px; flex: 0 0 33px;
      max-width: 33px; max-height: 33px;
      border-radius: 7px; display: block; overflow: hidden; line-height: 0;
    }
    .brand .brand-mark img {
      width: 33px; height: 33px; max-width: 33px; max-height: 33px;
      object-fit: contain; display: block;
    }
    .brand .brand-text { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
    .brand .brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: var(--tracking-display); line-height: 1; }
    .brand .brand-sub { font-size: 10px; line-height: 1.1; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
    .site-header .brand .brand-sub { color: #007055; font-weight: 600; }
    .site-header .header-actions .btn-ghost { color: #007055; font-weight: 600; }
    .site-header .header-actions .btn-ghost:hover { color: color-mix(in oklab, #007055, black 14%); }
    .nav { display: flex; gap: var(--space-6); align-items: center; }
    .nav a { font-size: var(--text-sm); font-weight: 500; color: var(--muted); padding-block: 4px; border-bottom: 2px solid transparent; transition: color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard); }
    .nav a:hover { color: var(--fg); }
    .nav a.active { color: var(--fg); border-bottom-color: var(--accent); }
    .header-actions { display: flex; align-items: center; gap: var(--space-3); }
    .icon-btn { width: 44px; height: 44px; min-height: 44px; padding: 0; flex: 0 0 auto; }
    .cart-btn { position: relative; overflow: visible; display: grid; place-items: center; border-radius: var(--radius-sm); background: transparent; border: 0; box-shadow: none; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .cart-btn:hover { background: var(--surface-warm); }
    .cart-btn .icon { width: 20px; height: 20px; }
    .cart-icon-img { width: 26px; height: auto; display: block; }
    .cart-badge {
      position: absolute; top: -4px; right: -2px; min-width: 20px; height: 20px; padding: 0 5px;
      display: grid; place-items: center; border-radius: var(--radius-pill);
      background: #008a6a; color: #ffffff; border: 2px solid var(--bg);
      font-family: var(--font-mono); font-size: 11px; font-weight: 700; line-height: 1;
      pointer-events: none;
    }
    .cart-badge.bump {
      animation: badgeBump 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .cart-btn.bump-btn .cart-icon-img {
      animation: cartIconPop 320ms var(--ease-standard);
    }
    @keyframes badgeBump {
      0% { transform: scale(1); }
      45% { transform: scale(1.42); }
      75% { transform: scale(0.94); }
      100% { transform: scale(1); }
    }
    @keyframes cartIconPop {
      0% { transform: scale(1); }
      50% { transform: scale(1.14); }
      100% { transform: scale(1); }
    }
    .btn.header-hamburger {
      display: none;
      place-items: center;
      background: transparent;
      border: 0;
      box-shadow: none;
      border-radius: var(--radius-sm);
    }
    .btn.header-hamburger:hover { background: var(--surface-warm); color: var(--fg); border-color: transparent; }
    .header-hamburger .burger {
      display: flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 18px; height: 14px;
    }
    .header-hamburger .burger span {
      display: block; height: 2px; width: 100%; border-radius: 1px;
      background: currentColor;
    }
    @media (max-width: 1023px) {
      .nav { display: none; }
      .nav.open {
        display: flex; flex-direction: column; align-items: stretch; gap: var(--space-2);
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--surface); border-bottom: 1px solid var(--border);
        box-shadow: var(--elev-raised);
        padding: var(--space-4) var(--container-gutter-tablet) var(--space-5);
      }
      .nav.open a { font-size: var(--text-base); padding-block: 10px; border-bottom: 1px solid var(--border-soft); }
      .nav.open a:last-child { border-bottom: 0; }
      .nav.open a.active { color: var(--accent); }
      .btn.header-hamburger { display: inline-grid; }
    }
    @media (max-width: 560px) {
      .site-header .container { gap: var(--space-3); }
      .brand .brand-sub { display: none; }
      .brand .brand-mark,
      .brand .brand-mark img { width: 26px; height: 26px; max-width: 26px; max-height: 26px; flex-basis: 26px; }
      .header-actions .btn-ghost { display: none; }
    }

    /* ─── buttons ───────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 44px; padding: 0 var(--space-5);
      border-radius: var(--radius-md); border: 1px solid transparent;
      font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.01em;
      transition: transform var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
    }
    .btn:active { transform: translateY(1px); }
    .btn:disabled, .btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
    .btn-primary { background: var(--accent); color: var(--accent-on); }
    .btn-primary:hover { background: var(--accent-hover); }
    .btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--border); }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
    .btn-buy { background: var(--accent); color: var(--accent-on); border-color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
    .btn-buy:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-on); }
    .btn-buy:active { background: var(--accent-active); }
    .btn-ghost { background: transparent; color: var(--fg); border-color: transparent; padding-inline: var(--space-2); font-weight: 400; }
    .btn-ghost:hover { color: var(--accent); }
    .btn-sm { min-height: 36px; padding: 0 var(--space-4); font-size: var(--text-xs); }
    .btn-block { width: 100%; }
    .btn-arrow::after { content: "\2192"; }
    .btn-arrow:hover::after { margin-left: 2px; }

    /* ─── cards / surfaces ──────────────────────────────────────────── */
    .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
    .card-flat { background: transparent; border: 0; padding: 0; }
    .card-rule { background: transparent; border: 0; border-top: 1px solid var(--fg); padding: var(--space-5) 0 0; border-radius: 0; }

    /* ─── feature cell ──────────────────────────────────────────────── */
    .feature .feature-mark {
      width: 40px; height: 40px; display: grid; place-items: center;
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      color: var(--fg); background: var(--surface); margin-bottom: var(--space-4);
    }
    .feature h3 { margin-bottom: 6px; }
    .feature p { color: var(--muted); font-size: var(--text-sm); }

    /* ─── stats ─────────────────────────────────────────────────────── */
    .stat .stat-num { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 700; }
    .stat .stat-label { color: var(--muted); font-size: var(--text-sm); margin-top: 8px; max-width: 26ch; }
    .stat .stat-unit { font-size: 0.5em; opacity: 0.7; margin-left: 2px; }
    .stats-centered { text-align: center; }
    .stats-centered .stat .stat-label { margin-left: auto; margin-right: auto; }
    #homeStats .stat {
      cursor: pointer;
      user-select: none;
    }
    #homeStats .stat .stat-num {
      transition: color var(--motion-fast) var(--ease-standard);
    }
    #homeStats .stat:hover .stat-num,
    #homeStats .stat:focus-visible .stat-num {
      color: var(--accent);
    }

    /* ─── pill / tag ────────────────────────────────────────────────── */
    .pill {
      display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
      background: var(--surface-warm); color: var(--fg-2); border-radius: var(--radius-pill);
      font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    }
    .tag { display: inline-flex; align-items: center; padding: 4px 10px; background: transparent; color: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: var(--text-xs); }
    .menu-card-body > .tag, .menu-card-body > .pill, .product-info > .pill { align-self: flex-start; }

    /* ─── form field ────────────────────────────────────────────────── */
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: var(--text-xs); font-weight: 700; color: var(--fg-2); }
    .input, .textarea {
      width: 100%; min-height: 46px; padding: 11px 14px;
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      background: var(--surface); color: var(--fg); font: inherit; font-size: 15px;
    }
    .input:focus, .textarea:focus { outline: none; box-shadow: var(--focus-ring); border-color: var(--accent); }
    .textarea { min-height: 104px; resize: vertical; line-height: 1.55; }

    /* ─── tables ────────────────────────────────────────────────────── */
    .ds-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
    .ds-table th, .ds-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border-soft); }
    .ds-table th { color: var(--muted); font-weight: 700; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
    .ds-table .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }

    /* ─── imagery ───────────────────────────────────────────────────── */
    .content-img { display: block; max-width: 100%; max-height: min(70vh, 640px); width: auto; height: auto; object-fit: contain; justify-self: center; border-radius: var(--radius-lg); }
    .thumb { width: 100%; height: auto; border-radius: var(--radius-sm); background: var(--surface-warm); }
    .split-media { position: relative; margin: 0; width: 100%; min-height: 260px; align-self: stretch; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface-warm); }
    .split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .ph-img {
      background: linear-gradient(135deg, var(--surface-warm), var(--surface));
      border: 1px dashed var(--border); border-radius: var(--radius-lg);
      aspect-ratio: 16 / 10; display: grid; place-items: center; text-align: center;
      color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; padding: var(--space-5);
    }
    .rule { border: 0; border-top: 1px solid var(--border-soft); margin: 0; }

    /* ─── screens ───────────────────────────────────────────────────── */
    .screen { display: none; }
    .screen.active { display: block; animation: fade var(--motion-base) var(--ease-standard); }
    @keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    /* Shared top inset: between old home (~section only) and old inner pages (section + page-head). */
    section.screen.section {
      padding-top: clamp(72px, 9vw, 152px);
      padding-bottom: clamp(48px, 7vw, var(--section-y-desktop));
      border-top: 0;
    }
    .page-head { padding-block: 0 clamp(12px, 1.5vw, 20px); }
    .page-head .lead { margin-top: var(--space-4); }
    .page-head + .section { padding-top: clamp(24px, 3.5vw, 56px); }

    /* ─── hero ──────────────────────────────────────────────────────── */
    .hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--gap-2xl); align-items: center; }
    .hero-copy h1 { margin-bottom: var(--space-5); }
    .hero-copy .lead { margin-bottom: var(--space-6); }
    .hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
    .hero-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface-warm);
    }
    .hero-visual img,
    .hero-visual video,
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-video {
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
      will-change: opacity;
    }
    .hero-video.is-active {
      opacity: 1;
    }
    .hero-badge {
      position: absolute; left: var(--space-5); bottom: var(--space-5);
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4); box-shadow: var(--elev-raised);
      z-index: 2;
    }
    @media (max-width: 920px) {
      .hero-split { grid-template-columns: 1fr; gap: var(--space-8); }
      .hero-visual { aspect-ratio: 1 / 1; min-height: auto; }
    }

    /* ─── menu ──────────────────────────────────────────────────────── */
    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: var(--space-5); }
    .menu-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
      overflow: hidden; display: flex; flex-direction: column;
      touch-action: pan-y; max-width: 100%;
    }
    .menu-card .menu-card-media { padding: var(--space-5) var(--space-5) 0; }
    .menu-card .menu-card-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: var(--radius-sm); background: var(--surface-warm); }
    .menu-card .menu-card-body {
      flex: 1 1 auto; padding: var(--space-4) var(--space-5) var(--space-5);
      display: flex; flex-direction: column; gap: 6px;
      min-width: 0; max-width: 100%; overflow-x: hidden;
    }
    .menu-card .menu-card-title { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); width: 100%; }
    .menu-card .menu-card-title h3 { font-size: var(--text-lg); flex: 1 1 auto; min-width: 0; line-height: 1.2; }
    .menu-card .price {
      font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 700;
      flex: 0 0 auto; white-space: nowrap; line-height: 1.2;
    }
    .menu-card .desc { color: var(--muted); font-size: var(--text-sm); }
    .menu-card .portion {
      font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase; color: var(--meta); margin: 0;
    }
    .card-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 2px; max-width: 100%; overflow-x: hidden; touch-action: pan-y; }
    .card-size {
      appearance: none; border: 1px solid var(--border); background: var(--surface);
      color: var(--muted); font-family: var(--font-mono); font-size: 11px; font-weight: 700;
      letter-spacing: 0.03em; line-height: 1; padding: 7px 10px; border-radius: var(--radius-pill);
      cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
      transition: border-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard);
    }
    .card-size:hover { border-color: var(--accent); color: var(--fg); }
    .card-size.is-on { border-color: var(--accent); background: var(--surface-warm); color: var(--fg); font-weight: 700; }
    .menu-card .menu-card-foot { margin-top: auto; padding-top: var(--space-3); display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
    .menu-card .menu-card-foot .menu-card-more { margin-top: 0; margin-right: auto; }
    .menu-card .menu-card-foot .btn { flex: 0 0 auto; }
    .menu-card.feature-card { background: var(--surface-warm); }
    .menu-card.feature-card .menu-card-media img { background: var(--surface); }
    .section-label { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }

    /* ─── timeline ──────────────────────────────────────────────────── */
    .timeline { display: grid; gap: var(--space-4); }
    .timeline-row { display: grid; grid-template-columns: 150px 1fr; gap: var(--space-6); padding: var(--space-5) 0; border-top: 1px solid var(--border); align-items: baseline; }
    .timeline-row:last-child { border-bottom: 1px solid var(--border); }
    .timeline-row .tl-year { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 700; color: var(--meta); }
    .timeline-row p { color: var(--muted); margin-top: 4px; }
    @media (max-width: 640px) { .timeline-row { grid-template-columns: 1fr; gap: var(--space-2); } }

    /* ─── values ────────────────────────────────────────────────────── */
    .value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6); }
    .value-card .value-num { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--muted); }
    .value-card h3 { margin: var(--space-3) 0 6px; }
    .value-card p { color: var(--muted); font-size: var(--text-sm); }
    .values-grid { margin-top: 0; }
    .values-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); align-items: center; margin-top: var(--space-8); }
    .values-photo { margin: 0; width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface-warm); }
    .values-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-base) var(--ease-standard); }
    @media (hover: hover) and (pointer: fine) {
      .values-photo:hover img { transform: scale(1.03); }
    }
    .values-note { display: flex; flex-direction: column; justify-content: center; gap: var(--space-4); padding: var(--space-4) 0; }
    .values-note .eyebrow { margin: 0; }
    .values-note .rule { margin: var(--space-2) 0; border: 0; border-top: 1px solid var(--border); width: 100%; }
    .values-lead { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 700; line-height: 1.35; color: var(--fg); }
    @media (max-width: 920px) {
      .values-media { grid-template-columns: 1fr; gap: var(--space-6); }
      .values-photo { max-width: 500px; margin-inline: auto; }
    }

    /* ─── drink customizer ──────────────────────────────────────────── */
    .drink-custom { display: flex; flex-direction: column; padding-bottom: var(--space-5); }
    .drink-custom .custom-lead { color: var(--fg-2); font-size: var(--text-sm); margin-top: var(--space-3); }
    .aroma-list { list-style: none; margin: var(--space-2) 0 0; padding: 0; display: flex; flex-direction: column; flex: 1 1 auto; }
    .aroma-item { flex: 1 1 auto; display: flex; gap: var(--space-4); align-items: center; padding: var(--space-4) 0; border-top: 1px solid var(--border); }
    .aroma-item:first-child { border-top: 0; }
    .aroma-ico { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--border); border-radius: var(--radius-pill); background: var(--surface); color: var(--fg-2); }
    .aroma-ico svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .aroma-item h4 { font-family: var(--font-display); font-size: var(--text-base); margin-bottom: 2px; }
    .aroma-item p { margin: 0; }
    .custom-foot { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--border); }

    /* ─── info rows ─────────────────────────────────────────────────── */
    .info-row { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5) 0; border-bottom: 1px solid var(--border-soft); }
    .info-row:last-child { border-bottom: 0; }
    .info-mark { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
    .info-row h3 { font-size: var(--text-base); margin-bottom: 2px; }
    .info-row p, .info-row li { color: var(--muted); font-size: var(--text-sm); }
    .info-row a { color: var(--fg-2); text-decoration: underline; text-underline-offset: 2px; }
    .hours-line {
      display: flex;
      align-items: baseline;
      gap: var(--space-4);
      font-size: var(--text-sm);
      color: var(--muted);
      padding: 3px 0;
    }
    .hours-line span {
      min-width: 90px;
      color: var(--muted);
    }
    .hours-line strong {
      color: var(--fg);
      font-weight: 700;
    }

    /* ─── location screen layout & map ───────────────────────────────── */
    .location-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: var(--gap-xl);
      align-items: stretch;
    }
    .location-map-card {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 420px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface-warm);
      box-shadow: var(--elev-subtle);
    }
    .map-frame {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
      display: block;
      filter: contrast(0.96) saturate(0.88);
    }
    .map-card-badge {
      position: absolute;
      bottom: var(--space-4);
      left: var(--space-4);
      right: var(--space-4);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-3);
      padding: 10px 14px;
      background: color-mix(in oklab, var(--surface) 92%, transparent);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      font-size: var(--text-xs);
    }
    .map-badge-pin {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--fg);
    }
    .map-badge-pin .icon {
      color: var(--accent);
      width: 16px;
      height: 16px;
    }
    .map-badge-link {
      color: var(--accent);
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .map-badge-link:hover {
      text-decoration: underline;
    }
    .location-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .location-info .info-row:first-child {
      padding-top: 0;
    }
    .location-info .info-row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
    @media (max-width: 960px) {
      .location-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .location-map-card, .map-frame {
        min-height: 300px;
      }
      .location-info .info-row:first-child {
        padding-top: var(--space-4);
      }
    }
    #contatti .grid-2 { align-items: start; }
    #contatti .contact-message {
      display: flex;
      flex-direction: column;
      align-self: stretch;
    }
    #contatti .contact-message .contact-foot {
      margin-top: auto;
      padding-top: var(--space-5);
      border: 0;
    }
    #contatti .contact-direct {
      display: flex;
      flex-direction: column;
      align-self: start;
    }
    .contact-direct .eyebrow { margin-bottom: var(--space-3); }
    .contact-direct .contact-intro { color: var(--fg-2); font-size: var(--text-sm); margin-bottom: var(--space-2); }
    .contact-direct .info-row:first-of-type { padding-top: var(--space-4); }
    .contact-direct .contact-foot {
      margin-top: var(--space-5);
      padding-top: var(--space-5);
      border-top: 1px solid var(--border);
      flex: 0 0 auto;
    }
    .contact-direct .contact-foot .btn { background: var(--surface); }
    .contact-direct .contact-foot .btn:hover { border-color: var(--accent); color: var(--accent); }
    .contact-direct .info-body { flex: 1; min-width: 0; }
    .schedule { margin-top: var(--space-2); display: flex; flex-direction: column; gap: var(--space-2); }
    .schedule-row { display: flex; align-items: baseline; gap: var(--space-3); font-size: var(--text-sm); }
    .schedule-row > span { flex: 0 0 auto; min-width: 5.5em; color: var(--muted); }
    .schedule-row strong { color: var(--fg); font-weight: 600; }

    /* ─── cart / order ──────────────────────────────────────────────── */
    .cart-row {
      display: grid; grid-template-columns: 64px 1fr auto; gap: var(--space-4); align-items: center;
      padding: var(--space-4) 0;
      border-bottom: 1px solid var(--border-soft);
      cursor: pointer;
    }
    .cart-empty { padding: var(--space-8) 0; }
    .cart-row img {
      width: 64px; height: 64px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      background: var(--surface-warm);
      display: block;
    }
    .cart-row .cart-info h3 {
      font-size: var(--text-base);
      transition: color var(--motion-fast) var(--ease-standard);
    }
    .cart-row:hover .cart-info h3 { color: var(--accent); }
    .cart-row .cart-info p { color: var(--muted); font-size: var(--text-sm); }
    .cart-row .stepper { cursor: default; }
    .stepper { display: inline-flex; align-items: center; gap: var(--space-3); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px; background: var(--surface); }
    .stepper button { width: 30px; height: 30px; border-radius: var(--radius-pill); border: 0; background: transparent; color: var(--fg); display: grid; place-items: center; font-size: 16px; line-height: 1; }
    .stepper button:hover { background: var(--fg-soft); }
    .stepper .qty { min-width: 20px; text-align: center; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 700; }
    .price-row { display: flex; justify-content: space-between; gap: var(--space-4); font-size: var(--text-sm); color: var(--muted); padding: 6px 0; }
    .price-row.total { border-top: 1px solid var(--border); margin-top: var(--space-3); padding-top: var(--space-4); color: var(--fg); font-size: var(--text-lg); }
    .price-row.total strong { font-family: var(--font-display); font-weight: 700; }
    .price-row .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
    .delivery-note { display: flex; gap: var(--space-4); align-items: center; margin-top: var(--space-4); padding: var(--space-4); background: var(--surface-warm); border-radius: var(--radius-sm); }
    .delivery-note .info-mark { border-color: color-mix(in oklab, var(--accent) 28%, var(--border)); background: var(--surface); }
    .delivery-note .info-mark .icon { color: var(--accent); }
    .delivery-note-label { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .delivery-note-value { font-size: var(--text-sm); font-weight: 600; color: var(--fg); }

    /* ─── gallery ───────────────────────────────────────────────────── */
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
    .gallery-grid figure {
      margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-md);
      border: 1px solid var(--border); background: var(--surface-warm); cursor: zoom-in;
      position: relative;
    }
    .gallery-grid figure:focus-visible { outline: none; box-shadow: var(--focus-ring); }
    .gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--motion-base) var(--ease-standard); }
    @media (hover: hover) and (pointer: fine) {
      .gallery-grid figure:hover img { transform: scale(1.04); }
    }
    @media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

    /* ─── toast ─────────────────────────────────────────────────────── */
    .toast {
      position: fixed; left: 50%; bottom: 28px; z-index: 1100;
      transform: translate(-50%, 12px); opacity: 0; pointer-events: none;
      max-width: min(420px, calc(100vw - 32px));
      padding: 14px 18px; border-radius: var(--radius-md);
      background: var(--fg); color: var(--bg); font-size: var(--text-sm); line-height: 1.4;
      box-shadow: var(--elev-raised);
      transition: opacity var(--motion-base) var(--ease-standard), transform var(--motion-base) var(--ease-standard);
    }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }

    /* ─── modals ────────────────────────────────────────────────────── */
    .modal {
      position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center;
      padding: var(--space-4);
      overflow: hidden;
      overscroll-behavior: none;
      touch-action: none;
    }
    .modal.open { display: flex; }
    .modal-backdrop {
      position: fixed; inset: 0; z-index: 1;
      background: color-mix(in oklab, var(--fg) 58%, transparent);
      backdrop-filter: blur(4px);
      touch-action: none;
      overscroll-behavior: none;
    }
    .modal-card {
      position: relative; z-index: 2; width: 100%; max-width: 460px;
      max-height: calc(100vh - 48px);
      max-height: calc(100dvh - 48px);
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior-y: contain;
      overscroll-behavior-x: none;
      touch-action: pan-y;
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      box-shadow: var(--elev-raised); padding: var(--space-6);
      box-sizing: border-box;
    }
    .modal-card.wide { max-width: 860px; }
    .modal-card,
    .modal-card * {
      overscroll-behavior-x: none;
    }
    .modal-card button,
    .modal-card a,
    .modal-card input,
    .modal-card label {
      touch-action: manipulation;
    }
    .product-layout,
    .product-media,
    .product-media-stage,
    .product-thumbs,
    .product-info,
    .product-addons,
    .size-list,
    .addon-list {
      touch-action: pan-y;
      overscroll-behavior-x: none;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
    }
    .modal-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }
    .modal-head .modal-kicker { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .modal-close { width: 36px; height: 36px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; }
    .modal-close:hover { border-color: var(--fg); }
    .modal-actions { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
    .divider-text { display: flex; align-items: center; gap: var(--space-3); color: var(--muted); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; }
    .divider-text::before, .divider-text::after { content: ""; height: 1px; flex: 1; background: var(--border-soft); }
    .choice { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
    .choice button { display: grid; gap: 6px; justify-items: center; padding: var(--space-4) var(--space-2); border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); color: var(--muted); font-size: var(--text-xs); font-weight: 700; }
    .choice button.active { border-color: var(--accent); color: var(--accent); }
    .success-badge { width: 60px; height: 60px; border-radius: var(--radius-pill); background: var(--surface-warm); border: 1px solid var(--border); display: grid; place-items: center; margin: 0 auto var(--space-5); }
    .form-note {
      margin-top: var(--space-4); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm);
      background: color-mix(in oklab, var(--success) 14%, var(--surface)); color: var(--fg);
      font-size: var(--text-sm); border: 1px solid color-mix(in oklab, var(--success) 28%, var(--border));
    }

    /* immersive lightbox */
    .modal-lightbox {
      position: fixed; inset: 0; z-index: 1050;
      padding: 0; align-items: stretch; justify-content: stretch;
    }
    .modal-lightbox .modal-backdrop { background: color-mix(in oklab, #120e0b 88%, transparent); backdrop-filter: blur(8px); }
    .lightbox-shell {
      position: relative; z-index: 1; width: 100%; height: 100%;
      display: grid; grid-template-rows: auto 1fr auto; gap: var(--space-4);
      padding: var(--space-5); color: #f7efe4;
    }
    .lightbox-top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
    .lightbox-top .modal-kicker { color: color-mix(in oklab, #f7efe4 70%, transparent); }
    .lightbox-close {
      width: 44px; height: 44px; border-radius: var(--radius-pill); border: 1px solid color-mix(in oklab, #f7efe4 22%, transparent);
      background: color-mix(in oklab, #f7efe4 8%, transparent); color: #f7efe4; display: grid; place-items: center;
    }
    .lightbox-close:hover { background: color-mix(in oklab, #f7efe4 16%, transparent); }
    .lightbox-stage {
      position: relative;
      margin: 0 auto;
      width: min(1280px, calc(100vw - 32px));
      height: clamp(460px, 74vh, 860px);
      min-height: 0;
    }
    .lightbox-stage > img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      max-width: none; max-height: none;
      object-fit: cover; object-position: center;
      border-radius: var(--radius-md);
      box-shadow: 0 24px 80px rgba(0,0,0,0.45);
      background: #1a1510;
    }
    .lightbox-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
      width: 48px; height: 48px; border-radius: var(--radius-pill);
      border: 1px solid color-mix(in oklab, #f7efe4 22%, transparent);
      background: color-mix(in oklab, #120e0b 55%, transparent); color: #f7efe4;
      display: grid; place-items: center; font-size: 22px; line-height: 1;
    }
    .lightbox-arrow:hover { background: color-mix(in oklab, #120e0b 75%, transparent); }
    .lightbox-arrow.prev { left: 12px; }
    .lightbox-arrow.next { right: 12px; }
    .lightbox-bottom { min-width: 0; }
    .lightbox-meta {
      display: flex; align-items: end; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
      max-width: 1280px; width: min(1280px, calc(100vw - 32px)); margin-inline: auto;
    }
    .lightbox-meta h3 { font-family: var(--font-display); font-size: var(--text-lg); color: #f7efe4; }
    .lightbox-meta .meta { color: color-mix(in oklab, #f7efe4 68%, transparent); }
    .lightbox-meta .lb-count { font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.06em; }
    .thumbs { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center; max-width: 1280px; width: min(1280px, calc(100vw - 32px)); margin-inline: auto; }
    .thumbs button {
      padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden;
      background: transparent; cursor: pointer; opacity: 0.72; flex: 0 0 auto;
    }
    .thumbs button:hover { opacity: 1; }
    .thumbs button.active { border-color: var(--accent); opacity: 1; }
    .thumbs img { width: 72px; height: 54px; object-fit: cover; display: block; }
    @media (max-width: 720px), (max-height: 740px) {
      .lightbox-shell {
        grid-template-rows: auto minmax(0, 1fr);
        grid-template-areas: "top" "main";
        gap: var(--space-3);
        padding: var(--space-4);
        padding-bottom: 0;
      }
      .lightbox-top { grid-area: top; }
      .lightbox-stage {
        grid-area: main;
        width: 100%;
        height: 100%;
        min-height: 240px;
      }
      .lightbox-bottom {
        grid-area: main;
        align-self: end;
        justify-self: stretch;
        z-index: 4;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: var(--space-5) var(--space-4) max(var(--space-4), env(safe-area-inset-bottom));
        background: linear-gradient(to top, rgba(18, 14, 11, 0.94) 35%, rgba(18, 14, 11, 0.55) 70%, transparent);
        pointer-events: none;
      }
      .lightbox-bottom .lightbox-meta,
      .lightbox-bottom .thumbs,
      .lightbox-bottom button { pointer-events: auto; }
      .lightbox-meta {
        width: 100%;
        max-width: none;
        margin-inline: 0;
      }
      .lightbox-meta h3 { font-size: var(--text-base); }
      .thumbs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        margin-inline: 0;
        margin-top: var(--space-3) !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
      }
      .thumbs::-webkit-scrollbar { display: none; }
      .lightbox-arrow { width: 40px; height: 40px; }
      .lightbox-arrow.prev { left: 8px; }
      .lightbox-arrow.next { right: 8px; }
      .thumbs img { width: 56px; height: 42px; }
    }

    /* ─── clickable menu cards + product modal ──────────────────────── */
    .menu-card { cursor: pointer; transition: border-color var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard); touch-action: pan-y; overscroll-behavior-x: none; }
    @media (hover: hover) and (pointer: fine) {
      .menu-card:hover { border-color: var(--accent); transform: translateY(-2px); }
      .menu-card:hover .menu-card-media img { transform: scale(1.04); }
      .menu-card:hover .menu-card-more,
      .menu-card-more:hover { color: var(--accent); }
    }
    .menu-card:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--focus-ring); }
    .menu-card .menu-card-media img { transition: transform var(--motion-base) var(--ease-standard); }
    .menu-card-more {
      display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-2);
      padding: 0; border: 0; background: transparent; cursor: pointer;
      font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-2); font-weight: 600;
    }
    .menu-card-more::after { content: "\2192"; }
    .menu-card-more:focus-visible { outline: none; color: var(--accent); box-shadow: var(--focus-ring); border-radius: 4px; }

    .product-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-8); align-items: start; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
    @media (max-width: 720px) { .product-layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-5); } }
    .product-media { display: flex; flex-direction: column; gap: var(--space-3); }
    .product-media-stage {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      min-height: 250px;
      background: var(--surface-warm);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px -4px rgba(32, 25, 20, 0.08);
    }
    .product-media-stage img,
    #prodImg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity var(--motion-fast) var(--ease-standard), transform var(--motion-base) var(--ease-standard);
    }
    @media (hover: hover) and (pointer: fine) {
      .product-media-stage:hover img {
        transform: scale(1.03);
      }
    }
    .product-thumbs {
      display: flex;
      gap: var(--space-2);
      width: 100%;
      box-sizing: border-box;
      padding: 2px 0 4px;
    }
    .product-thumb-btn {
      flex: 1 1 0;
      min-width: 0;
      width: auto;
      aspect-ratio: 1 / 1;
      height: auto;
      padding: 0;
      border: 2px solid var(--border);
      border-radius: var(--radius-sm);
      background: var(--surface-warm);
      cursor: pointer;
      overflow: hidden;
      opacity: 0.65;
      box-sizing: border-box;
      transition: opacity var(--motion-fast) var(--ease-standard),
                  border-color var(--motion-fast) var(--ease-standard),
                  transform var(--motion-fast) var(--ease-standard),
                  box-shadow var(--motion-fast) var(--ease-standard);
    }
    @media (hover: hover) and (pointer: fine) {
      .product-thumb-btn:hover {
        opacity: 1;
        border-color: var(--accent);
        transform: translateY(-2px);
      }
    }
    .product-thumb-btn.is-active {
      opacity: 1;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 30%, transparent);
    }
    .product-thumb-btn:focus-visible {
      outline: none;
      border-color: var(--accent);
      box-shadow: var(--focus-ring);
    }
    .product-thumb-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }
    .product-info { display: flex; flex-direction: column; gap: var(--space-4); }
    .product-info h2 { font-size: var(--text-xl); line-height: 1.1; }
    .product-info .lead { font-size: var(--text-base); max-width: none; }
    .product-info .product-ing { color: var(--fg-2); font-size: var(--text-sm); }
    .product-price-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
    .product-price-row .price { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); }
    .qty-field { display: inline-flex; align-items: center; gap: var(--space-3); }
    .product-addons { display: flex; flex-direction: column; gap: var(--space-3); }
    .product-addons-label { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
    .product-addons-hint { font-size: var(--text-xs); color: var(--muted); }
    .size-list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
    .size-opt {
      position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 40px;
      padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--radius-pill);
      background: var(--surface); color: var(--fg-2); font-size: var(--text-sm); cursor: pointer;
      transition: border-color var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
    }
    .size-opt:hover { border-color: var(--accent); color: var(--fg); }
    .size-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
    .size-opt.is-on { border-color: var(--accent); background: var(--accent-soft); color: var(--fg); font-weight: 600; }
    .size-opt .size-delta { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--muted); }
    .size-opt.is-on .size-delta { color: var(--accent); }
    .addon-list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
    .addon {
      position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 40px;
      padding: 6px 14px 6px 10px; border: 1px solid var(--border); border-radius: var(--radius-pill);
      background: var(--surface); color: var(--fg-2); font-size: var(--text-sm); cursor: pointer;
      transition: border-color var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
    }
    .addon:hover { border-color: var(--accent); color: var(--fg); }
    .addon input { position: absolute; opacity: 0; width: 1px; height: 1px; }
    .addon.is-on { border-color: var(--accent); background: var(--accent-soft); color: var(--fg); font-weight: 600; }
    .addon input:focus-visible + .addon-mark { box-shadow: var(--focus-ring); }
    .addon-mark {
      width: 18px; height: 18px; flex: 0 0 auto; display: grid; place-items: center;
      border: 1px solid var(--border); border-radius: 5px; background: var(--surface); color: transparent;
    }
    .addon-mark svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
    .addon.is-on .addon-mark { background: var(--accent); border-color: var(--accent); color: var(--accent-on); }
    .cart-opts { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--meta); letter-spacing: 0.02em; margin-top: 2px; }

    /* ─── footer ────────────────────────────────────────────────────── */
    .site-foot { background: var(--fg); color: var(--bg); padding-block: var(--space-12) var(--space-6); margin-top: var(--space-12); }
    .site-foot a { color: color-mix(in oklab, var(--bg) 82%, transparent); }
    .site-foot a:hover { color: var(--bg); }
    .site-foot .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); }
    .site-foot h3 { font-size: var(--text-base); margin-bottom: var(--space-3); }
    .site-foot .foot-col li { margin-bottom: var(--space-2); font-size: var(--text-sm); }
    .site-foot ul { list-style: none; padding: 0; margin: 0; }
    .site-foot .brand .brand-name { color: var(--bg); }
    .site-foot .brand .brand-sub { color: color-mix(in oklab, var(--bg) 70%, transparent); }
    .site-foot .foot-bottom { border-top: 1px solid color-mix(in oklab, var(--bg) 18%, transparent); margin-top: var(--space-8); padding-top: var(--space-5); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); }
    .site-foot .photo-credits { margin-top: var(--space-4); font-size: var(--text-xs); line-height: 1.6; color: color-mix(in oklab, var(--bg) 62%, transparent); }
    @media (max-width: 920px) { .site-foot .foot-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .site-foot .foot-grid { grid-template-columns: 1fr; } }

    /* ─── checkout: delivery toggle ─────────────────────────────────── */
    .delivery-type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-3);
      margin-top: var(--space-4);
      margin-bottom: var(--space-5);
    }
    .delivery-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding: var(--space-4);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      cursor: pointer;
      text-align: left;
      transition: border-color var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard);
    }
    .delivery-card:hover { border-color: var(--accent); }
    .delivery-card.active {
      border-color: var(--accent);
      background: var(--accent-soft);
    }
    .delivery-card-title {
      font-weight: 700;
      font-size: var(--text-sm);
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .delivery-card-desc {
      font-size: var(--text-xs);
      color: var(--muted);
      line-height: 1.4;
    }
    .delivery-card-price {
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      font-weight: 700;
      color: var(--meta);
      margin-top: 4px;
    }

    /* ─── account modal tabs ────────────────────────────────────────── */
    .tabs-nav {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin-bottom: var(--space-5);
      gap: var(--space-2);
    }
    .tab-btn {
      padding: 10px 18px;
      background: transparent;
      border: 0;
      border-bottom: 2px solid transparent;
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color var(--motion-fast), border-color var(--motion-fast);
    }
    .tab-btn:hover { color: var(--fg); }
    .tab-btn.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    /* ─── order tracker (timeline) ─────────────────────────────────── */
    .tracker {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      margin: var(--space-5) 0;
      position: relative;
    }
    .tracker-step {
      display: flex;
      align-items: flex-start;
      gap: var(--space-4);
      position: relative;
    }
    .tracker-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 17px;
      top: 36px;
      bottom: -20px;
      width: 2px;
      background: var(--border-soft);
    }
    .tracker-step.completed:not(:last-child)::after {
      background: var(--success);
    }
    .tracker-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-pill);
      border: 2px solid var(--border);
      background: var(--surface);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      z-index: 1;
      color: var(--muted);
    }
    .tracker-step.completed .tracker-icon {
      background: var(--success);
      border-color: var(--success);
      color: #fff;
    }
    .tracker-step.active .tracker-icon {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 0 0 4px var(--accent-soft);
      animation: pulseTracker 2s infinite;
    }
    @keyframes pulseTracker {
      0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
      50% { box-shadow: 0 0 0 8px transparent; }
    }
    .tracker-info h4 {
      font-size: var(--text-base);
      margin: 0 0 2px;
      color: var(--fg);
    }
    .tracker-info p {
      font-size: var(--text-xs);
      color: var(--muted);
      margin: 0;
    }
    .tracker-info .time {
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      color: var(--meta);
      margin-top: 2px;
    }

    /* ─── clear cart button ─────────────────────────────────────────── */
    .btn-clear-cart {
      background: var(--brand-green, #008a6a);
      border: 0;
      color: #ffffff;
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      font-weight: 600;
      line-height: 1;
      text-transform: lowercase;
      cursor: pointer;
      padding: 5px 10px;
      border-radius: var(--radius-sm);
      transition: background-color var(--motion-fast), transform var(--motion-fast);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-clear-cart:hover {
      background: color-mix(in oklab, var(--brand-green, #008a6a), black 12%);
      color: #ffffff;
    }
    .btn-clear-cart:active {
      transform: scale(0.97);
    }

    /* ─── mobile adjustments (phone) ────────────────────────────────── */
    @media (max-width: 640px) {
      html { scrollbar-gutter: auto; }

      /* menu grid & cards mobile adaptation */
      .menu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .menu-card {
        border-radius: var(--radius-md);
        box-shadow: 0 2px 10px rgba(32, 25, 20, 0.04);
      }
      .menu-card .menu-card-media {
        padding: 12px 12px 0;
      }
      .menu-card .menu-card-media img {
        aspect-ratio: 16 / 10;
        max-height: 200px;
        border-radius: 6px;
      }
      .menu-card .menu-card-body {
        padding: 12px 12px 14px;
        gap: 8px;
      }
      .menu-card .menu-card-title {
        gap: 8px;
      }
      .menu-card .menu-card-title h3 {
        font-size: 17px;
      }
      .menu-card .price {
        font-size: 16px;
      }
      .menu-card .desc {
        font-size: 13px;
        line-height: 1.4;
      }
      .menu-card .card-sizes {
        gap: 6px;
        margin: 1px 0;
      }
      .card-size {
        padding: 6px 9px;
        font-size: 11px;
        min-height: 28px;
      }
      .menu-card .menu-card-foot {
        padding-top: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
        width: 100%;
      }
      .menu-card .menu-card-foot .menu-card-more {
        font-size: 11px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
      }
      .menu-card .menu-card-foot .btn {
        min-height: 36px;
        padding: 0 16px;
        font-size: 12px;
      }

      /* modals on mobile */
      .modal {
        padding: 12px;
        align-items: center;
        overflow: hidden !important;
        touch-action: none;
        overscroll-behavior: none;
      }
      .modal-card {
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        padding: 16px;
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden !important;
        overflow-y: auto;
        touch-action: pan-y;
        overscroll-behavior-x: none;
        overscroll-behavior-y: contain;
      }
      .modal-card.wide {
        padding: 16px;
        max-width: 100%;
      }
      .modal-head {
        margin-bottom: 12px;
        width: 100%;
      }
      .modal-head .modal-kicker {
        font-size: 11px;
      }
      .modal-close {
        width: 34px;
        height: 34px;
      }
      .product-layout {
        gap: 14px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        touch-action: pan-y;
        overscroll-behavior-x: none;
      }
      .product-media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }
      .product-media-stage {
        min-height: 170px;
        aspect-ratio: 16 / 10;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        touch-action: pan-y;
        overscroll-behavior-x: none;
      }
      .product-thumbs {
        padding: 2px 0 0;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        touch-action: pan-y;
        overscroll-behavior-x: none;
      }
      .product-info {
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        touch-action: pan-y;
        overscroll-behavior-x: none;
      }
      .product-info h2 {
        font-size: 20px;
        word-break: break-word;
      }
      .product-price-row {
        width: 100%;
        max-width: 100%;
      }
      .product-price-row .price {
        font-size: 18px;
      }
      .product-addons {
        gap: 6px;
        width: 100%;
        max-width: 100%;
      }
      .size-list, .addon-list {
        width: 100%;
        max-width: 100%;
        touch-action: pan-y;
        overscroll-behavior-x: none;
      }
      .size-opt, .addon {
        min-height: 36px;
        padding: 4px 12px;
        font-size: 13px;
        max-width: 100%;
        box-sizing: border-box;
      }
    }


