:root {
      --paper: #f2eadc;
      --paper-2: #fff9ee;
      --ink: #111410;
      --muted: #6e675b;
      --line: rgba(17, 20, 16, .16);
      --line-strong: rgba(17, 20, 16, .28);
      --night: #060806;
      --forest: #122019;
      --forest-2: #1e3026;
      --sage: #789174;
      --terracotta: #bb6653;
      --terracotta-dark: #914638;
      --gold: #c5a06a;
      --cream-line: rgba(255, 249, 238, .24);
      --cream-muted: rgba(255, 249, 238, .68);
      --ease: cubic-bezier(.19, 1, .22, 1);
      --bar: 720px;
      --shell: 1280px;
      --radius: 6px;
    }

    * {
      box-sizing: border-box;
    }

	    html {
	      background: var(--paper);
	      color: var(--ink);
	      scroll-behavior: smooth;
	      overflow-x: hidden;
	      touch-action: manipulation;
	      -webkit-text-size-adjust: 100%;
	    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: Jost, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.45;
	      overflow-wrap: normal;
	      word-break: normal;
	      hyphens: none;
	      touch-action: manipulation;
	    }

    body.locked,
    body.modal-open {
      overflow: hidden;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

	    a {
	      color: inherit;
	      text-decoration: none;
	      touch-action: manipulation;
	    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
      border-radius: 0;
	      overflow-wrap: normal;
	      word-break: normal;
	      hyphens: none;
	      touch-action: manipulation;
	    }

	    [role="button"],
	    .dish-card,
	    .cart-fab,
	    .profile-mini,
	    .hero-cta,
	    .chip {
	      touch-action: manipulation;
	    }

    button {
      border: 0;
      background: none;
      cursor: pointer;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #0b0d0b;
    }

    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 4px;
    }

    .display {
      font-family: Forum, Georgia, "Times New Roman", serif;
      font-weight: 400;
    }

    .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;
    }

    .shell {
      width: min(var(--shell), calc(100% - 72px));
      margin: 0 auto;
    }

    .landing-view section[id],
    .order-page section[id],
    .booking-page,
    .profile-page {
      scroll-margin-top: 92px;
    }

    .landing-view,
    .booking-page,
    .profile-page {
      background: var(--paper);
    }

    .order-page,
    .booking-page,
    .profile-page {
      display: none;
      min-height: 100svh;
    }

    .order-page {
      background:
        linear-gradient(180deg, rgba(10, 16, 12, .94), rgba(10, 16, 12, .99)),
        var(--forest);
      color: var(--paper-2);
    }

    .booking-page {
      color: var(--ink);
    }

    body.menu-page-active,
    body.booking-page-active,
    body.profile-page-active {
      background: var(--forest);
    }

    body.menu-page-active .landing-view,
    body.menu-page-active .footer,
    body.booking-page-active .landing-view,
    body.booking-page-active .order-page,
    body.booking-page-active .footer,
    body.profile-page-active .landing-view,
    body.profile-page-active .order-page,
    body.profile-page-active .booking-page,
    body.profile-page-active .footer {
      display: none;
    }

    body.menu-page-active .order-page {
      display: block;
    }

    body.booking-page-active .booking-page {
      display: block;
    }

    body.profile-page-active .profile-page {
      display: block;
    }

    body:not(.menu-page-active):not(.cart-has-items) .cart-fab,
    body:not(.cart-has-items) .cart-fab {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(16px);
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 400;
      display: grid;
      place-items: center;
      background: var(--paper);
      color: var(--ink);
      transition: opacity 900ms var(--ease), visibility 900ms var(--ease);
    }

    body.ready .preloader {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-line {
      width: min(560px, calc(100% - 48px));
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 28px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .loader-line span {
      opacity: 0;
      animation: fadeWord 1200ms var(--ease) forwards;
    }

    .loader-line span:nth-child(2) {
      font-size: 32px;
      font-weight: 400;
      letter-spacing: .14em;
      animation-delay: 450ms;
    }

    .loader-line span:nth-child(3) {
      text-align: right;
      animation-delay: 900ms;
    }

    @keyframes fadeWord {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .topbar {
      position: fixed;
      z-index: 160;
      top: 16px;
      left: 50%;
      width: min(820px, calc(100% - 40px));
      min-height: 58px;
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      border: 1px solid rgba(255, 249, 238, .3);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 249, 238, .1), rgba(255, 249, 238, .03)),
        rgba(7, 9, 7, .64);
      color: var(--paper-2);
      box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
      backdrop-filter: blur(22px);
      opacity: 0;
      animation: navIn 900ms var(--ease) 2350ms forwards;
      overflow: hidden;
    }

    @keyframes navIn {
      from { opacity: 0; transform: translate(-50%, -12px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }

    .topbar a,
    .topbar button {
      min-height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      color: inherit;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .top-left {
      justify-self: start;
      display: inline-flex;
      align-items: stretch;
      height: 100%;
    }

    .top-link {
      border-right: 1px solid rgba(255, 249, 238, .15);
      transition: background 220ms ease, color 220ms ease;
    }

    .top-link:hover,
    .topbar button:hover {
      background: rgba(255, 249, 238, .09);
      color: #fff6de;
    }

    .topbar .brand {
      font-family: Forum, Georgia, serif;
      font-size: 23px;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: none;
      white-space: nowrap;
      padding: 0 24px;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
    }

    .top-actions {
      justify-self: end;
      display: flex;
      align-items: stretch;
      height: 100%;
      border-left: 1px solid rgba(255, 249, 238, .15);
    }

    .topbar .phone-mini {
      display: none !important;
    }

    .cart-mini {
      gap: 10px;
      border-right: 1px solid rgba(255, 249, 238, .15);
    }

    .profile-mini {
      gap: 8px;
      border-right: 1px solid rgba(255, 249, 238, .15);
      white-space: nowrap;
    }

    .profile-mini-short {
      display: none;
    }

    .profile-mini-icon {
      position: relative;
      width: 19px;
      height: 21px;
      display: none;
    }

    .profile-mini-icon::before,
    .profile-mini-icon::after {
      content: "";
      position: absolute;
      left: 50%;
      border: 1px solid currentColor;
      transform: translateX(-50%);
    }

    .profile-mini-icon::before {
      top: 2px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 249, 238, .08);
    }

    .profile-mini-icon::after {
      bottom: 1px;
      width: 15px;
      height: 8px;
      border-radius: 8px 8px 3px 3px;
    }

    .cart-mini i {
      position: absolute;
      top: -7px;
      right: -8px;
      min-width: 16px;
      height: 16px;
      display: inline-grid;
      place-items: center;
      padding: 0 4px;
      border: 1px solid rgba(255, 249, 238, .72);
      border-radius: 999px;
      background: rgba(8, 10, 8, .86);
      font-style: normal;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1;
    }

    .cart-mini-icon {
      position: relative;
      width: 25px;
      height: 23px;
      display: inline-block;
    }

    .cart-mini-icon::before {
      content: "";
      position: absolute;
      left: 5px;
      top: 8px;
      width: 17px;
      height: 10px;
      border: 1.5px solid currentColor;
      border-radius: 2px 2px 5px 5px;
      background:
        linear-gradient(currentColor, currentColor) 4px 3px / 1px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 9px 3px / 1px 5px no-repeat;
    }

    .cart-mini-icon::after {
      content: "";
      position: absolute;
      left: 8px;
      bottom: 1px;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 10px 0 0 currentColor;
    }

    .cart-mini-handle {
      position: absolute;
      left: 1px;
      top: 5px;
      width: 9px;
      height: 1.5px;
      background: currentColor;
      transform: rotate(22deg);
      transform-origin: left center;
    }

    .menu-icon {
      width: 23px;
      display: grid;
      gap: 5px;
    }

    .menu-icon i {
      display: block;
      height: 1px;
      background: currentColor;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      color: var(--paper-2);
      background: var(--night);
      overflow: hidden;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      opacity: .88;
      transform: scale(1.045);
      transition: transform 4200ms var(--ease), opacity 2200ms var(--ease);
    }

    body.ready .hero-photo {
      opacity: 1;
      transform: scale(1);
    }

    .hero-photo img {
      object-position: center 28%;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 70% 48%, rgba(5, 7, 5, .28) 0%, rgba(5, 7, 5, .62) 60%, rgba(5, 7, 5, .78) 100%),
        linear-gradient(90deg, rgba(5, 7, 5, .86) 0%, rgba(5, 7, 5, .58) 40%, rgba(5, 7, 5, .44) 76%),
        linear-gradient(0deg, rgba(5, 7, 5, .7), rgba(5, 7, 5, .16) 38%, rgba(5, 7, 5, .32));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      min-height: 100svh;
      display: grid;
      grid-template-rows: 1fr auto;
      padding: 160px 0 28px;
    }

    .hero-main {
      width: min(var(--shell), calc(100% - 72px));
      margin: 0 auto;
      align-self: end;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(260px, 390px);
      gap: 64px;
      align-items: flex-end;
    }

    .hero-title {
      font-size: 112px;
      line-height: .86;
      letter-spacing: .02em;
      text-transform: none;
      text-shadow: 0 3px 34px rgba(0, 0, 0, .72);
    }

    .hero-title .reveal {
      display: block;
      overflow: hidden;
      padding-bottom: 10px;
    }

    .hero-title .reveal span {
      display: block;
      transform: translateY(112%);
    }

    body.ready .hero-title .reveal span {
      animation: titleRise 1750ms var(--ease) forwards;
    }

    body.ready .hero-title .reveal:nth-child(1) span {
      animation-delay: 350ms;
    }

    body.ready .hero-title .reveal:nth-child(2) span {
      animation-delay: 650ms;
    }

    @keyframes titleRise {
      to { transform: translateY(0); }
    }

    .hero-side {
      max-width: 360px;
      padding: 0 0 14px 24px;
      border-left: 1px solid rgba(255, 249, 238, .42);
      opacity: 0;
      transform: translateY(18px);
    }

    body.ready .hero-side {
      animation: softUp 1200ms var(--ease) 950ms forwards;
    }

    @keyframes softUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-side p {
      color: rgba(255, 249, 238, .94);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-shadow: 0 2px 26px rgba(0, 0, 0, .9);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      margin-top: 0;
      padding: 0 18px;
      border: 1px solid rgba(255, 249, 238, .66);
      background: rgba(6, 8, 6, .48);
      color: var(--paper-2);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: background 280ms ease, color 280ms ease, transform 280ms ease;
    }

    .hero-cta:hover {
      background: var(--paper-2);
      color: var(--night);
      transform: translateY(-2px);
    }

    .hero-cta-secondary {
      border-color: rgba(255, 249, 238, .46);
      background: rgba(6, 8, 6, .42);
    }

    .hero-cta-secondary:hover {
      background: rgba(255, 249, 238, .1);
      color: var(--paper-2);
    }

    .hero-cta-profile {
      border-color: var(--gold);
      background: rgba(197, 160, 106, .18);
      color: #fff7df;
    }

    .hero-cta-profile:hover {
      background: var(--gold);
      color: var(--night);
    }

    .hero-quick-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .hero-quick-link {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 13px;
      border: 1px solid rgba(255, 249, 238, .26);
      background: rgba(6, 8, 6, .48);
      color: rgba(255, 249, 238, .88);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
      transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
    }

    .hero-quick-link:hover {
      border-color: var(--gold);
      background: rgba(197, 160, 106, .18);
      color: #fff8df;
    }

    .hero-meta {
      width: min(var(--shell), calc(100% - 72px));
      margin: 78px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(255, 249, 238, .2);
      background: rgba(7, 9, 7, .46);
      backdrop-filter: blur(16px);
      opacity: 0;
      transform: translateY(14px);
    }

    body.ready .hero-meta {
      animation: softUp 1050ms var(--ease) 1300ms forwards;
    }

    .hero-meta div {
      min-height: 82px;
      padding: 18px 22px;
      border-right: 1px solid rgba(255, 249, 238, .16);
    }

    .hero-meta div:last-child {
      border-right: 0;
    }

    .hero-meta b {
      display: block;
      margin-bottom: 8px;
      color: var(--cream-muted);
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero-meta span {
      display: block;
      color: var(--paper-2);
      font-size: 15px;
    }

    .section {
      position: relative;
      padding: 118px 0;
    }

    .section-label {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 820px;
      font-family: Forum, Georgia, serif;
      font-size: 58px;
      line-height: .98;
      font-weight: 400;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .lead {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .story {
      background: var(--paper);
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 86px;
      align-items: start;
    }

    .story-copy {
      padding-top: 30px;
    }

    .story-copy .lead {
      max-width: 620px;
      margin-top: 26px;
    }

    .story-photo {
      position: relative;
      aspect-ratio: 1 / 1.16;
      background: var(--night);
      overflow: hidden;
    }

    .story-photo::after {
      content: "";
      position: absolute;
      right: -16px;
      bottom: -16px;
      width: 64%;
      height: 64%;
      border: 1px solid var(--line-strong);
      pointer-events: none;
    }

    .statement {
      padding: 108px 0 132px;
      background: var(--paper-2);
    }

    .statement p {
      width: min(980px, calc(100% - 72px));
      margin: 0 auto;
      color: #25251f;
      font-family: Forum, Georgia, serif;
      font-size: 58px;
      line-height: 1.08;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .split-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 620px;
      background: var(--forest);
      color: var(--paper-2);
    }

    .split-feature .feature-photo {
      min-height: 520px;
    }

    .feature-panel {
      display: grid;
      align-content: center;
      padding: 86px;
      background: var(--terracotta);
    }

    .feature-panel .section-label,
    .feature-panel .lead {
      color: rgba(255, 249, 238, .78);
    }

    .feature-panel h2 {
      max-width: 560px;
      font-family: Forum, Georgia, serif;
      font-size: 54px;
      line-height: .98;
      font-weight: 400;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .feature-panel .lead {
      max-width: 520px;
      margin-top: 28px;
    }

    .feature-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .feature-cta {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border: 1px solid rgba(255, 249, 238, .72);
      color: var(--paper-2);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
    }

    .feature-cta:hover {
      transform: translateY(-2px);
      background: rgba(255, 249, 238, .12);
      border-color: var(--paper-2);
    }

    .feature-cta-primary {
      background: var(--paper-2);
      color: var(--terracotta);
      border-color: var(--paper-2);
    }

    .feature-cta-primary:hover {
      background: var(--night);
      border-color: var(--night);
      color: var(--paper-2);
    }

    .dark-editorial {
      position: relative;
      min-height: 690px;
      overflow: hidden;
      color: var(--paper-2);
      background: var(--night);
    }

    .dark-editorial img {
      position: absolute;
      inset: 0;
      opacity: .76;
    }

    .dark-editorial::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5, 7, 5, .66), rgba(5, 7, 5, .22) 58%, rgba(5, 7, 5, .68));
    }

    .dark-editorial .shell {
      position: relative;
      z-index: 2;
      min-height: 690px;
      display: grid;
      align-items: end;
      padding-bottom: 92px;
    }

    .dark-editorial h2 {
      max-width: 650px;
      font-family: Forum, Georgia, serif;
      font-size: 66px;
      line-height: .96;
      font-weight: 400;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .dark-editorial-actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .order-section {
      min-height: 100svh;
      padding: 116px 0 132px;
      background: transparent;
      scroll-margin-top: 0;
    }

    .order-head {
      max-width: 820px;
      padding-bottom: 20px;
    }

    .order-head .section-label,
    .order-head .lead {
      display: none;
    }

    .order-section .section-label,
    .order-section .lead {
      color: rgba(255, 249, 238, .68);
    }

    .order-tools {
      position: sticky;
      top: 82px;
      z-index: 120;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
      gap: 12px;
      align-items: center;
      margin: 0 -12px 0;
      padding: 12px;
      border: 1px solid rgba(255, 249, 238, .18);
      background: rgba(9, 15, 11, .86);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .filters {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      min-width: 0;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 2px 5px;
      scrollbar-width: none;
      overscroll-behavior-x: contain;
      touch-action: pan-x;
      user-select: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
    }

    .filters::-webkit-scrollbar {
      display: none;
    }

    .chip {
      flex: 0 0 auto;
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border: 1px solid rgba(255, 249, 238, .22);
      background: transparent;
      color: rgba(255, 249, 238, .72);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      white-space: nowrap;
      touch-action: pan-x;
      scroll-snap-align: start;
      transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
    }

    .chip-pdf {
      margin-left: 4px;
      border-color: rgba(197, 160, 106, .82);
      background: rgba(197, 160, 106, .12);
      color: var(--gold);
      text-decoration: none;
    }

    .chip.active,
    .chip:hover {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--ink);
    }

    .search {
      width: 100%;
      height: 46px;
      border: 1px solid rgba(255, 249, 238, .22);
      background: rgba(255, 249, 238, .06);
      padding: 0 18px;
      color: var(--paper-2);
      font-size: 15px;
      outline: none;
    }

    .search-field {
      min-width: 0;
    }

    .search::placeholder {
      color: rgba(255, 249, 238, .5);
    }

    .menu-board {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      padding-top: 34px;
    }

    .dish-card {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 472px;
      border: 1px solid rgba(197, 160, 106, .74);
      background: #1b211c;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
      transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
    }

    .dish-card::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 1px solid rgba(197, 160, 106, .18);
      pointer-events: none;
      transition: border-color 260ms ease;
    }

    .dish-card:hover {
      transform: translateY(-5px);
      border-color: rgba(235, 204, 151, .96);
      box-shadow: 0 28px 68px rgba(0, 0, 0, .28);
    }

    .dish-card:hover::after {
      border-color: rgba(235, 204, 151, .34);
    }

    .dish-card-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--night);
      border-bottom: 1px solid rgba(197, 160, 106, .42);
    }

    .dish-card-photo img {
      object-fit: cover;
      transform: scale(1.002);
      transition: transform 900ms var(--ease), filter 900ms var(--ease);
    }

    .dish-card:hover .dish-card-photo img {
      transform: scale(1.045);
      filter: saturate(1.06) contrast(1.03);
    }

    .dish-card-body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 14px;
      min-width: 0;
      min-height: 164px;
      padding: 24px 24px 22px;
      background: linear-gradient(180deg, #1d241f 0%, #171d19 100%);
    }

    .dish-card h4 {
      max-width: 92%;
      color: var(--paper-2);
      font-size: 19px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .dish-card-meta {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: rgba(255, 249, 238, .58);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .dish-card-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      align-self: end;
      padding-top: 6px;
    }

    .dish-card-count-wrap {
      display: grid;
      gap: 6px;
      min-width: 0;
    }

    .dish-price {
      color: var(--paper-2);
      font-size: 21px;
      line-height: 1;
      font-weight: 700;
      white-space: nowrap;
    }

    .dish-count {
      width: fit-content;
      min-height: 22px;
      display: inline-flex;
      align-items: center;
      padding: 0 8px;
      border: 1px solid rgba(197, 160, 106, .5);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: none;
    }

    .add-round {
      position: relative;
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      padding: 0;
      border: 1px solid rgba(197, 160, 106, .9);
      border-radius: 50%;
      background: transparent;
      color: var(--gold);
      font-size: 0;
      line-height: 0;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
    }

    .add-round::before,
    .add-round::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }

    .add-round::after {
      width: 2px;
      height: 14px;
    }

    .add-round[data-step="-1"]::after {
      display: none;
    }

    .add-round:hover {
      transform: scale(1.05);
      border-color: rgba(235, 204, 151, 1);
      background: var(--gold);
      color: var(--night);
    }

    .card-stepper {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      min-height: 48px;
    }

    .card-stepper.is-active {
      display: grid;
      grid-template-columns: 42px minmax(24px, auto) 42px;
      align-items: center;
      gap: 8px;
    }

    .card-stepper.is-active .add-round {
      width: 42px;
      height: 42px;
    }

    .card-stepper-count {
      min-width: 24px;
      color: var(--paper-2);
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      font-variant-numeric: tabular-nums;
    }

    .empty-menu {
      grid-column: 1 / -1;
      padding: 36px 0;
      color: rgba(255, 249, 238, .62);
      font-size: 17px;
    }

    .menu-download {
      display: flex;
      justify-content: center;
      margin-top: 42px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 249, 238, .14);
    }

    .pdf-button {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border: 1px solid var(--gold);
      background: var(--gold);
      color: var(--night);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease;
    }

    .pdf-button:hover {
      transform: translateY(-2px);
      background: var(--paper-2);
      color: var(--night);
    }

    .venue-gallery {
      padding: 104px 0 112px;
      background: var(--paper);
      overflow: hidden;
    }

    .venue-intro {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
      gap: 48px;
      align-items: start;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--line);
    }

    .venue-intro .lead {
      max-width: 420px;
      margin-bottom: 2px;
      font-size: 15px;
      line-height: 1.58;
    }

    .venue-slider {
      position: relative;
      margin-top: 30px;
      overflow: hidden;
      background: var(--night);
      touch-action: pan-y;
      user-select: none;
    }

    .venue-slider-window {
      overflow: hidden;
    }

    .venue-track {
      display: flex;
      transform: translate3d(0, 0, 0);
      transition: transform 520ms var(--ease);
      will-change: transform;
    }

    .venue-slide {
      position: relative;
      flex: 0 0 100%;
      min-height: 590px;
      aspect-ratio: 16 / 9;
      margin: 0;
      overflow: hidden;
      background: var(--night);
    }

    .venue-slide::after {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(255, 249, 238, .36);
      pointer-events: none;
    }

    .venue-slide img {
      transform: scale(1.002);
      transition: transform 900ms var(--ease), filter 900ms var(--ease);
    }

    .venue-slide:hover img {
      transform: scale(1.026);
      filter: saturate(1.04) contrast(1.02);
    }

    .venue-slider-controls {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .venue-arrow {
      width: 46px;
      height: 46px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(255, 249, 238, .42);
      background: rgba(7, 9, 7, .56);
      color: var(--paper-2);
      font-size: 22px;
      line-height: 1;
      backdrop-filter: blur(14px);
      transition: transform 220ms ease, background 220ms ease;
    }

    .venue-arrow:hover {
      transform: translateY(-2px);
      background: rgba(7, 9, 7, .72);
    }

    .venue-counter {
      min-width: 58px;
      height: 46px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(255, 249, 238, .3);
      background: rgba(7, 9, 7, .5);
      color: var(--paper-2);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      backdrop-filter: blur(14px);
    }

    .venue-dots {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .venue-dot {
      width: 42px;
      height: 4px;
      border: 0;
      background: rgba(17, 20, 16, .18);
      transition: background 220ms ease, transform 220ms ease;
    }

    .venue-dot.active {
      background: var(--terracotta);
      transform: scaleY(1.35);
    }

    .venue-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
      gap: 14px;
      margin-top: 30px;
      align-items: stretch;
    }

    .venue-main,
    .venue-shot {
      position: relative;
      margin: 0;
      overflow: hidden;
      background: var(--night);
    }

    .venue-main {
      min-height: 500px;
      aspect-ratio: 16 / 11;
    }

    .venue-main::after,
    .venue-shot::after {
      content: "";
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(255, 249, 238, .34);
      pointer-events: none;
    }

    .venue-column {
      display: grid;
      gap: 14px;
      min-width: 0;
    }

    .venue-column .venue-shot {
      aspect-ratio: 16 / 10;
    }

    .venue-wall {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      margin-top: 14px;
    }

    .venue-wall .venue-shot {
      aspect-ratio: 4 / 3;
    }

    .venue-address {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      margin-top: 26px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .venue-shot img {
      transform: scale(1.002);
      transition: transform 900ms var(--ease), filter 900ms var(--ease);
    }

    .venue-main:hover img,
    .venue-shot:hover img {
      transform: scale(1.035);
      filter: saturate(1.04) contrast(1.02);
    }

    .reservation {
      padding-top: 0;
      background:
        linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    }

    .booking-page .reservation {
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: 148px 0 98px;
    }

    .reservation-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
      gap: 34px;
      align-items: stretch;
    }

    .reservation-copy {
      min-height: 500px;
      display: grid;
      align-content: center;
      gap: 22px;
      padding: 58px;
      background:
        linear-gradient(135deg, rgba(197, 160, 106, .11), transparent 46%),
        var(--forest);
      color: var(--paper-2);
    }

    .reservation-copy .section-label,
    .reservation-copy .lead {
      color: rgba(255, 249, 238, .72);
    }

    .reservation-copy .section-title {
      color: var(--paper-2);
    }

    .reservation-notes {
      display: grid;
      gap: 10px;
      color: rgba(255, 249, 238, .78);
      font-size: 14px;
    }

    .reservation-notes span {
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 249, 238, .14);
    }

    .reservation-form {
      display: grid;
      gap: 16px;
      padding: 34px;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(120, 145, 116, .12), transparent 44%),
        var(--paper-2);
    }

    .reservation-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .reservation-form .field input,
    .reservation-form .field select,
    .reservation-form .field textarea {
      background: rgba(255, 255, 255, .38);
    }

    .reservation-form .button {
      min-height: 52px;
      margin-top: 4px;
    }

    .reservation-success {
      border: 1px solid rgba(120, 145, 116, .28);
      background: rgba(120, 145, 116, .14);
      color: var(--forest);
    }

    .success.is-error {
      border: 1px solid rgba(156, 72, 50, .28);
      background: rgba(156, 72, 50, .12);
      color: var(--terracotta-dark);
    }

    .button:disabled {
      cursor: wait;
      opacity: .62;
      transform: none;
    }

    .location {
      background: var(--paper-2);
    }

    .location-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      min-height: 370px;
      background: var(--forest-2);
      color: var(--paper-2);
    }

    .location-copy {
      display: grid;
      align-content: center;
      padding: 58px;
    }

    .location-copy .section-label {
      color: rgba(255, 249, 238, .7);
    }

    .location-copy h2 {
      max-width: 560px;
      font-family: Forum, Georgia, serif;
      font-size: 50px;
      line-height: .98;
      font-weight: 400;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .location-lines {
      display: grid;
      gap: 9px;
      margin-top: 26px;
      color: rgba(255, 249, 238, .82);
      font-size: 16px;
    }

    .location-lines a {
      width: fit-content;
      border-bottom: 1px solid rgba(255, 249, 238, .34);
    }

    .location-map {
      position: relative;
      min-height: 370px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(120, 145, 116, .32), rgba(197, 160, 106, .18)),
        #e8efe2;
    }

    .location-map iframe {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .map-fallback {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 28px;
      color: var(--forest);
      font-size: 14px;
      text-align: center;
    }

    .map-route {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border: 1px solid rgba(17, 20, 16, .18);
      background: rgba(255, 249, 238, .92);
      color: var(--ink);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

    .map-pin-label {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      display: inline-grid;
      gap: 3px;
      padding: 12px 14px 12px 34px;
      border: 1px solid rgba(17, 20, 16, .16);
      background: rgba(255, 249, 238, .94);
      color: var(--ink);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      line-height: 1.18;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      box-shadow: 0 14px 32px rgba(17, 20, 16, .12);
    }

    .map-pin-label::before {
      content: "";
      position: absolute;
      left: 13px;
      top: 15px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--terracotta);
      box-shadow: 0 0 0 5px rgba(191, 88, 57, .15);
    }

    .map-pin-label span {
      color: var(--muted);
      font-size: 9px;
      letter-spacing: .1em;
    }

    .footer {
      padding: 70px 0 38px;
      background: var(--paper);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 32px;
      align-items: end;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--line);
    }

    .footer-logo {
      margin-top: 54px;
      font-size: 154px;
      line-height: .8;
      text-transform: none;
      letter-spacing: .03em;
    }

    .footer-small {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-action {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border: 1px solid var(--line-strong);
      color: var(--ink);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .overlay-menu {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(6, 8, 6, .94);
      color: var(--paper-2);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 420ms var(--ease), visibility 420ms var(--ease);
    }

    .overlay-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .overlay-inner {
      width: min(1040px, 100%);
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 52px;
      align-items: end;
    }

    .overlay-tools {
      grid-column: 1 / -1;
      justify-self: end;
      width: max-content;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
      margin-bottom: -8px;
    }

    .overlay-tools .language-switch {
      margin-top: 0;
    }

    .overlay-links {
      display: grid;
      gap: 18px;
    }

    .overlay-links a,
    .overlay-links button {
      width: fit-content;
      color: var(--paper-2);
      font-family: Forum, Georgia, serif;
      font-size: 72px;
      line-height: .95;
      text-transform: uppercase;
      transition: color 200ms ease, transform 200ms ease;
    }

    .overlay-links a:hover,
    .overlay-links button:hover {
      color: var(--gold);
      transform: translateX(8px);
    }

    .overlay-side {
      min-height: 240px;
      padding-left: 28px;
      border-left: 1px solid var(--cream-line);
      color: var(--cream-muted);
    }

    .close-menu,
    .close-dish,
    .close-cart,
    .close-profile {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid currentColor;
      color: inherit;
      font-size: 28px;
      line-height: 1;
      transition: background 200ms ease, color 200ms ease;
    }

    .close-menu:hover,
    .close-dish:hover,
    .close-cart:hover,
    .close-profile:hover {
      background: currentColor;
      color: var(--night);
    }

    .overlay-side p {
      margin-top: 0;
      font-size: 16px;
      line-height: 1.7;
    }

    .language-switch {
      display: inline-grid;
      grid-template-columns: repeat(2, 46px);
      gap: 6px;
      margin-top: 28px;
      padding: 4px;
      border: 1px solid var(--cream-line);
      background: rgba(255, 249, 238, .06);
    }

    .language-switch button {
      min-height: 38px;
      color: var(--cream-muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .language-switch button.active {
      background: var(--gold);
      color: var(--night);
    }

    .dish-modal {
      position: fixed;
      inset: 0;
      z-index: 360;
      background: var(--night);
      color: var(--paper-2);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 420ms var(--ease), visibility 420ms var(--ease);
    }

    .dish-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .dish-modal-inner {
      height: 100svh;
      min-height: 100svh;
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    }

    .modal-image {
      display: grid;
      place-items: center;
      position: relative;
      height: 100svh;
      min-height: 100svh;
      padding: 48px;
      background:
        radial-gradient(circle at 50% 42%, rgba(197, 160, 106, .16), transparent 32%),
        linear-gradient(145deg, #151918, #030403 72%);
      overflow: hidden;
    }

    .modal-image img {
      width: min(100%, 880px);
      height: auto;
      max-height: calc(100svh - 96px);
      aspect-ratio: 1 / 1;
      object-fit: contain;
      object-position: center;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
      transform: scale(1.04);
      transition: transform 1300ms var(--ease);
    }

    .dish-modal.open .modal-image img {
      transform: scale(1);
    }

    .modal-info {
      position: relative;
      display: grid;
      align-content: center;
      padding: 74px 62px;
      background:
        radial-gradient(circle at 100% 10%, rgba(120, 145, 116, .18), transparent 34%),
        linear-gradient(180deg, #111512, #070907);
    }

    .close-dish {
      position: absolute;
      top: 28px;
      right: 28px;
      color: var(--paper-2);
    }

    .modal-meta {
      margin-bottom: 24px;
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .modal-info h2 {
      max-width: 540px;
      font-size: 36px;
      line-height: 1.04;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .modal-info p {
      max-width: 560px;
      margin-top: 18px;
      color: rgba(255, 249, 238, .78);
      font-size: 15px;
      line-height: 1.58;
    }

    .modal-info b {
      color: var(--paper-2);
      font-weight: 700;
    }

    .modal-nutrition {
      margin-top: 18px;
      padding: 14px 0 0;
      border-top: 1px solid var(--cream-line);
      color: rgba(255, 249, 238, .72);
      font-size: 13px;
      line-height: 1.55;
    }

    .modal-price {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--cream-line);
      color: var(--paper-2);
      font-family: Forum, Georgia, serif;
      font-size: 34px;
    }

    .modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .modal-cart-state {
      width: 100%;
      min-height: 58px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 8px 8px 8px 18px;
      border: 1px solid rgba(197, 160, 106, .72);
      background: rgba(197, 160, 106, .16);
      color: var(--paper-2);
    }

    .modal-cart-state > span {
      display: inline-grid;
      gap: 3px;
      color: rgba(255, 249, 238, .74);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .modal-cart-state > span b {
      color: var(--paper-2);
      font-size: 14px;
      letter-spacing: .08em;
    }

    .modal-stepper {
      display: grid;
      grid-template-columns: 44px minmax(34px, auto) 44px;
      align-items: center;
      gap: 8px;
    }

    .modal-stepper button {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 249, 238, .42);
      color: var(--paper-2);
      font-size: 21px;
      line-height: 1;
      transition: background 200ms ease, color 200ms ease;
    }

    .modal-stepper button:hover {
      background: var(--paper-2);
      color: var(--night);
    }

    .modal-stepper strong {
      min-width: 34px;
      color: var(--paper-2);
      font-size: 18px;
      line-height: 1;
      text-align: center;
      font-variant-numeric: tabular-nums;
    }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border: 1px solid var(--line);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--night);
    }

    .button-outline {
      border-color: rgba(255, 249, 238, .42);
      color: var(--paper-2);
    }

    .button-dark {
      width: 100%;
      border-color: var(--ink);
      background: var(--ink);
      color: var(--paper-2);
    }

    .cart-fab {
      position: fixed;
      z-index: 170;
      right: 22px;
      bottom: 0;
      min-width: 260px;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px 12px 18px;
      border: 1px solid rgba(17, 20, 16, .18);
      border-bottom: 0;
      background: rgba(255, 249, 238, .88);
      color: var(--ink);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    }

    .cart-fab strong,
    .cart-fab span span {
      display: block;
      text-align: left;
    }

    .cart-fab strong {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .cart-fab span span {
      margin-top: 2px;
      color: var(--muted);
      font-size: 13px;
    }

    .cart-fab i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper-2);
      font-style: normal;
    }

    .cart-drawer {
      position: fixed;
      inset: 0;
      z-index: 380;
      visibility: hidden;
      pointer-events: none;
    }

    .cart-drawer.open {
      visibility: visible;
      pointer-events: auto;
    }

    .cart-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(6, 8, 6, .58);
      opacity: 0;
      transition: opacity 320ms var(--ease);
    }

    .cart-drawer.open .cart-backdrop {
      opacity: 1;
    }

    .cart-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(520px, 100%);
      height: 100%;
      display: grid;
      grid-template-rows: auto 1fr auto;
      background: var(--paper-2);
      color: var(--ink);
      transform: translateX(100%);
      transition: transform 420ms var(--ease);
      box-shadow: -26px 0 70px rgba(0, 0, 0, .26);
    }

    .cart-drawer.open .cart-panel {
      transform: translateX(0);
    }

    .profile-page {
      padding: 112px 0 72px;
      color: var(--ink);
      background:
        linear-gradient(135deg, rgba(120, 145, 116, .12), transparent 34%),
        var(--paper);
    }

    .profile-shell {
      width: min(1040px, calc(100% - 72px));
      margin: 0 auto;
      display: grid;
      gap: 26px;
    }

    .profile-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 46px;
      align-items: center;
      gap: 18px;
      min-height: 98px;
      padding: 22px 22px 20px 28px;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(120, 145, 116, .13), transparent 42%),
        var(--paper-2);
    }

    .profile-head h2 {
      font-size: 42px;
      line-height: .95;
      text-transform: uppercase;
    }

    .profile-head p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .profile-head .close-profile {
      width: auto;
      min-width: 112px;
      height: 42px;
      padding: 0 16px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .profile-head .close-profile:hover {
      background: var(--ink);
      color: var(--paper-2);
    }

    .profile-scroll {
      display: grid;
      gap: 24px;
      align-content: start;
    }

    .profile-page.profile-locked .profile-scroll {
      grid-template-columns: 1fr;
    }

    .profile-page.profile-authenticated .profile-scroll {
      grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
      align-items: start;
    }

    .profile-card {
      display: grid;
      gap: 16px;
      padding: 22px;
      border: 1px solid var(--line);
      background: var(--paper-2);
    }

    .profile-card form {
      display: grid;
      gap: 16px;
    }

    .profile-card h3,
    .orders-head h3 {
      font-size: 15px;
      line-height: 1.2;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .profile-hint {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .profile-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .auth-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .auth-method {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .24);
    }

    .auth-method h4 {
      margin: 0;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .auth-method p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .auth-code-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
      align-items: end;
    }

    .profile-session-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .profile-session-row strong {
      display: block;
      font-size: 14px;
    }

    .profile-session-row span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
    }

    .loyalty-card {
      display: grid;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(197, 160, 106, .38);
      background: rgba(197, 160, 106, .12);
    }

    .loyalty-balance {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
    }

    .loyalty-balance strong {
      font-family: Forum, Georgia, serif;
      font-size: 38px;
      line-height: 1;
      font-weight: 400;
      color: var(--forest);
    }

    .loyalty-rules {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .checkout-loyalty {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(197, 160, 106, .34);
      background: rgba(197, 160, 106, .11);
    }

    .checkout-loyalty-top,
    .checkout-loyalty-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .checkout-loyalty-top strong {
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .checkout-loyalty-top span,
    .checkout-loyalty-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .checkout-loyalty-actions input {
      width: 120px;
      min-height: 40px;
      border: 1px solid var(--line);
      background: var(--paper-2);
      padding: 0 10px;
    }

    .profile-locked .profile-only,
    .profile-authenticated .auth-only {
      display: none;
    }

    .button-soft {
      border-color: rgba(120, 145, 116, .42);
      background: rgba(120, 145, 116, .12);
      color: var(--forest);
    }

    .orders-head {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 16px;
    }

    .orders-list {
      display: grid;
      gap: 14px;
    }

    .order-history-card {
      display: grid;
      gap: 12px;
      padding: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .28);
    }

    .order-history-card.is-active {
      border-color: rgba(199, 158, 91, .86);
      background: rgba(199, 158, 91, .12);
      box-shadow: inset 0 0 0 1px rgba(199, 158, 91, .22);
    }

    .order-history-top {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 14px;
    }

    .order-history-top strong {
      display: block;
      font-size: 17px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .order-history-top span,
    .order-history-card p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .order-status-pill {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid rgba(120, 145, 116, .42);
      border-radius: 999px;
      background: rgba(120, 145, 116, .13);
      color: var(--forest);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .order-status-pill.preparing,
    .order-status-pill.confirmed {
      border-color: rgba(197, 160, 106, .58);
      background: rgba(197, 160, 106, .16);
      color: #7d5d25;
    }

    .order-status-pill.courier {
      border-color: rgba(79, 119, 160, .44);
      background: rgba(79, 119, 160, .14);
      color: #315b84;
    }

    .order-status-pill.delivered {
      border-color: rgba(120, 145, 116, .58);
      background: rgba(120, 145, 116, .18);
      color: var(--forest);
    }

    .order-status-pill.paid {
      border-color: rgba(197, 160, 106, .64);
      background: rgba(197, 160, 106, .2);
      color: #7d5d25;
    }

    .order-status-pill.canceled {
      border-color: rgba(156, 72, 50, .45);
      background: rgba(156, 72, 50, .14);
      color: var(--terracotta-dark);
    }

    .order-history-items {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 5px;
      color: var(--ink);
      font-size: 13px;
    }

    .order-history-actions {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
    }

    .profile-empty {
      padding: 22px 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .status-strip {
      display: none;
      gap: 10px;
      align-items: start;
      margin: 12px 0 4px;
      padding: 14px;
      border: 1px solid rgba(120, 145, 116, .28);
      background: rgba(120, 145, 116, .12);
      color: var(--forest);
      font-size: 13px;
      line-height: 1.45;
    }

    .status-strip.visible {
      display: grid;
      grid-template-columns: auto 1fr;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      margin-top: 5px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(197, 160, 106, .18);
    }

    .cart-head {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 46px;
      align-items: center;
      gap: 18px;
      min-height: 98px;
      padding: 22px 22px 20px 28px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(120, 145, 116, .11), transparent 42%),
        var(--paper-2);
    }

    .cart-title-block {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .cart-head h2 {
      font-size: 44px;
      line-height: .92;
      text-transform: uppercase;
    }

    .cart-head p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      letter-spacing: .03em;
    }

    .close-cart,
    .close-profile {
      align-self: center;
      color: var(--ink);
      padding: 0;
    }

    .cart-scroll {
      overflow: auto;
      padding: 22px 28px 28px;
    }

    .cart-sticky-submit {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      border-top: 1px solid var(--line);
      background: rgba(255, 249, 238, .96);
      box-shadow: 0 -14px 34px rgba(17, 20, 16, .12);
    }

    .cart-sticky-submit span {
      display: block;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .cart-sticky-submit strong {
      display: block;
      margin-top: 2px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1;
    }

    .cart-sticky-submit .button {
      width: auto;
      min-width: 150px;
      min-height: 44px;
      padding: 0 16px;
    }

    body:not(.cart-has-items) .cart-sticky-submit {
      display: none;
    }

    .cart-empty {
      padding: 34px 0;
      color: var(--muted);
    }

    .cart-item {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .cart-thumb {
      width: 64px;
      height: 64px;
      overflow: hidden;
      background: var(--night);
    }

    .cart-item h3 {
      color: var(--ink);
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .cart-item p {
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
    }

    .cart-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 12px;
    }

    .qty {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--line);
    }

    .qty button,
    .remove-item {
      min-width: 34px;
      height: 32px;
      color: var(--ink);
      font-size: 14px;
    }

    .qty button {
      position: relative;
      display: grid;
      place-items: center;
      padding: 0;
      color: var(--ink);
      font-size: 0;
      line-height: 0;
    }

    .qty button::before,
    .qty button[data-step="1"]::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 12px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }

    .qty button[data-step="1"]::after {
      width: 2px;
      height: 12px;
    }

    .qty span {
      min-width: 30px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
    }

    .remove-item {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .summary {
      display: grid;
      gap: 10px;
      margin: 20px 0;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .summary-row.total {
      color: var(--ink);
      font-size: 19px;
      font-weight: 700;
    }

    .cart-delivery-note {
      margin-top: -4px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .checkout-form {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .mode-switch {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid var(--line);
    }

    .mode-switch button {
      min-height: 42px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .mode-switch button + button {
      border-left: 1px solid var(--line);
    }

    .mode-switch button.active {
      background: var(--ink);
      color: var(--paper-2);
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      background: var(--paper-2);
      padding: 0 12px;
      color: var(--ink);
      line-height: 1.25;
      outline: none;
    }

    .field textarea {
      min-height: 82px;
      padding-top: 12px;
      resize: vertical;
    }

    .error {
      min-height: 14px;
      color: var(--terracotta-dark);
      font-size: 12px;
    }

    .success {
      padding: 14px;
      background: rgba(120, 145, 116, .16);
      color: var(--forest);
      font-size: 14px;
      line-height: 1.5;
    }

    .hidden {
      display: none;
    }

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

    @media (max-width: 980px) {
      .shell,
      .hero-main,
      .hero-meta,
      .statement p {
        width: min(100% - 40px, var(--shell));
      }

      .hero-main,
      .story-grid,
      .order-head,
      .location-band,
      .venue-intro,
      .overlay-inner,
      .dish-modal-inner {
        grid-template-columns: 1fr;
        height: auto;
      }

      .hero-main {
        gap: 30px;
      }

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

      .hero-side {
        max-width: 560px;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .hero-meta div {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 249, 238, .16);
      }

      .hero-meta div:last-child {
        border-bottom: 0;
      }

      .story-grid {
        gap: 46px;
      }

      .story-photo {
        width: min(440px, 100%);
      }

      .split-feature {
        grid-template-columns: 1fr;
      }

      .feature-panel {
        padding: 62px 40px;
      }

      .dish-modal {
        overflow: auto;
      }

      .modal-image {
        height: 38svh;
        min-height: 260px;
        padding: 18px;
      }

      .modal-info {
        align-content: start;
        min-height: auto;
        padding: 56px 34px 92px;
      }

      .location-band {
        min-height: 0;
      }

      .reservation-grid {
        grid-template-columns: 1fr;
      }

      .reservation-copy {
        min-height: 0;
        padding: 46px 36px;
      }

      .location-map {
        min-height: 320px;
      }

      .order-tools {
        grid-template-columns: 1fr;
        top: 76px;
      }

      .venue-grid {
        grid-template-columns: 1fr;
      }

      .venue-slide {
        min-height: 430px;
        aspect-ratio: 16 / 10;
      }

      .venue-main {
        min-height: 430px;
        aspect-ratio: 16 / 10;
      }

      .venue-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .venue-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .menu-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-logo {
        font-size: 102px;
      }
    }

    @media (max-width: 760px) {
      .topbar {
        width: calc(100% - 18px);
        top: 10px;
        min-height: 52px;
        grid-template-columns: auto minmax(0, 1fr) auto;
      }

      .top-left {
        display: inline-flex;
        min-width: 48px;
      }

      .topbar a,
      .topbar button {
        min-height: 50px;
        padding: 0 10px;
        font-size: 9px;
        letter-spacing: .09em;
      }

      .top-link {
        min-width: 48px;
        padding: 0 9px;
      }

      .topbar .top-booking-link,
      .top-actions .phone-mini,
      .cart-mini .cart-mini-label,
      .profile-mini-full,
      .profile-mini-short {
        display: none !important;
      }

      .topbar .brand {
        justify-self: center;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 19px;
        letter-spacing: .08em;
        padding-left: 8px;
        padding-right: 8px;
      }

      .top-actions {
        border-left: 1px solid rgba(255, 249, 238, .18);
      }

      .topbar .cart-mini,
      .topbar .profile-mini,
      .topbar .menu-mini {
        display: inline-flex;
        width: 42px;
        min-width: 42px;
        padding: 0;
      }

      .profile-mini {
        border-right: 1px solid rgba(255, 249, 238, .18);
      }

      .profile-mini-icon {
        display: block;
      }

      .cart-mini-icon {
        width: 22px;
        height: 21px;
      }

      .hero-content {
        padding-top: 118px;
        padding-bottom: 18px;
      }

      .hero-photo img {
        object-position: 56% 31%;
      }

      .hero::before {
        background:
          radial-gradient(circle at 70% 35%, rgba(5, 7, 5, .12) 0%, rgba(5, 7, 5, .68) 68%),
          linear-gradient(90deg, rgba(5, 7, 5, .88) 0%, rgba(5, 7, 5, .56) 58%, rgba(5, 7, 5, .34) 100%),
          linear-gradient(0deg, rgba(5, 7, 5, .76), rgba(5, 7, 5, .12) 42%, rgba(5, 7, 5, .28));
      }

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

      .hero-side {
        padding-left: 0;
        border-left: 0;
      }

      .hero-side p {
        font-size: 15px;
        line-height: 1.52;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
      }

      .hero-actions .hero-cta {
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        text-align: center;
      }

      .hero-actions .hero-cta:first-child {
        grid-column: auto;
      }

      .hero-quick-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
      }

      .hero-quick-link {
        width: 100%;
        min-width: 0;
        padding: 0 8px;
      }

      .hero-meta {
        display: none;
      }

      .section {
        padding: 78px 0;
      }

      .section-title,
      .feature-panel h2,
      .location-copy h2 {
        font-size: 38px;
        line-height: 1.02;
      }

      .statement {
        padding: 72px 0 86px;
      }

      .statement p {
        font-size: 38px;
      }

      .split-feature .feature-photo {
        min-height: 360px;
      }

      .feature-panel {
        padding: 48px 24px;
      }

      .feature-actions {
        margin-top: 26px;
      }

      .feature-cta {
        flex: 1 1 148px;
      }

      .dark-editorial,
      .dark-editorial .shell {
        min-height: 520px;
      }

      .dark-editorial .shell {
        padding-bottom: 54px;
      }

      .dark-editorial h2 {
        font-size: 42px;
      }

      .order-section {
        padding: 76px 0 110px;
      }

      .order-head {
        padding-bottom: 16px;
      }

      .order-tools {
        top: 66px;
        margin: 0;
        padding: 8px;
        overflow: visible;
      }

      .filters {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow: visible;
	        touch-action: manipulation;
        scroll-snap-type: none;
      }

      .chip {
        width: 100%;
        min-width: 0;
        min-height: 38px;
        padding: 0 6px;
        white-space: normal;
        text-align: center;
        line-height: 1.15;
        letter-spacing: .07em;
      }

      .chip-pdf {
        margin-left: 0;
      }

      .venue-gallery {
        padding: 104px 0 88px;
      }

      .venue-intro {
        gap: 22px;
      }

      .venue-grid {
        gap: 10px;
        margin-top: 24px;
      }

      .venue-slider {
        margin-top: 24px;
      }

      .venue-slide {
        min-height: 0;
        aspect-ratio: 4 / 5;
      }

      .venue-slider-controls {
        right: 12px;
        bottom: 12px;
      }

      .venue-arrow,
      .venue-counter {
        height: 42px;
      }

      .venue-arrow {
        width: 42px;
      }

      .venue-counter {
        min-width: 52px;
        font-size: 10px;
      }

      .venue-dots {
        gap: 6px;
      }

      .venue-dot {
        flex: 1 1 28px;
        height: 4px;
      }

      .venue-main {
        min-height: 0;
        aspect-ratio: 4 / 5;
      }

      .venue-main::after,
      .venue-shot::after {
        inset: 10px;
      }

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

      .venue-address {
        display: grid;
        gap: 10px;
        font-size: 10px;
      }

      .reservation-form {
        padding: 28px;
      }

      .booking-page .reservation {
        padding: 108px 0 96px;
      }

      .reservation-row {
        grid-template-columns: 1fr;
      }

      .menu-board {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 28px;
      }

      .dish-card {
        min-height: 0;
        width: 100%;
        max-width: 100%;
      }

      .dish-card-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
      }

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

      .dish-card h4 {
        font-size: 16px;
        line-height: 1.18;
      }

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

      .dish-price {
        font-size: 15px;
      }

      .add-round {
        width: 42px;
        height: 42px;
      }

      .card-stepper,
      .card-stepper.is-active {
        min-height: 42px;
        gap: 7px;
      }

      .card-stepper.is-active {
        grid-template-columns: 38px minmax(22px, auto) 38px;
      }

      .card-stepper.is-active .add-round {
        width: 38px;
        height: 38px;
      }

      .cart-head {
        min-height: 88px;
        padding: 18px 16px 16px 20px;
        grid-template-columns: minmax(0, 1fr) 42px;
      }

      .profile-head {
        min-height: 88px;
        padding: 18px 16px 16px 20px;
        grid-template-columns: minmax(0, 1fr);
      }

      .profile-page {
        padding: 92px 0 48px;
      }

      .profile-shell {
        width: min(100% - 28px, 680px);
        gap: 18px;
      }

      .profile-page.profile-authenticated .profile-scroll {
        grid-template-columns: 1fr;
      }

      .cart-head h2,
      .profile-head h2 {
        font-size: 36px;
      }

      .cart-head p,
      .profile-head p {
        font-size: 11px;
      }

      .close-cart,
      .close-profile {
        width: 42px;
        height: 42px;
      }

      .profile-head .close-profile {
        width: auto;
        min-width: 98px;
        height: 40px;
        padding: 0 12px;
        font-size: 9px;
        justify-self: start;
      }

      .profile-scroll {
        gap: 18px;
      }

      .profile-actions,
      .order-history-actions {
        grid-template-columns: 1fr;
      }

      .order-history-top {
        display: grid;
      }

      .overlay-links a,
      .overlay-links button {
        font-size: 48px;
      }

      .overlay-inner {
        gap: 20px;
        align-items: stretch;
      }

      .overlay-tools {
        justify-content: flex-end;
        margin-bottom: 2px;
      }

      .overlay-side {
        min-height: 0;
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid var(--cream-line);
      }

      .language-switch {
        margin-top: 0;
      }

      .modal-image {
        height: 34svh;
        min-height: 226px;
        padding: 12px;
      }

      .modal-info {
        padding: 46px 20px 88px;
      }

      .modal-info h2 {
        font-size: 24px;
        line-height: 1.08;
      }

      .modal-info p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.5;
      }

      .modal-price {
        margin-top: 16px;
        padding-top: 14px;
        font-size: 30px;
      }

      .modal-actions {
        position: sticky;
        bottom: 0;
        z-index: 4;
        margin: 16px -34px 0;
        padding: 12px 34px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--cream-line);
        background:
          linear-gradient(180deg, rgba(7, 9, 7, .78), rgba(7, 9, 7, .98)),
          var(--night);
        backdrop-filter: blur(16px);
      }

      .modal-nutrition {
        margin-top: 14px;
        font-size: 12px;
      }

      .modal-price {
        font-size: 28px;
      }

      .modal-actions {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
      }

      .modal-cart-state {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 8px 10px 14px;
      }

      .modal-stepper {
        grid-template-columns: 40px minmax(28px, auto) 40px;
      }

      .modal-stepper button {
        width: 40px;
        height: 40px;
      }

      .loader-line {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .loader-line span:nth-child(3) {
        text-align: center;
      }

      .modal-actions .button {
        width: 100%;
      }

      .cart-sticky-submit {
        display: flex;
      }

      .cart-scroll {
        padding: 14px 16px 18px;
      }

      .checkout-form {
        gap: 10px;
        margin-top: 12px;
      }

      .checkout-form > .button-dark[type="submit"] {
        display: none;
      }

      .checkout-form .field textarea {
        min-height: 58px;
      }

      .auth-options,
      .profile-actions {
        grid-template-columns: 1fr;
      }

      .auth-code-grid,
      .checkout-loyalty-actions {
        grid-template-columns: 1fr;
        display: grid;
      }

      .checkout-loyalty-actions input {
        width: 100%;
      }

      .cart-fab {
        right: 0;
        bottom: 0;
        left: 0;
        min-width: 0;
        width: 100%;
      }

      .cart-sticky-submit {
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      }

      .cart-sticky-submit .button {
        min-width: 136px;
      }

      .location-copy {
        padding: 42px 24px;
      }

      .reservation-copy {
        padding: 40px 24px;
      }

      .location-map {
        min-height: 300px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .footer-actions {
        justify-content: flex-start;
      }

      .footer-logo {
        font-size: 54px;
      }
    }

    @media (max-width: 360px) {
      .shell,
      .hero-main,
      .hero-meta,
      .statement p {
        width: calc(100% - 28px);
      }

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

      .topbar .brand {
        font-size: 15px;
        letter-spacing: .05em;
      }

      .topbar a,
      .topbar button {
        padding: 0 7px;
        font-size: 8px;
        letter-spacing: .08em;
      }

      .top-link {
        min-width: 44px;
      }

      .topbar .profile-mini,
      .topbar .cart-mini {
        min-width: 38px;
        width: 38px;
      }

      .topbar .menu-mini {
        min-width: 40px;
        width: 40px;
      }

      .section-title,
      .feature-panel h2,
      .dark-editorial h2,
      .location-copy h2 {
        font-size: 34px;
      }

      .modal-info h2 {
        font-size: 25px;
        line-height: 1.08;
      }

      .statement p {
        font-size: 33px;
      }

      .dish-card {
        min-height: 0;
      }

      .dish-card-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
      }

      .dish-card h4 {
        font-size: 15px;
      }

      .dish-card-meta {
        font-size: 9px;
        letter-spacing: .1em;
      }

      .add-round {
        width: 40px;
        height: 40px;
      }

      .card-stepper.is-active {
        grid-template-columns: 36px minmax(20px, auto) 36px;
        gap: 6px;
      }

      .card-stepper.is-active .add-round {
        width: 36px;
        height: 36px;
      }

      .card-stepper-count {
        min-width: 20px;
        font-size: 14px;
      }

      .dish-card-photo {
        aspect-ratio: 16 / 11;
      }

      .dish-card-body {
        min-height: 158px;
        gap: 13px;
        padding: 17px 14px;
      }

      .dish-card-actions {
        padding-top: 0;
      }
    }
  
