:root {
  --deep-red: #7f1712;
  --chili-red: #d92d1f;
  --yellow: #f5bb32;
  --terracotta: #c76335;
  --soy: #4a271c;
  --charcoal: #17120f;
  --rice: #fff5df;
  --paper: #f8e5bd;
  --ink-soft: rgba(255, 245, 223, 0.78);
  --cart-width: 370px;
  --page-max-width: 1280px;
  --page-half-max-width: 640px;
  --page-padding-desktop: 32px;
  --page-padding-mobile: 16px;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--rice);
  background: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body.order-body {
  height: 100%;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-container,
.section-container,
.content-shell {
  width: min(calc(100% - var(--page-padding-desktop) - var(--page-padding-desktop)), var(--page-max-width));
  margin-inline: auto;
}

.home-page {
  min-height: 100vh;
  background: var(--charcoal);
}

.home-page .hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding-block: 72px 58px;
}

.hero-carousel,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.68), rgba(23, 18, 15, 0.36) 52%, rgba(23, 18, 15, 0.62)),
    linear-gradient(180deg, rgba(23, 18, 15, 0.34), rgba(23, 18, 15, 0.12) 42%, rgba(23, 18, 15, 0.74));
}

.home-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(var(--page-padding-desktop), calc(50vw - var(--page-half-max-width)));
}

.home-brand,
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--charcoal);
  background: var(--yellow);
  color: var(--charcoal);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--charcoal);
}

.home-brand span:last-child {
  font-size: 1.05rem;
}

.home-header-link,
.header-cta {
  border: 2px solid var(--rice);
  padding: 8px 12px;
  background: rgba(23, 18, 15, 0.36);
  color: var(--rice);
  font-size: 0.88rem;
  font-weight: 900;
}

.home-hero-content {
  position: relative;
  z-index: 3;
}

.home-kicker,
.mini-label,
.eyebrow,
.card-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .hero h1 {
  margin: 0 0 12px;
  color: var(--rice);
  font-family: Anton, Impact, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: lowercase;
}

.home-subtitle {
  max-width: 430px;
  margin: 0 0 20px;
  color: var(--rice);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.home-actions {
  display: grid;
  width: min(420px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-button,
.button,
.add-button,
.qty-button,
.remove-button {
  border: 2px solid var(--charcoal);
  cursor: pointer;
  font-weight: 900;
}

.home-button,
.button {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  font-size: 15px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--charcoal);
}

.primary {
  background: var(--yellow);
  color: var(--charcoal);
}

.secondary,
.light {
  background: var(--rice);
  color: var(--charcoal);
}

.dark,
.ghost {
  background: var(--charcoal);
  color: var(--rice);
}

.ghost {
  border-color: var(--rice);
  box-shadow: none;
}

.home-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
}

.home-info span {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 12px;
  border-right: 2px solid var(--charcoal);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.home-info span:last-child {
  border-right: 0;
}

.home-footer,
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px max(var(--page-padding-desktop), calc(50vw - var(--page-half-max-width)));
  background: var(--charcoal);
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
}

.home-footer p,
.site-footer p {
  margin: 0;
}

.brand-entry-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 18, 15, 0.74), rgba(23, 18, 15, 0.86)),
    url("./images/places/restaurant/restaurant-interior-03.png") center / cover fixed,
    var(--charcoal);
}

.atelier-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 18, 15, 0.74), rgba(23, 18, 15, 0.86)),
    url("./images/places/atelier/atelier-interior-01.jpg") center / cover fixed,
    var(--charcoal);
}

.brand-entry-header {
  display: flex;
  justify-content: space-between;
  padding: 12px max(var(--page-padding-desktop), calc(50vw - var(--page-half-max-width)));
}

.brand-entry-main {
  display: grid;
  gap: 26px;
  min-height: calc(100svh - 76px);
  align-content: center;
  padding-block: 26px 34px;
}

.brand-entry-intro {
  max-width: 720px;
}

