/* Preview-only mobile build for logo (1).glb */

.hero .metallic-logo {
  display: none !important;
}

#root {
  filter: none !important;
  opacity: 1 !important;
}

.bg-glb-float > model-viewer,
.bg-glb-float > model-viewer[classname="bg-glb-viewer"],
.bg-glb-float > model-viewer.bg-glb-viewer {
  display: block;
  width: 100% !important;
  height: 100% !important;
  background: transparent;
  opacity: .42;
  filter: contrast(1.08) saturate(1.02);
}

.bg-glb-shell {
  display: grid;
  place-items: center;
}

.bg-glb-float {
  width: clamp(640px, 104vmin, 1450px);
  aspect-ratio: 1 / 1;
  animation: bgGlbPreviewFloat 9.8s ease-in-out infinite;
}

@keyframes bgGlbPreviewFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -8px, 0) scale(1.012); }
}

@media (max-width: 900px) {
  .bg-glb-float { width: clamp(520px, 112vmin, 1000px); }
  .bg-glb-float > model-viewer { opacity: .28; }
}

@media (max-width: 760px) {
  :root {
    --header-h: 62px;
    --catbar-h: 56px;
    --radius: 18px;
    --radius-sm: 14px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-y: auto;
  }

  body {
    background:
      linear-gradient(180deg, rgba(250,247,242,.94), rgba(248,243,236,.94)),
      var(--bg);
  }

  .app {
    padding-top: calc(var(--header-h) + var(--catbar-h));
  }

  html[data-theme="dark"] body {
    background:
      linear-gradient(180deg, rgba(15,17,20,.94), rgba(11,13,17,.94)),
      var(--bg);
  }

  .bg-glb-float {
    width: clamp(420px, 132vw, 760px);
  }

  .bg-glb-float > model-viewer {
    opacity: .22;
  }

  html:not([data-theme="dark"]) .bg-glb-float > model-viewer {
    opacity: .34;
    filter: contrast(1.16) saturate(.96) brightness(.74);
  }

  html[data-theme="dark"] .bg-glb-float > model-viewer {
    opacity: .26;
    filter: contrast(1.08) saturate(.9) brightness(1.22);
  }

  .site-header {
    height: var(--header-h);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(13,12,11,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .header-inner {
    padding: 0 12px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name {
    font-size: 20px;
    line-height: 1;
  }

  .brand-sub {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .cart-btn {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .theme-fab {
    top: 14px;
    right: 72px;
    min-width: 50px;
    height: 34px;
    padding: 0 9px;
    z-index: 70;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 22px rgba(20,14,10,.12);
  }

  html[data-theme="dark"] .theme-fab {
    background: rgba(20,23,28,.9);
    border-color: rgba(255,255,255,.12);
    color: #f5efe6;
  }

  .cat-bar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 55;
    padding: 8px 0;
    background: rgba(250,247,242,.88);
    border-bottom: 1px solid rgba(26,20,15,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  html[data-theme="dark"] .cat-bar {
    background: rgba(15,17,20,.84);
    border-bottom-color: rgba(255,255,255,.08);
  }

  .cat-bar.visible {
    transform: none;
    opacity: 1;
  }

  .cat-bar-inner {
    width: 100%;
    height: auto;
    max-height: none;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 12px 2px;
    perspective: none;
    scroll-snap-type: x proximity;
  }

  .cat-bar-inner::before {
    content: none;
  }

  .cat-pill,
  .cat-pill.active {
    position: static;
    transform: none !important;
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    opacity: 1;
    filter: none;
    padding: 10px 14px;
    border: 1px solid rgba(24,19,14,.12);
    background: rgba(255,255,255,.76);
    color: #2a231d;
    text-shadow: none;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1;
    scroll-snap-align: center;
    box-shadow: 0 6px 16px rgba(24,16,10,.06);
  }

  .cat-pill.active {
    background: #101010;
    color: #fff;
    border-color: #101010;
    box-shadow: 0 10px 22px rgba(10,8,6,.18);
  }

  html[data-theme="dark"] .cat-pill {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    border-color: rgba(255,255,255,.12);
  }

  html[data-theme="dark"] .cat-pill.active {
    background: #f1e9dc;
    color: #151515;
    border-color: rgba(255,255,255,.2);
  }

  .hero {
    min-height: 52vh !important;
    padding: 28px 16px 24px !important;
    display: flex;
    align-items: flex-end;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
  }

  .hero-content {
    display: block !important;
    width: 100%;
    padding-top: 76px;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-lede,
  .hero-cta,
  .hero-meta {
    display: revert !important;
  }

  .hero-eyebrow {
    display: inline-flex !important;
  }

  .hero-cta,
  .hero-meta {
    display: flex !important;
  }

  .hero-decor {
    opacity: .24;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
    background: rgba(255,255,255,.76);
  }

  html[data-theme="dark"] .hero-eyebrow {
    background: rgba(255,255,255,.08);
  }

  .hero-title {
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0;
    margin: 14px 0 12px;
    max-width: 10ch;
  }

  .hero-lede {
    max-width: 32ch;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hero-cta {
    gap: 8px;
    margin-bottom: 16px;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero-meta {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 345px;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
  }

  .hero-meta > span:not(.hm-sep) {
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .hero-meta b {
    display: block;
    margin-bottom: 2px;
  }

  .hm-sep {
    display: none !important;
  }

  .process {
    padding: 22px 14px 24px;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
  }

  .sect-head {
    display: block;
    margin-bottom: 16px;
  }

  .sect-title {
    font-size: 34px;
    letter-spacing: 0;
  }

  .process .sect-title {
    max-width: 340px;
    font-size: 31px;
    line-height: 1.04;
    text-wrap: balance;
  }

  .process .sect-title em {
    display: block;
  }

  .process-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 78%);
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .process-card {
    scroll-snap-align: start;
    border-radius: 16px;
    padding: 16px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  html[data-theme="dark"] .process-card {
    background: rgba(22,26,32,.82);
  }

  .stats {
    margin: 4px 0 18px;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
    background: rgba(20,18,16,.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .stats-inner {
    padding: 24px 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card {
    border-radius: 16px;
    padding: 14px 12px;
    min-height: 92px;
  }

  .story {
    padding: 8px 14px 20px;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
  }

  .story-inner {
    gap: 16px;
  }

  .story-media > .story-frame {
    min-height: 420px;
    border-radius: 18px;
  }

  .story-photo {
    max-width: min(96%, 370px);
    max-height: 390px;
  }

  .story-text p {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .menu {
    padding: 12px 12px 118px;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
  }

  .menu-intro {
    padding: 24px 0 14px;
    text-align: left;
    border-top: 0;
  }

  .menu-intro-title {
    max-width: 320px;
    font-size: 32px;
    line-height: 1.04;
    margin: 6px 0 12px;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-item {
    min-height: 58px;
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  html[data-theme="dark"] .trust-item {
    background: rgba(22,26,32,.82);
  }

  .cat-section {
    padding: 28px 0 2px;
    scroll-margin-top: 128px;
  }

  .cat-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .cat-rule {
    flex-basis: 28px;
  }

  .cat-title {
    font-size: 34px;
    letter-spacing: 0;
  }

  .cat-count {
    background: rgba(255,255,255,.82);
  }

  .cat-grid {
    gap: 12px;
  }

  .dish-card {
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 170px;
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 12px 28px rgba(20,14,8,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  html[data-theme="dark"] .dish-card {
    background: rgba(22,26,32,.86);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
  }

  .dish-media {
    min-height: 170px;
    border-radius: 18px 0 0 18px;
  }

  .dish-body {
    padding: 12px 12px 12px 14px;
  }

  .dish-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    margin-bottom: 6px;
  }

  .dish-name {
    font-size: 21px;
    letter-spacing: 0;
    line-height: 1.08;
  }

  .dish-price {
    font-size: 11px;
    margin: 0;
  }

  .dish-desc {
    font-size: 12.5px;
    line-height: 1.38;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
  }

  .add-btn,
  .qty-stepper {
    height: 40px;
  }

  .add-btn {
    min-width: 104px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cart-drawer {
    height: min(88vh, 720px);
    border-radius: 24px 24px 0 0;
  }

  .cart-head {
    padding: 12px 18px 14px;
  }

  .cart-head h3 {
    font-size: 28px;
  }

  .cart-body {
    padding: 8px 18px;
  }

  .cart-foot {
    padding: 14px 18px calc(18px + var(--safe-bottom));
    background: rgba(255,255,255,.94);
  }

  html[data-theme="dark"] .cart-foot {
    background: rgba(12,15,19,.96);
  }

  .floating-order {
    bottom: calc(12px + var(--safe-bottom));
    width: calc(100% - 24px);
  }

  .floating-order button {
    min-height: 58px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(12,8,5,.24);
  }

  .jump-fab {
    display: none !important;
  }

  .site-foot {
    margin-top: 24px;
    padding: 42px 16px 28px;
    scroll-margin-top: calc(var(--header-h) + var(--catbar-h) + 14px);
  }

  .foot-logo {
    margin-bottom: 20px;
  }

  .foot-logo img {
    width: 64px;
    height: 64px;
  }

  .foot-logo.fn-brand img {
    width: 48px;
    height: 48px;
  }

  .foot-grid {
    gap: 26px;
  }

  .foot-grid h4 {
    font-size: 24px;
  }

  .foot-map,
  .foot-map-link {
    width: 100%;
    max-width: 340px;
  }

  .foot-map iframe {
    height: 176px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 39px;
  }

  .dish-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .dish-name {
    font-size: 19px;
  }

  .dish-desc {
    -webkit-line-clamp: 2;
  }

  .add-btn {
    min-width: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-glb-float,
  .process-card,
  .dish-card,
  .floating-order button {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile redesign v2: app-like, visual, and easier to use. */
.mobile-hero-visual {
  display: none;
}

@media (max-width: 760px) {
  :root {
    --header-h: 58px;
    --catbar-h: 50px;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + var(--catbar-h) + 16px);
  }

  .hero,
  .process,
  .stats,
  .story,
  .menu,
  .site-foot,
  .cat-section {
    scroll-margin-top: 0 !important;
  }

  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(231, 195, 154, .28), transparent 34vh),
      linear-gradient(180deg, #fbf5ea 0%, #f6eee2 52%, #fbf8f1 100%);
  }

  html[data-theme="dark"] body {
    background:
      radial-gradient(circle at 50% 0%, rgba(220, 92, 38, .18), transparent 36vh),
      linear-gradient(180deg, #080b0f 0%, #0e1218 54%, #07090c 100%);
  }

  .app {
    padding-top: calc(var(--header-h) + var(--catbar-h));
  }

  .bg-glb-float {
    width: clamp(360px, 118vw, 640px);
  }

  .bg-glb-float > model-viewer,
  html:not([data-theme="dark"]) .bg-glb-float > model-viewer,
  html[data-theme="dark"] .bg-glb-float > model-viewer {
    opacity: .1;
    filter: contrast(1.08) saturate(.9);
  }

  .site-header {
    height: var(--header-h);
    background: rgba(255, 250, 241, .86);
    border-bottom: 1px solid rgba(32, 24, 17, .08);
    box-shadow: 0 12px 30px rgba(47, 32, 18, .08);
  }

  html[data-theme="dark"] .site-header {
    background: rgba(8, 11, 15, .88);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
  }

  .header-inner {
    padding: 0 12px 0 14px;
    gap: 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
  }

  .brand-name {
    font-size: 18px;
    line-height: .96;
  }

  .brand-sub {
    max-width: 155px;
    font-size: 8px;
    letter-spacing: .16em;
  }

  .cart-btn {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    color: #111;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(24,18,12,.12);
    box-shadow: 0 8px 20px rgba(28,20,12,.08);
  }

  html[data-theme="dark"] .cart-btn {
    color: #fff6eb;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.13);
  }

  .cart-badge {
    right: -3px;
    top: -4px;
    background: #d95f24;
    border: 2px solid #fff8ef;
  }

  html[data-theme="dark"] .cart-badge {
    border-color: #090c10;
  }

  .theme-fab {
    top: 13px;
    right: 60px;
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    color: #15110d;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(24,18,12,.12);
    box-shadow: 0 8px 20px rgba(28,20,12,.08);
  }

  .theme-fab-icon {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }

  html[data-theme="dark"] .theme-fab {
    color: #fff6eb;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.13);
  }

  .cat-bar {
    top: var(--header-h);
    height: var(--catbar-h);
    padding: 7px 0;
    background: rgba(255, 250, 241, .9);
    border-bottom: 1px solid rgba(32, 24, 17, .08);
    box-shadow: 0 14px 30px rgba(48, 34, 18, .06);
  }

  html[data-theme="dark"] .cat-bar {
    background: rgba(8, 11, 15, .86);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 14px 34px rgba(0,0,0,.25);
  }

  .cat-bar-inner {
    gap: 7px;
    padding: 0 12px 3px;
  }

  .cat-pill,
  .cat-pill.active {
    height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 760;
    color: rgba(31, 24, 18, .76);
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(32,24,17,.11);
    box-shadow: none;
  }

  .cat-pill.active {
    color: #fff8ed;
    background: #111;
    border-color: #111;
    box-shadow: 0 9px 20px rgba(0,0,0,.16);
  }

  html[data-theme="dark"] .cat-pill {
    color: rgba(255,246,235,.7);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.11);
  }

  html[data-theme="dark"] .cat-pill.active {
    color: #16100b;
    background: #f2e6d5;
    border-color: #f2e6d5;
  }

  .hero {
    display: grid;
    align-items: start;
    min-height: auto !important;
    padding: 24px 14px 18px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.18), transparent 76%),
      radial-gradient(circle at 86% 10%, rgba(215,94,37,.16), transparent 34%);
  }

  html[data-theme="dark"] .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.035), transparent 76%),
      radial-gradient(circle at 86% 10%, rgba(215,94,37,.18), transparent 34%);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: .14em;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(31,24,18,.08);
    box-shadow: 0 12px 28px rgba(39,29,19,.07);
  }

  html[data-theme="dark"] .hero-eyebrow {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.1);
  }

  .hero-title {
    max-width: 9ch;
    margin: 0 0 14px;
    font-size: clamp(39px, 12vw, 48px);
    line-height: .94;
    letter-spacing: -.045em;
  }

  .hero-title em {
    color: #d85f24;
  }

  .hero-lede {
    max-width: 34ch;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.54;
  }

  .hero-cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    margin-bottom: 16px;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 17px;
    font-size: 13px;
    font-weight: 780;
  }

  .btn-primary {
    color: #fff8ee;
    background: #111;
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
  }

  .btn-ghost {
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(31,24,18,.11);
  }

  html[data-theme="dark"] .btn-primary {
    color: #17100b;
    background: #f2e6d5;
  }

  html[data-theme="dark"] .btn-ghost {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
  }

  .hero-meta {
    max-width: none;
    border: 0;
    background: transparent;
    gap: 8px;
  }

  .hero-meta > span:not(.hm-sep) {
    border-radius: 16px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(31,24,18,.08);
  }

  html[data-theme="dark"] .hero-meta > span:not(.hm-sep) {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
  }

  .mobile-hero-visual {
    position: relative;
    display: block;
    height: clamp(228px, 64vw, 286px);
    margin-top: 22px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(32,24,17,.1);
    box-shadow: 0 24px 54px rgba(48,32,18,.18);
    isolation: isolate;
  }

  .mobile-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.48)),
      radial-gradient(circle at 66% 34%, rgba(245,180,70,.4), transparent 28%);
    pointer-events: none;
  }

  .mh-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
  }

  .mh-photo-dark {
    display: none;
  }

  html[data-theme="dark"] .mh-photo-light {
    display: none;
  }

  html[data-theme="dark"] .mh-photo-dark {
    display: block;
  }

  .mh-logo-card,
  .mh-chip {
    position: absolute;
    z-index: 3;
    color: #fff;
    background: rgba(8,8,8,.58);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mh-logo-card {
    left: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 11px 8px 8px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 800;
  }

  .mh-logo-card img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .mh-chip {
    right: 13px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
  }

  .mh-chip-top {
    top: 13px;
  }

  .mh-chip-bottom {
    bottom: 14px;
  }

  .process,
  .story,
  .menu {
    padding-left: 14px;
    padding-right: 14px;
  }

  .process {
    padding-top: 28px;
  }

  .process .sect-title,
  .menu-intro-title,
  .cat-title {
    letter-spacing: -.04em;
  }

  .process .sect-title {
    max-width: 330px;
    font-size: 35px;
  }

  .process-grid {
    grid-auto-columns: minmax(236px, 84%);
    gap: 12px;
  }

  .process-card {
    min-height: 160px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(32,24,17,.09);
    box-shadow: 0 18px 40px rgba(46,32,18,.08);
  }

  html[data-theme="dark"] .process-card {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 18px 44px rgba(0,0,0,.2);
  }

  .stats {
    display: none;
  }

  .story-media > .story-frame {
    min-height: 390px;
    border-radius: 28px;
    background: rgba(255,255,255,.54);
    box-shadow: 0 22px 48px rgba(48,32,18,.1);
  }

  html[data-theme="dark"] .story-media > .story-frame {
    background: rgba(255,255,255,.05);
    box-shadow: 0 22px 48px rgba(0,0,0,.24);
  }

  .story-photo {
    max-width: 100%;
    max-height: 100%;
    border-radius: 22px;
    object-fit: cover;
  }

  .menu {
    padding-top: 26px;
    padding-bottom: 122px;
    margin-top: 10px;
  }

  .menu-intro {
    padding: 18px 0 16px;
  }

  .menu-intro-title {
    max-width: 330px;
    font-size: 38px;
  }

  .trust-strip {
    gap: 9px;
  }

  .trust-item {
    min-height: 68px;
    border-radius: 20px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(32,24,17,.08);
    box-shadow: 0 15px 34px rgba(48,32,18,.07);
  }

  html[data-theme="dark"] .trust-item {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
  }

  .cat-section {
    padding-top: 30px;
  }

  .cat-header {
    align-items: end;
    margin-bottom: 14px;
  }

  .cat-rule {
    flex-basis: 26px;
    margin-bottom: 12px;
  }

  .cat-title {
    font-size: 38px;
    line-height: .95;
  }

  .cat-subtitle {
    margin-top: 6px;
    font-size: 13px;
  }

  .cat-count {
    align-self: center;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 1;
    text-align: center;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(32,24,17,.1);
    box-shadow: 0 10px 24px rgba(48,32,18,.08);
  }

  html[data-theme="dark"] .cat-count {
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.12);
  }

  .cat-grid {
    gap: 16px;
  }

  .dish-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(32,24,17,.09);
    box-shadow: 0 20px 44px rgba(47,31,17,.11);
    transform: translateZ(0);
  }

  html[data-theme="dark"] .dish-card {
    background: rgba(18,22,28,.84);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
  }

  .dish-media {
    height: clamp(188px, 53vw, 234px);
    min-height: 0;
    border-radius: 0;
    background: #ece1d1;
  }

  .dish-media img {
    object-fit: cover;
    transform: scale(1.01);
  }

  .badge {
    top: 13px;
    left: 13px;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 11px;
    letter-spacing: .12em;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }

  .dish-body {
    padding: 17px 18px 18px;
  }

  .dish-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    margin-bottom: 10px;
  }

  .dish-name {
    font-size: 25px;
    line-height: .98;
    letter-spacing: -.04em;
  }

  .dish-price {
    min-width: max-content;
    margin: 0;
    padding: 7px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
    background: rgba(216,95,36,.1);
    color: #b94e1b;
  }

  html[data-theme="dark"] .dish-price {
    background: rgba(242,230,213,.09);
    color: #f4e5d4;
  }

  .dish-desc {
    min-height: 0;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.46;
    -webkit-line-clamp: 3;
  }

  .dish-foot {
    margin-top: auto;
  }

  .add-btn,
  .qty-stepper {
    width: 100%;
    height: 50px;
    border-radius: 17px;
  }

  .add-btn {
    justify-content: center;
    font-size: 15px;
    font-weight: 820;
    color: #fff8ef;
    background: #111;
  }

  html[data-theme="dark"] .add-btn {
    color: #17100b;
    background: #f2e6d5;
  }

  .qty-stepper {
    max-width: 160px;
    border-color: #d85f24;
    background: #fff0df;
  }

  .floating-order {
    width: calc(100% - 28px);
    bottom: calc(12px + var(--safe-bottom));
  }

  .floating-order button {
    min-height: 62px;
    border-radius: 22px;
    background: rgba(10, 8, 6, .94);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 44px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .fo-count {
    width: 38px;
    height: 38px;
  }

  .cart-drawer {
    height: min(86vh, 720px);
    border-radius: 30px 30px 0 0;
    background: rgba(255, 250, 241, .98);
  }

  html[data-theme="dark"] .cart-drawer {
    background: rgba(10,14,19,.98);
  }

  .cart-head {
    padding: 18px 18px 16px;
  }

  .cart-line {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 12px 0;
  }

  .cart-line img {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .checkout-btn {
    min-height: 58px;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 38px;
  }

  .dish-name {
    font-size: 23px;
  }

  .menu-intro-title,
  .cat-title {
    font-size: 35px;
  }
}

@media (max-width: 760px) {
  .app {
    padding-top: var(--header-h);
  }

  .cat-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    transition: transform .24s ease, opacity .18s ease;
  }

  .cat-bar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .theme-fab {
    top: 8px;
    right: 66px;
    display: grid;
    place-items: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    transform: none;
  }

  .theme-fab-icon {
    display: block;
    line-height: 1;
  }

  .process {
    overflow-x: clip;
    padding-top: 36px;
  }

  .process .sect-head {
    margin-bottom: 18px;
  }

  .process .sect-title {
    max-width: 360px;
    font-size: 36px;
    line-height: .98;
  }

  .process-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    gap: 12px;
    padding-bottom: 0;
    scroll-snap-type: none;
    position: relative;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(180deg, rgba(216,95,36,.15), rgba(216,95,36,.55), rgba(216,95,36,.12));
    pointer-events: none;
  }

  .process-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    scroll-snap-align: none;
    padding: 18px 18px 18px 74px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.42)),
      radial-gradient(circle at 86% 12%, rgba(216,95,36,.1), transparent 30%);
    border: 1px solid rgba(32,24,17,.09);
    box-shadow: 0 18px 38px rgba(44,29,14,.08);
  }

  .process-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(216,95,36,.16);
  }

  html[data-theme="dark"] .process-card {
    background:
      linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
      radial-gradient(circle at 86% 12%, rgba(216,95,36,.16), transparent 32%);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
  }

  .pc-num {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 15px;
    color: #fff7ed;
    background: #111;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
  }

  html[data-theme="dark"] .pc-num {
    color: #17100b;
    background: #f2e6d5;
  }

  .pc-title {
    margin-bottom: 6px;
    font-size: 22px;
    letter-spacing: -.02em;
  }

  .pc-desc {
    max-width: 31ch;
    font-size: 14px;
    line-height: 1.45;
  }

  .pc-line {
    width: 58px;
    margin-top: 12px;
  }
}

.story-inner-text-only {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.story-inner-text-only .story-text {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.story-inline-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(32,24,17,.1);
  background: rgba(255,255,255,.42);
  box-shadow: 0 22px 52px rgba(44,29,14,.12);
}

.story-inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-inline-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(12,12,12,.82);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html[data-theme="dark"] .story-inline-photo {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  box-shadow: 0 24px 58px rgba(0,0,0,.3);
}

@media (max-width: 760px) {
  .story-inner-text-only {
    display: block;
  }

  .story-inner-text-only .story-text {
    padding: 4px 0 0;
  }

  .story-inline-photo {
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .bg-glb-shell {
    place-items: center;
  }

  .bg-glb-float {
    width: min(104vw, 440px);
    max-width: 440px;
    transform-origin: center;
  }

  .bg-glb-float > model-viewer,
  html:not([data-theme="dark"]) .bg-glb-float > model-viewer,
  html[data-theme="dark"] .bg-glb-float > model-viewer {
    opacity: .18;
  }
}

@media (max-width: 390px) {
  .bg-glb-float {
    width: min(98vw, 390px);
  }
}

@media (max-width: 760px) {
  .dish-card {
    background: rgba(255,255,255,.34);
    border-color: rgba(32,24,17,.12);
    box-shadow: 0 18px 42px rgba(44,29,14,.08);
    backdrop-filter: blur(14px) saturate(128%);
    -webkit-backdrop-filter: blur(14px) saturate(128%);
  }

  .dish-body {
    background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.16));
  }

  html[data-theme="dark"] .dish-card {
    background: rgba(13,17,23,.42);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
  }

  html[data-theme="dark"] .dish-body {
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  }
}

/* Final mobile polish pass: stronger hierarchy, cleaner glass, smoother taps. */
@media (max-width: 760px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-ease: cubic-bezier(.2,.8,.2,1);
  }

  body {
    text-rendering: optimizeLegibility;
  }

  .bg-glb-float {
    width: min(94vw, 410px);
  }

  .bg-glb-float > model-viewer,
  html:not([data-theme="dark"]) .bg-glb-float > model-viewer,
  html[data-theme="dark"] .bg-glb-float > model-viewer {
    opacity: .145;
    filter: contrast(1.05) saturate(.92);
  }

  .hero,
  .process,
  .stats,
  .story,
  .menu {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .hero {
    padding-top: 44px !important;
    padding-bottom: 34px !important;
  }

  .hero-content {
    text-align: center;
  }

  .hero-eyebrow {
    max-width: 100%;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(44,29,14,.08);
  }

  .hero-title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px;
    overflow: hidden;
  }

  .hero-meta > span:not(.hm-sep) {
    min-width: 0;
    padding-left: 6px;
    padding-right: 6px;
  }

  .btn-primary,
  .btn-ghost,
  .add-btn,
  .cat-pill,
  .cart-btn,
  .theme-fab {
    transition:
      transform .24s var(--mobile-ease),
      box-shadow .24s var(--mobile-ease),
      background-color .24s var(--mobile-ease),
      opacity .24s var(--mobile-ease);
  }

  .btn-primary:active,
  .btn-ghost:active,
  .add-btn:active,
  .cat-pill:active,
  .cart-btn:active,
  .theme-fab:active {
    transform: scale(.96);
  }

  .cat-bar {
    height: 56px;
    padding: 8px 0;
    background: rgba(250,245,237,.78);
    border-bottom: 1px solid rgba(34,25,17,.08);
    box-shadow: 0 16px 36px rgba(34,24,15,.08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  html[data-theme="dark"] .cat-bar {
    background: rgba(8,11,15,.72);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 18px 42px rgba(0,0,0,.32);
  }

  .cat-bar-inner {
    gap: 9px;
    padding-inline: var(--mobile-gutter);
  }

  .cat-pill,
  .cat-pill.active {
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 780;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .cat-pill.active {
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
  }

  .cat-section {
    padding-top: 38px;
  }

  .cat-header {
    align-items: center;
    margin-bottom: 18px;
  }

  .cat-title {
    letter-spacing: -.04em;
  }

  .cat-subtitle {
    max-width: 24ch;
  }

  .cat-grid {
    gap: 18px;
  }

  .dish-card {
    position: relative;
    isolation: isolate;
    border-radius: 30px;
    background: rgba(255,255,255,.46);
    border-color: rgba(32,24,17,.12);
    box-shadow: 0 20px 46px rgba(44,29,14,.11);
    transform: translateZ(0);
  }

  .dish-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255,255,255,.5), transparent 34%),
      radial-gradient(circle at 92% 14%, rgba(216,95,36,.1), transparent 30%);
  }

  .dish-card > * {
    position: relative;
    z-index: 2;
  }

  .dish-card:active {
    transform: scale(.992);
  }

  html[data-theme="dark"] .dish-card {
    background: rgba(12,16,22,.56);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 22px 54px rgba(0,0,0,.3);
  }

  .dish-media {
    height: clamp(206px, 57vw, 252px);
    background:
      radial-gradient(circle at 50% 22%, rgba(255,255,255,.22), transparent 38%),
      #e8ded0;
  }

  .dish-media img {
    filter: saturate(1.04) contrast(1.02);
  }

  .dish-body {
    padding: 19px 20px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.22));
  }

  html[data-theme="dark"] .dish-body {
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  }

  .dish-name {
    letter-spacing: -.045em;
  }

  .dish-desc {
    line-height: 1.55;
  }

  .dish-price {
    min-width: 66px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,241,229,.86);
  }

  html[data-theme="dark"] .dish-price {
    background: rgba(255,255,255,.08);
  }

  .add-btn {
    min-height: 52px;
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
  }

  .process {
    padding-top: 42px;
  }

  .process-card {
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(44,29,14,.09);
  }

  .story {
    padding-top: 34px;
  }

  .story-inline-photo {
    box-shadow: 0 24px 56px rgba(44,29,14,.13);
  }

  .cart-drawer {
    background:
      linear-gradient(180deg, rgba(255,250,241,.98), rgba(250,244,235,.98));
    box-shadow: 0 -24px 64px rgba(28,20,12,.24);
  }

  html[data-theme="dark"] .cart-drawer {
    background:
      linear-gradient(180deg, rgba(11,14,19,.98), rgba(7,10,14,.98));
    box-shadow: 0 -24px 70px rgba(0,0,0,.5);
  }

  .cart-head {
    border-bottom: 1px solid rgba(32,24,17,.1);
  }

  html[data-theme="dark"] .cart-head {
    border-bottom-color: rgba(255,255,255,.1);
  }

  .site-foot {
    margin: 34px var(--mobile-gutter) 0;
    padding: 34px 20px 24px;
    border-radius: 34px 34px 0 0;
  }

  .foot-grid {
    gap: 28px;
  }

  .foot-map,
  .foot-map-link {
    max-width: none;
  }

  .foot-map {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
  }

  .foot-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(216,95,36,.14);
  }
}