.brand-entry-intro h1 {
  margin: 0 0 12px;
  color: var(--rice);
  font-family: Anton, Impact, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: lowercase;
}

.brand-entry-intro p:not(.home-kicker) {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.brand-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-entry-card {
  display: grid;
  min-height: 420px;
  align-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 2px solid rgba(255, 245, 223, 0.28);
  background: rgba(23, 18, 15, 0.78);
  color: var(--rice);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.brand-entry-image {
  aspect-ratio: 16 / 10;
  margin: -22px -22px 0;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 245, 223, 0.28);
  background: var(--charcoal);
}

.brand-entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-entry-card h2,
.atelier-card h1 {
  margin: 0 0 12px;
  font-family: Anton, Impact, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-entry-card p,
.brand-entry-card address {
  margin: 0;
}

.brand-entry-type {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.brand-entry-description {
  max-width: 420px;
  margin-top: 12px;
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.brand-entry-card address {
  margin-top: 18px;
  color: var(--rice);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.brand-entry-card .home-button {
  width: min(220px, 100%);
}

.restaurant-entry {
  background: rgba(23, 18, 15, 0.78);
}

.atelier-entry {
  background: rgba(23, 18, 15, 0.78);
}

.atelier-main {
  display: grid;
  gap: 18px;
  min-height: calc(100svh - 72px);
  align-content: start;
  padding-block: 22px 34px;
}

.atelier-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 22px;
  border: 2px solid rgba(255, 245, 223, 0.24);
  background: rgba(23, 18, 15, 0.78);
  color: var(--rice);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.atelier-card h1 {
  margin-bottom: 0;
}

.atelier-description,
.atelier-status {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.atelier-status {
  color: var(--yellow);
}

.atelier-card .home-button {
  width: min(260px, 100%);
}

.restaurant-gallery,
.restaurant-story,
.atelier-showcase {
  padding-block: clamp(38px, 5vw, 64px);
}

.home-page .section-heading h2,
.restaurant-story h2,
.atelier-showcase h2 {
  margin: 0;
  color: var(--rice);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-page .section-heading p:not(.home-kicker),
.restaurant-story p:not(.home-kicker),
.atelier-showcase p:not(.home-kicker) {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.restaurant-gallery {
  background: rgba(23, 18, 15, 0.96);
}

.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.restaurant-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 2px solid rgba(255, 245, 223, 0.18);
  object-fit: cover;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34);
}

.restaurant-gallery-grid img:nth-child(1),
.restaurant-gallery-grid img:nth-child(2) {
  grid-column: span 3;
}

.restaurant-gallery-grid img:nth-child(3),
.restaurant-gallery-grid img:nth-child(4),
.restaurant-gallery-grid img:nth-child(5) {
  grid-column: span 2;
}

.restaurant-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.restaurant-story-image {
  overflow: hidden;
  border: 2px solid rgba(255, 245, 223, 0.2);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34);
}

.restaurant-story-image img {
  width: 100%;
  height: min(460px, 54vw);
  object-fit: cover;
}

.atelier-showcase {
  width: 100%;
  border: 2px solid rgba(255, 245, 223, 0.2);
  background: rgba(23, 18, 15, 0.76);
  padding-inline: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.atelier-place-image {
  overflow: hidden;
  border: 2px solid rgba(255, 245, 223, 0.18);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34);
}

.atelier-place-image img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
}

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

.atelier-drink-card {
  overflow: hidden;
  border: 2px solid rgba(255, 245, 223, 0.18);
  background: var(--rice);
  color: var(--charcoal);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34);
}

.atelier-drink-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.atelier-drink-card h3 {
  margin: 0;
  padding: 14px;
  font-size: 18px;
  line-height: 1.15;
}

.adresse-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 18, 15, 0.76), rgba(23, 18, 15, 0.88)),
    url("./images/places/restaurant/restaurant-interior-03.png") center / cover fixed,
    var(--charcoal);
}

.reservation-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 18, 15, 0.78), rgba(23, 18, 15, 0.9)),
    url("./images/hero/restaurant-hero-dishes1.jpg") center / cover fixed,
    var(--charcoal);
}

.adresse-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(var(--page-padding-desktop), calc(50vw - var(--page-half-max-width)));
  background: rgba(23, 18, 15, 0.5);
  backdrop-filter: blur(14px);
}

.adresse-main {
  display: grid;
  gap: 14px;
  min-height: calc(100svh - 72px);
  align-content: center;
  padding-block: 22px 18px;
}

.reservation-main {
  display: grid;
  min-height: calc(100svh - 72px);
  align-content: start;
  padding-block: 22px 18px;
}

.adresse-card,
.reservation-card {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid rgba(255, 245, 223, 0.24);
  background: rgba(23, 18, 15, 0.76);
  color: var(--rice);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.adresse-card h1,
.reservation-card h1 {
  margin: 0 0 16px;
  font-family: Anton, Impact, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.reservation-intro {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.reservation-form {
  display: grid;
  gap: 12px;
}

.reservation-form[hidden] {
  display: none;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  color: var(--rice);
  font-size: 14px;
  font-weight: 900;
}

.reservation-form label span {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 2px solid var(--charcoal);
  border-radius: 0;
  background: var(--rice);
  color: var(--charcoal);
  font-weight: 800;
}

.reservation-form input.field-invalid,
.reservation-form select.field-invalid {
  border-color: var(--chili-red);
  box-shadow: 0 0 0 2px rgba(217, 45, 31, 0.22);
}

.reservation-form textarea {
  min-height: 86px;
  resize: vertical;
}

.reservation-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

.form-error,
.group-note {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.form-error {
  min-height: 18px;
  color: var(--yellow);
}

.field-error {
  min-height: 16px;
  margin: -2px 0 0;
  color: #ffcfbf;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.group-note {
  display: none;
  margin-top: -4px;
  color: var(--paper);
}

.group-note.is-visible {
  display: block;
}

.fulle-widget-block {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
}

.fulle-widget-block[hidden] {
  display: none;
}

.fulle-widget-block h2,
.fulle-widget-block p {
  margin: 0;
}

.fulle-widget-block h2 {
  color: var(--deep-red);
  font-size: 20px;
  line-height: 1.15;
}

.fulle-widget-block p {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.fulle-widget-block .openBE {
  width: 100%;
}

.home-button.openBE {
  appearance: none;
}

.fulle-widget-status {
  min-height: 18px;
  color: var(--deep-red);
}

.reservation-confirmation {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
}

.reservation-confirmation[hidden] {
  display: none;
}

.reservation-confirmation h2 {
  margin: 0;
  color: var(--deep-red);
  font-size: 20px;
  line-height: 1.15;
}

.reservation-confirmation p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.reservation-confirmation dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.reservation-confirmation div.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23, 18, 15, 0.22);
}

.reservation-confirmation dt,
.reservation-confirmation dd {
  margin: 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 900;
}

.reservation-confirmation dd {
  overflow-wrap: anywhere;
  text-align: right;
}

.reservation-confirmation dt {
  color: rgba(23, 18, 15, 0.66);
}

.confirmation-actions {
  display: grid;
  gap: 9px;
}

.address-block {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
  padding: 14px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
}

.address-block span {
  color: var(--deep-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.address-block strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.15;
}

.adresse-map {
  width: 100%;
  height: 360px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 245, 223, 0.26);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.adresse-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.adresse-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.adresse-actions .home-button {
  width: 100%;
  min-height: 46px;
  box-shadow: 3px 3px 0 var(--charcoal);
}

.address-note {
  margin: 16px 0 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.adresse-info {
  width: 100%;
  margin: 0 auto;
  border: 2px solid var(--charcoal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(14px, 4vw, 48px);
  border-bottom: 2px solid var(--charcoal);
  background: rgba(127, 23, 18, 0.96);
  backdrop-filter: blur(18px);
}

.order-page,
.order-body {
  background: #241814;
  color: var(--charcoal);
}

.order-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(calc(100% - var(--page-padding-desktop) - var(--page-padding-desktop)), var(--page-max-width));
  height: 100svh;
  margin: 0 auto;
  background: #fff6e4;
  overflow: hidden;
}

.order-header {
  flex: 0 0 auto;
  z-index: 30;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 8px var(--page-padding-mobile);
  border-bottom: 1px solid rgba(23, 18, 15, 0.12);
  background: rgba(127, 23, 18, 0.96);
  color: var(--rice);
}

.order-brand,
.order-nav {
  display: flex;
  align-items: center;
}

.order-brand {
  gap: 9px;
  font-size: 16px;
  font-weight: 900;
}

.order-header .brand-mark {
  width: 34px;
  height: 34px;
  box-shadow: 3px 3px 0 var(--charcoal);
}

.order-nav {
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
}

.order-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.order-nav span {
  margin-left: 2px;
}

.order-title {
  flex: 0 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 14px var(--page-padding-mobile);
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  background: var(--rice);
}

.order-title p {
  margin: 0 0 3px;
  color: var(--deep-red);
  font-size: 12px;
  font-weight: 900;
}

.order-title h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.fulfillment-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: min(178px, 100%);
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
  gap: 2px;
}

.fulfillment-toggle label {
  cursor: pointer;
}

.fulfillment-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-toggle span {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 8px;
  background: var(--rice);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.fulfillment-toggle input:checked + span {
  background: var(--yellow);
}

.order-layout,
.ordering-layout {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
}

.category-sidebar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  width: 72px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-right: 1px solid rgba(23, 18, 15, 0.14);
  background: #efe0c1;
}

.category-button {
  min-height: 58px;
  padding: 12px 3px;
  border: 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.12);
  background: transparent;
  color: rgba(23, 18, 15, 0.72);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.category-button.is-active {
  background: var(--rice);
  color: var(--deep-red);
  box-shadow: inset 4px 0 0 var(--chili-red);
}

.dish-scroll {
  height: 100%;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px var(--page-padding-mobile) 92px;
}

.dish-list {
  min-width: 0;
  padding: 0;
}

.dish-section {
  scroll-margin-top: 0;
}

.dish-section + .dish-section {
  margin-top: 14px;
}

.dish-section-title {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: -12px calc(var(--page-padding-mobile) * -1) 8px;
  padding: 10px var(--page-padding-mobile);
  background: rgba(255, 246, 228, 0.95);
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.dish-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
}

.dish-thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 42%, rgba(245, 187, 50, 0.85) 0 16%, transparent 17%),
    linear-gradient(135deg, var(--terracotta), var(--deep-red));
}

.dish-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-info,
.dish-content {
  position: relative;
  min-width: 0;
  min-height: 96px;
  padding-right: 4px;
  padding-bottom: 32px;
}

.dish-name {
  display: -webkit-box;
  margin: 0 0 3px;
  overflow: hidden;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dish-desc,
.dish-description {
  display: -webkit-box;
  min-height: 30px;
  margin: 0 0 4px;
  overflow: hidden;
  color: rgba(23, 18, 15, 0.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  max-height: 18px;
  margin-bottom: 4px;
  overflow: hidden;
}

.dish-tag {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #f0dfbc;
  color: rgba(23, 18, 15, 0.78);
  font-size: 10px;
  font-weight: 900;
}

.dish-tag.hot {
  background: var(--chili-red);
  color: var(--rice);
}

.dish-price {
  color: var(--deep-red);
  font-size: 15px;
  font-weight: 900;
}

.dish-bottom {
  padding-right: 84px;
}

.dish-action {
  position: absolute;
  right: 0;
  bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dish-add {
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex: 0 0 26px;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 2px 2px 0 var(--charcoal);
}

.quantity-stepper {
  display: flex;
  height: 26px;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.qty-minus,
.qty-plus {
  display: grid;
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.qty-minus {
  background: var(--rice);
  color: var(--charcoal);
}

.qty-plus {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 2px 2px 0 var(--charcoal);
}

.qty-count {
  width: 14px;
  min-width: 14px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cart-bar,
.sticky-cart-bar {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 0;
  border-top: 2px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--rice);
}

.cart-bar-info {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  background: var(--charcoal);
  color: var(--rice);
  cursor: pointer;
  text-align: left;
}

.cart-bar-info strong,
.cart-bar-info span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-bar-info strong {
  font-size: 15px;
}

.cart-bar-info span {
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.cart-bar-button {
  display: grid;
  min-height: 58px;
  place-items: center;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 900;
}

.cart-drawer {
  display: none;
  position: fixed;
  right: max(var(--page-padding-desktop), calc(50vw - var(--page-half-max-width)));
  bottom: 58px;
  left: max(calc(72px + var(--page-padding-desktop)), calc(50vw - var(--page-half-max-width) + 72px));
  z-index: 45;
  max-height: min(68svh, 560px);
  overflow-y: auto;
  margin: 0;
  padding: 14px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
  box-shadow: 4px 4px 0 rgba(23, 18, 15, 0.42);
  scroll-margin-top: 0;
}

.cart-drawer:target {
  display: block;
}

.order-mode-note {
  margin: 0;
  color: var(--deep-red);
  font-size: 13px;
  font-weight: 900;
}

.cart-form select {
  width: 100%;
  max-width: 100%;
  margin-top: 7px;
  padding: 11px;
  border: 2px solid var(--charcoal);
  background: #fffaf0;
  color: var(--charcoal);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--rice);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
}

.menu-page {
  background:
    linear-gradient(rgba(23, 18, 15, 0.88), rgba(23, 18, 15, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 245, 223, 0.035) 0 1px, transparent 1px 42px),
    var(--charcoal);
}

.menu-hero,
.section,
.order-band {
  width: min(calc(100% - var(--page-padding-desktop) - var(--page-padding-desktop)), var(--page-max-width));
  margin-inline: auto;
  padding-block: clamp(42px, 6vw, 78px);
}

.menu-hero {
  border-bottom: 2px solid var(--charcoal);
  background:
    linear-gradient(120deg, rgba(127, 23, 18, 0.9), rgba(74, 39, 28, 0.78)),
    var(--deep-red);
}

.menu-hero h1,
.section h2,
.order-band h2,
.cart-header h2 {
  margin: 0;
  color: var(--rice);
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.menu-hero p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.order-band p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.section h2,
.order-band h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}

.section-heading {
  margin-bottom: 22px;
}

.lunch-section {
  background: linear-gradient(180deg, rgba(74, 39, 28, 0.92), rgba(127, 23, 18, 0.78));
}

.lunch-grid,
.menu-grid,
.signature-grid {
  display: grid;
  gap: 16px;
}

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

.menu-grid,
.signature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.lunch-card,
.menu-card,
.cart-panel {
  border: 2px solid var(--charcoal);
  box-shadow: 5px 5px 0 rgba(23, 18, 15, 0.7);
}

.lunch-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  color: var(--charcoal);
}

.lunch-card.featured {
  background: var(--yellow);
}

.lunch-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.05;
}

.price {
  color: var(--deep-red);
  font-family: Anton, Impact, sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.lunch-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lunch-card li {
  color: rgba(23, 18, 15, 0.82);
  font-size: 14px;
  font-weight: 900;
}

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--paper);
  color: var(--charcoal);
}

.menu-card.signature {
  background: linear-gradient(180deg, var(--chili-red), #8b2118);
  color: var(--rice);
}

.menu-card.dark-card {
  background: var(--soy);
  color: var(--rice);
}

.menu-image {
  height: 178px;
  margin: 12px 12px 0;
  overflow: hidden;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 42%, rgba(245, 187, 50, 0.85) 0 16%, transparent 17%),
    radial-gradient(circle at 64% 35%, rgba(255, 245, 223, 0.72) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--terracotta), var(--deep-red) 62%, var(--soy));
}

.menu-card.signature .menu-image {
  height: 192px;
}

.menu-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.menu-body h3 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1.12;
}

.menu-body p:not(.card-kicker) {
  margin: 0;
  color: rgba(23, 18, 15, 0.76);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.menu-card.signature .menu-body p:not(.card-kicker),
.menu-card.dark-card .menu-body p:not(.card-kicker) {
  color: rgba(255, 245, 223, 0.82);
}

.tag-row,
.meta-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 7px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.spice {
  background: var(--chili-red);
  color: var(--rice);
}

.takeaway {
  background: var(--yellow);
}

.gluten {
  background: #f1d77b;
}

.card-actions {
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 14px;
}

.card-price {
  font-family: Anton, Impact, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.add-button {
  min-height: 40px;
  padding: 9px 13px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 15px;
  box-shadow: 3px 3px 0 var(--charcoal);
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  border-block: 2px solid var(--charcoal);
  background: var(--terracotta);
}

.cart-panel {
  width: min(calc(100% - var(--page-padding-desktop) - var(--page-padding-desktop)), var(--page-max-width));
  margin: 0 auto clamp(72px, 8vw, 100px);
  padding: 18px;
  background: var(--rice);
  color: var(--charcoal);
}

.cart-header,
.cart-total,
.cart-line,
.cart-line-controls {
  display: flex;
  align-items: center;
}

.cart-header,
.cart-total,
.cart-line {
  justify-content: space-between;
  gap: 14px;
}

.cart-header h2 {
  color: var(--charcoal);
  font-size: 44px;
}

.cart-count {
  display: grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--charcoal);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--charcoal);
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.empty-cart {
  margin: 0;
  padding: 14px;
  border: 2px dashed var(--soy);
  color: var(--soy);
  font-size: 14px;
  font-weight: 900;
}

.cart-line {
  padding: 10px;
  border: 2px solid var(--charcoal);
  background: var(--paper);
}

.cart-line strong,
.cart-line small {
  display: block;
}

.cart-line small {
  color: rgba(23, 18, 15, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.cart-line-controls {
  gap: 6px;
}

.qty-button,
.remove-button {
  width: 32px;
  height: 32px;
  border: 2px solid var(--charcoal);
  background: var(--rice);
  color: var(--charcoal);
  box-shadow: 2px 2px 0 var(--charcoal);
}

.remove-button {
  background: var(--chili-red);
  color: var(--rice);
}

.cart-total {
  padding: 14px 0;
  border-top: 3px solid var(--charcoal);
  border-bottom: 3px solid var(--charcoal);
  font-weight: 900;
}

.cart-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cart-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 2px solid var(--charcoal);
}

.cart-form legend,
.cart-form label {
  font-size: 14px;
  font-weight: 900;
}

.cart-form input[type="text"],
.cart-form input[type="tel"],
.cart-form textarea {
  width: 100%;
  max-width: 100%;
  margin-top: 7px;
  padding: 11px;
  border: 2px solid var(--charcoal);
  background: #fffaf0;
  color: var(--charcoal);
  font-weight: 800;
}

.cart-submit {
  width: 100%;
}

.success-message {
  min-height: 22px;
  margin: 0;
  color: var(--deep-red);
  font-size: 14px;
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.36);
}

.mobile-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 9px 6px;
  border-right: 2px solid var(--charcoal);
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.mobile-cta a:nth-child(2) {
  background: var(--rice);
}

.mobile-cta a:last-child {
  border-right: 0;
  background: var(--chili-red);
  color: var(--rice);
}

@media (min-width: 1180px) {
  .menu-page {
    padding-right: var(--cart-width);
  }

  .menu-page .cart-panel {
    position: fixed;
    top: 90px;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    width: calc(var(--cart-width) - 28px);
    margin: 0;
    overflow: auto;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

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

@media (max-width: 820px) {
  .page-container,
  .section-container,
  .content-shell,
  .menu-hero,
  .section,
  .order-band,
  .cart-panel {
    width: min(calc(100% - var(--page-padding-mobile) - var(--page-padding-mobile)), var(--page-max-width));
  }

  .home-page .hero {
    padding-block: 66px 38px;
  }

  .home-header,
  .adresse-header,
  .brand-entry-header {
    padding-inline: var(--page-padding-mobile);
  }

  .home-page .hero h1 {
    font-size: 48px;
  }

  .brand-entry-intro h1 {
    font-size: 58px;
  }

  .brand-entry-grid {
    grid-template-columns: 1fr;
  }

  .brand-entry-card {
    min-height: 340px;
  }

  .restaurant-story {
    grid-template-columns: 1fr;
  }

  .restaurant-story-image img,
  .atelier-place-image img {
    height: 320px;
  }

  .home-subtitle {
    max-width: 310px;
    font-size: 16px;
  }

  .home-actions {
    width: min(330px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-info span:nth-child(2n) {
    border-right: 0;
  }

  .home-info span:nth-child(-n + 2) {
    border-bottom: 2px solid var(--charcoal);
  }

  .lunch-grid,
  .menu-grid,
  .signature-grid,
  .order-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 15px;
  }

  .menu-page {
    padding-bottom: 68px;
  }

  .site-header {
    padding-inline: var(--page-padding-mobile);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 14px;
  }

  .menu-hero,
  .section,
  .order-band {
    padding-inline: 0;
  }

  .restaurant-gallery,
  .restaurant-story,
  .atelier-showcase {
    padding-block: 34px;
  }

  .restaurant-gallery-grid,
  .atelier-drinks-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-gallery-grid img,
  .restaurant-gallery-grid img:nth-child(1),
  .restaurant-gallery-grid img:nth-child(2),
  .restaurant-gallery-grid img:nth-child(3),
  .restaurant-gallery-grid img:nth-child(4),
  .restaurant-gallery-grid img:nth-child(5) {
    grid-column: auto;
  }

  .menu-hero h1 {
    font-size: 48px;
  }

  .section h2,
  .order-band h2 {
    font-size: 38px;
  }

  .menu-hero p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .order-band p {
    font-size: 14px;
  }

  .menu-body h3 {
    font-size: 17px;
  }

  .menu-body p:not(.card-kicker) {
    font-size: 13px;
  }

  .menu-image,
  .menu-card.signature .menu-image {
    height: 168px;
  }

  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .add-button {
    width: 100%;
  }

  .cart-panel {
    margin-inline: auto;
    padding: 15px;
  }

  .cart-form fieldset {
    grid-template-columns: 1fr;
  }

  .cart-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }

  .home-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: var(--page-padding-mobile);
  }

  .adresse-card,
  .reservation-card,
  .atelier-card {
    padding: 18px;
  }

  .adresse-card h1,
  .reservation-card h1,
  .brand-entry-card h2,
  .atelier-card h1 {
    font-size: 42px;
  }

  .address-block strong {
    font-size: 18px;
  }

  .adresse-map {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .order-shell {
    width: 100%;
  }

  .order-title {
    align-items: stretch;
    flex-direction: column;
  }

  .fulfillment-toggle {
    width: 100%;
  }

  .order-layout,
  .ordering-layout {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .category-sidebar {
    width: 64px;
  }

  .dish-scroll {
    padding-inline: 12px;
  }

  .dish-section-title {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .dish-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
  }

  .dish-thumb {
    width: 82px;
    height: 82px;
  }

  .dish-info,
  .dish-content {
    min-height: 82px;
  }

  .cart-drawer {
    right: 12px;
    left: 76px;
  }
}

@media (max-width: 380px) {
  .dish-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .dish-thumb {
    width: 72px;
    height: 72px;
  }

  .dish-bottom {
    padding-right: 76px;
  }

  .cart-bar,
  .sticky-cart-bar {
    grid-template-columns: minmax(0, 1fr) 104px;
  }
}