/* Mobile-first hardening: stable widths, fixed type scale, cleaner tap targets. */
@media (max-width: 760px) {
  :root {
    --header-h: 58px;
    --catbar-h: 54px;
    --mobile-gutter: 18px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body,
  #root,
  .app {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .app {
    padding-top: var(--header-h);
  }

  .site-header {
    height: var(--header-h);
    background: rgba(255, 250, 242, .96);
    border-bottom: 1px solid rgba(32, 24, 17, .09);
    box-shadow: 0 10px 28px rgba(31, 22, 13, .08);
  }

  html[data-theme="dark"] .site-header {
    background: rgba(8, 11, 15, .96);
    border-bottom-color: rgba(255,255,255,.1);
  }

  .header-inner {
    min-width: 0;
    padding: 0 12px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 42px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-sub {
    max-width: 158px;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .theme-fab,
  .cart-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .theme-fab {
    top: 8px;
    right: 64px;
  }

  .cart-btn {
    margin-left: 0;
  }

  .cat-bar {
    top: var(--header-h);
    height: var(--catbar-h);
    padding: 7px 0;
    background: rgba(255, 250, 242, .94);
    border-bottom: 1px solid rgba(32, 24, 17, .08);
    box-shadow: 0 12px 30px rgba(31,22,13,.08);
  }

  html[data-theme="dark"] .cat-bar {
    background: rgba(8, 11, 15, .92);
    border-bottom-color: rgba(255,255,255,.1);
  }

  .cat-bar:not(.visible) {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-110%) !important;
  }

  .cat-bar[aria-hidden="true"] {
    display: none !important;
  }

  .cat-bar[aria-hidden="false"] {
    display: block !important;
  }

  .cat-bar.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .cat-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 40px;
    max-width: 100%;
    padding: 0 var(--mobile-gutter);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .cat-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .cat-pill,
  .cat-pill.active {
    position: static;
    flex: 0 0 auto;
    min-width: max-content;
    height: 38px;
    padding: 0 16px;
    white-space: nowrap;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    scroll-snap-align: center;
  }

  .hero {
    min-height: auto !important;
    padding: 36px var(--mobile-gutter) 26px !important;
  }

  .hero-content {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
    padding-top: 0;
  }

  .hero-eyebrow {
    max-width: min(100%, 352px);
    min-height: 36px;
    padding: 8px 12px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .14em;
    white-space: normal;
  }

  .hero-title {
    max-width: 9.5ch;
    margin: 24px auto 16px;
    font-size: 47px;
    line-height: .95;
    letter-spacing: -.045em;
  }

  .hero-lede {
    max-width: 30ch;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-cta {
    width: 100%;
    max-width: 344px;
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr) !important;
    margin: 0 auto 16px;
    gap: 10px;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-meta {
    max-width: 100% !important;
    gap: 8px;
  }

  .hero-meta > span:not(.hm-sep) {
    min-height: 54px;
    font-size: 11px;
  }

  .hero-meta b {
    font-size: 15px;
  }

  .bg-glb-shell {
    z-index: 0;
    place-items: center;
    overflow: hidden;
  }

  .bg-glb-float {
    width: min(86vw, 360px);
    max-width: 360px;
  }

  .bg-glb-float > model-viewer,
  html:not([data-theme="dark"]) .bg-glb-float > model-viewer,
  html[data-theme="dark"] .bg-glb-float > model-viewer {
    opacity: .13;
    filter: contrast(1.06) saturate(.9);
  }

  .hero-decor {
    opacity: .14;
  }

  .process,
  .story,
  .menu {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .process {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .process .sect-head {
    margin-bottom: 18px;
  }

  .sect-title,
  .process .sect-title {
    max-width: 100%;
    font-size: 38px;
    line-height: .98;
    letter-spacing: -.035em;
  }

  .process-grid {
    gap: 12px;
  }

  .process-card {
    padding: 17px 17px 17px 72px;
  }

  .pc-title {
    font-size: 22px;
  }

  .pc-desc {
    font-size: 14px;
  }

  .story {
    padding-top: 32px;
  }

  .story-inline-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 18px 0 24px;
  }

  .story-text p {
    font-size: 15px;
    line-height: 1.65;
  }

  .menu {
    padding-top: 28px;
  }

  .menu-intro {
    padding-top: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .menu-intro-eyebrow {
    width: 100%;
    text-align: center;
  }

  .menu-intro-title,
  .cat-title {
    font-size: 40px;
    line-height: .98;
    letter-spacing: -.04em;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .trust-item {
    min-width: 0;
    min-height: 72px;
    padding: 12px 8px;
  }

  .cat-header {
    grid-template-columns: auto minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
  }

  .cat-count {
    justify-self: center;
    align-self: center;
    width: 38px;
    height: 38px;
  }

  .cat-grid {
    gap: 18px;
  }

  .dish-card {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
  }

  .dish-media {
    height: 222px;
  }

  .dish-body {
    padding: 18px 20px 20px;
  }

  .dish-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .dish-name {
    min-width: 0;
    font-size: 26px;
    line-height: .98;
    letter-spacing: -.04em;
    overflow-wrap: break-word;
  }

  .dish-price {
    white-space: nowrap;
  }

  .dish-desc {
    font-size: 15px;
    line-height: 1.52;
  }

  .add-btn,
  .qty-stepper {
    min-height: 52px;
  }

  .site-foot {
    width: auto;
    max-width: none;
    margin: 34px var(--mobile-gutter) 0;
  }
}

@media (max-width: 390px) {
  :root {
    --mobile-gutter: 16px;
  }

  .hero-title {
    font-size: 43px;
  }

  .sect-title,
  .process .sect-title,
  .menu-intro-title,
  .cat-title {
    font-size: 36px;
  }

  .dish-name {
    font-size: 25px;
  }

  .dish-media {
    height: 214px;
  }
}

@media (max-width: 340px) {
  :root {
    --mobile-gutter: 14px;
  }

  .header-inner {
    padding-inline: 10px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand {
    min-height: 40px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    max-width: 140px;
    font-size: 7.5px;
  }

  .theme-fab,
  .cart-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .theme-fab {
    right: 60px;
  }

  .hero {
    padding-top: 32px !important;
  }

  .hero-eyebrow {
    max-width: 292px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero-title {
    font-size: 39px;
  }

  .hero-lede {
    font-size: 14px;
  }

  .hero-cta {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 12.5px;
  }

  .cat-pill,
  .cat-pill.active {
    height: 36px;
    padding-inline: 14px;
    font-size: 12.5px;
  }

  .hero-meta > span:not(.hm-sep) {
    min-height: 52px;
    padding-inline: 5px;
    font-size: 10.5px;
  }

  .sect-title,
  .process .sect-title,
  .menu-intro-title,
  .cat-title {
    font-size: 34px;
  }

  .trust-item {
    min-height: 68px;
  }

  .dish-media {
    height: 204px;
  }

  .dish-body {
    padding: 17px 18px 19px;
  }

  .dish-name {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .theme-fab.theme-btn {
    top: 18px;
    right: 68px;
    display: grid !important;
    place-items: center;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    padding: 0 !important;
    border-radius: 999px;
    font-size: 0;
    color: #1a1612;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(26,22,18,.16);
    box-shadow: none;
  }

  .theme-fab.theme-btn svg {
    display: block;
    width: 16px;
    height: 16px;
  }

  .theme-fab.theme-btn .theme-fab-icon {
    display: none;
  }

  html[data-theme="dark"] .theme-fab.theme-btn {
    color: var(--ink);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
  }
}

@media (max-width: 390px) {
  .theme-fab.theme-btn {
    top: 17px;
    right: 60px;
  }
}

.foot-map {
  height: auto;
  aspect-ratio: 1048 / 537;
  contain: paint;
  background:
    radial-gradient(circle at 62% 56%, rgba(255,255,255,.22), transparent 18%),
    linear-gradient(135deg, #6b7978, #535853);
}

.foot-map iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.foot-map * {
  pointer-events: none;
}

.foot-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .92;
}

.foot-map-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foot-map-city,
.foot-map-code {
  font-family: var(--font-sans);
  fill: rgba(27, 32, 36, .76);
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(248, 244, 235, .75);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.foot-map-city {
  font-size: 15px;
}

.foot-map-city-main {
  font-size: 27px;
  letter-spacing: -.02em;
}

.foot-map-code {
  fill: #d95f24;
  font-size: 12px;
  stroke-width: 2px;
}

@media (max-width: 760px) {
  .foot-map {
    height: auto;
  }
}

.site-header .brand-logo {
  background: transparent !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .site-header .brand-logo {
  filter: invert(1) brightness(1.15);
}

.floating-nav .fn-brand img {
  background: transparent !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

html[data-theme="dark"] .floating-nav .fn-brand img {
  filter: invert(1) brightness(1.15);
}

.foot-logo.fn-brand {
  color: var(--foot-brand-color, var(--ink));
}

.foot-logo.fn-brand img {
  filter: var(--foot-brand-logo-filter, none);
}

html[data-theme="dark"] .site-foot {
  --foot-brand-color: var(--ink);
  --foot-brand-logo-filter: invert(1) brightness(1.15);
}

.foot-map-link,
.foot-map {
  width: 100%;
  max-width: 520px;
}

.foot-map-link {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
}

.foot-phone {
  position: relative;
  z-index: 1;
}

.foot-bottom {
  color: rgba(255, 255, 255, .68) !important;
}

.foot-bottom span {
  color: inherit;
}

@media (min-width: 901px) {
  .site-header {
    display: none !important;
  }

  .floating-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) !important;
  }

  html {
    scroll-padding-top: 108px;
  }

  .process,
  .story,
  .menu,
  .site-foot,
  .cat-section {
    scroll-margin-top: 108px !important;
  }
}

@media (max-width: 900px) {
  .site-header .header-inner {
    align-items: center !important;
  }

  .theme-fab.theme-btn,
  .site-header .cart-btn {
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    line-height: 1 !important;
  }

  .theme-fab.theme-btn {
    top: calc((var(--header-h) - 42px) / 2) !important;
    right: 62px !important;
  }

  .site-header .cart-btn {
    align-self: center !important;
    margin: 0 !important;
  }
}

@media (max-width: 340px) {
  .theme-fab.theme-btn,
  .site-header .cart-btn {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  .theme-fab.theme-btn {
    top: calc((var(--header-h) - 40px) / 2) !important;
    right: 58px !important;
  }
}

.cart-scrim {
  z-index: 120 !important;
  background: rgba(18, 14, 10, .58) !important;
  backdrop-filter: blur(7px) saturate(110%) !important;
  -webkit-backdrop-filter: blur(7px) saturate(110%) !important;
}

.cart-drawer {
  z-index: 121 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fffaf2 0%, #fbf2e6 100%) !important;
  color: #16110c !important;
  border: 1px solid rgba(30, 22, 14, .1) !important;
  box-shadow: 0 -30px 80px rgba(20, 14, 8, .28) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] .cart-drawer {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #0d1117 0%, #080b10 100%) !important;
  color: #f7efe4 !important;
  border-color: rgba(255, 255, 255, .1) !important;
  box-shadow: 0 -30px 90px rgba(0, 0, 0, .66) !important;
}

.cart-drawer.empty-cart .cart-body {
  flex: 1 1 auto !important;
  overflow: hidden !important;
  padding: 0 22px 28px !important;
}

.cart-drawer.empty-cart .cart-empty {
  min-height: 100%;
  padding: 28px 18px 58px !important;
  justify-content: center;
}

.cart-empty {
  color: rgba(71, 62, 52, .72) !important;
}

.cart-empty p {
  color: #1b1510 !important;
  font-size: clamp(24px, 6vw, 30px) !important;
  line-height: 1.05 !important;
}

.cart-empty span {
  max-width: 260px;
  color: rgba(71, 62, 52, .72) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.empty-art {
  color: var(--accent) !important;
  opacity: .95 !important;
  margin-bottom: 24px !important;
}

html[data-theme="dark"] .cart-empty,
html[data-theme="dark"] .cart-empty span {
  color: rgba(247, 239, 228, .66) !important;
}

html[data-theme="dark"] .cart-empty p {
  color: #fff7ec !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
  position: relative;
  height: 36px;
  min-width: 58px;
  border-radius: 999px;
  border: 1px solid rgba(26, 22, 18, .14);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(20, 14, 10, .08);
  font: 800 12px/1 var(--font-body);
  letter-spacing: .08em;
  text-align: center;
  padding: 0 12px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 22, 18, .24);
}

.lang-current {
  color: currentColor;
}

.lang-next {
  opacity: .38;
  font-weight: 700;
}

html[data-theme="dark"] .lang-switch {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  color: var(--ink);
}

.site-header .lang-switch {
  margin-left: auto;
}

.site-header .lang-switch + .cart-btn {
  margin-left: 8px;
}

.fn-actions .lang-switch {
  margin-right: 8px;
}

@media (max-width: 900px) {
  .site-header .brand {
    flex: 0 1 calc(100vw - 180px);
    max-width: calc(100vw - 180px);
    overflow: hidden;
  }

  .site-header .brand-text,
  .site-header .brand-name,
  .site-header .brand-sub {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .lang-switch {
    position: fixed;
    top: calc((var(--header-h) - 42px) / 2);
    right: 110px;
    z-index: 44;
    width: 42px;
    min-width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 20px rgba(28, 20, 12, .08);
  }

  .site-header .lang-switch + .cart-btn {
    margin-left: 0;
  }
}

@media (max-width: 340px) {
  .site-header .brand {
    flex-basis: calc(100vw - 168px);
    max-width: calc(100vw - 168px);
    gap: 8px;
  }

  .site-header .lang-switch {
    top: calc((var(--header-h) - 40px) / 2);
    right: 104px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .cart-drawer {
    height: min(88vh, 720px) !important;
    border-radius: 28px 28px 0 0 !important;
  }

  .cart-head {
    padding: 18px 22px 16px !important;
    background: rgba(255, 250, 242, .96) !important;
    border-bottom-color: rgba(30, 22, 14, .1) !important;
  }

  html[data-theme="dark"] .cart-head {
    background: rgba(13, 17, 23, .96) !important;
    border-bottom-color: rgba(255, 255, 255, .1) !important;
  }
}
