:root {
  --ink: #18110d;
  --muted: #6f6259;
  --paper: #fff8ef;
  --cream: #f2dfc0;
  --white: #fffdf8;
  --tomato: #cf2f24;
  --tomato-dark: #922119;
  --herb: #1f7a45;
  --char: #231a16;
  --gold: #f3a51d;
  --line: rgba(24, 17, 13, 0.12);
  --shadow: 0 24px 70px rgba(24, 17, 13, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(24, 17, 13, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--tomato);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--tomato);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--tomato);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 76px) 64px;
  color: var(--white);
  background: var(--char);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background:
    radial-gradient(circle at 76% 42%, rgba(243, 165, 29, 0.42), transparent 20%),
    radial-gradient(circle at 83% 67%, rgba(207, 47, 36, 0.5), transparent 23%),
    radial-gradient(circle at 62% 76%, rgba(31, 122, 69, 0.38), transparent 18%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 24px),
    linear-gradient(135deg, #1a1110, #5b1f1c 54%, #e09621);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 40%, rgba(243, 165, 29, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(24, 17, 13, 0.96) 0%, rgba(24, 17, 13, 0.78) 42%, rgba(24, 17, 13, 0.3) 100%),
    linear-gradient(0deg, rgba(24, 17, 13, 0.74), rgba(24, 17, 13, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(5.4rem, 15vw, 12rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 8vw, 6.7rem);
  line-height: 0.86;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.36rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 14px 28px rgba(207, 47, 36, 0.34);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.danger {
  color: var(--white);
  background: #8f1d17;
}

.btn.full {
  width: 100%;
}

.opening-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 64px);
  top: 112px;
  width: min(250px, calc(100% - 36px));
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.94);
  box-shadow: var(--shadow);
}

.opening-card span,
.opening-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.opening-card strong {
  display: block;
  margin: 2px 0;
  font-size: 1.55rem;
}

.intro,
.menu-section,
.drinks-section,
.gallery,
.contact,
.legal-section,
.special {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--white);
}

.intro article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.intro span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--tomato);
  font-weight: 950;
}

.intro h2 {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.intro p,
.section-heading p,
.special-copy p,
.contact-copy p {
  color: var(--muted);
}

.special {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: var(--cream);
}

.special-photo {
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-graphic {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(243, 165, 29, 0.42), transparent 22%),
    radial-gradient(circle at 35% 70%, rgba(31, 122, 69, 0.34), transparent 20%),
    linear-gradient(135deg, #211612, #7a221b 62%, #f0a520);
}

.menu-graphic img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.menu-graphic span,
.menu-graphic strong,
.menu-graphic small {
  display: block;
}

.menu-graphic span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}

.menu-graphic strong {
  font-size: 1.25rem;
}

.menu-graphic small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.steak-graphic {
  min-height: 500px;
}

.board-graphic {
  min-height: 760px;
}

.special-copy {
  max-width: 680px;
}

.special-copy p {
  font-size: 1.08rem;
}

.price-badge {
  display: inline-grid;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 16px 34px rgba(207, 47, 36, 0.24);
}

.price-badge span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-badge strong {
  font-size: 2rem;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 830px;
  margin-bottom: 36px;
}

.menu-section {
  background: var(--white);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.menu-photo {
  min-height: 760px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-board,
.drinks-grid {
  display: grid;
  gap: 16px;
}

.menu-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-menu {
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.menu-order-link {
  margin-top: 18px;
}

.menu-group,
.drinks-grid article {
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.menu-group h3,
.drinks-grid h3 {
  color: var(--tomato-dark);
  font-size: 1.42rem;
  font-weight: 950;
}

.menu-group.green h3 {
  color: var(--herb);
}

.menu-group.red {
  background: #fff1eb;
}

.price-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(24, 17, 13, 0.2);
}

.price-list span {
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.price-list strong {
  color: var(--tomato);
  font-weight: 950;
  white-space: nowrap;
}

.drinks-section {
  background:
    linear-gradient(rgba(24, 17, 13, 0.91), rgba(24, 17, 13, 0.91)),
    radial-gradient(circle at 78% 22%, rgba(31, 122, 69, 0.35), transparent 26%),
    var(--char);
  color: var(--white);
}

.drinks-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.drinks-grid {
  grid-template-columns: repeat(3, 1fr);
}

.drinks-grid article {
  color: var(--ink);
  background: var(--paper);
}

.drink-photo {
  min-height: 350px;
  padding: 0 !important;
  overflow: hidden;
}

.drinks-graphic {
  min-height: 350px;
  background:
    radial-gradient(circle at 70% 30%, rgba(129, 210, 180, 0.38), transparent 22%),
    linear-gradient(135deg, #123f2a, #1f7a45 62%, #f3a51d);
}

.gallery {
  background: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

figure {
  margin: 0;
}

figure img {
  height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-graphic {
  height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doner-graphic {
  background:
    radial-gradient(circle at 58% 45%, #f2dfc0 0 24%, transparent 25%),
    radial-gradient(circle at 45% 53%, #cf2f24 0 10%, transparent 11%),
    radial-gradient(circle at 62% 62%, #1f7a45 0 12%, transparent 13%),
    linear-gradient(135deg, #211612, #8f1d17);
}

.veggie-graphic {
  background:
    radial-gradient(circle at 45% 45%, #f2dfc0 0 20%, transparent 21%),
    radial-gradient(circle at 58% 52%, #1f7a45 0 18%, transparent 19%),
    radial-gradient(circle at 38% 65%, #f3a51d 0 12%, transparent 13%),
    linear-gradient(135deg, #123f2a, #f2dfc0);
}

.pizza-graphic {
  background:
    radial-gradient(circle at 50% 50%, #f2dfc0 0 30%, transparent 31%),
    conic-gradient(from 15deg, #cf2f24, #f3a51d, #1f7a45, #cf2f24);
}

figcaption {
  padding-top: 12px;
  font-weight: 950;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 17, 13, 0.92), rgba(24, 17, 13, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #18110d, #5a1e19);
  background-size: cover;
  background-position: center;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.96);
}

.legal-section {
  background: var(--white);
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 150px clamp(20px, 5vw, 76px) clamp(54px, 8vw, 90px);
  color: var(--white);
  background:
    linear-gradient(rgba(24, 17, 13, 0.9), rgba(24, 17, 13, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #18110d, #5a1e19);
  background-size: cover;
  background-position: center;
}

.legal-hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(4.8rem, 13vw, 9rem);
}

.legal-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  font-weight: 700;
}

.legal-section.privacy {
  background: var(--paper);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.privacy .legal-card {
  background: var(--white);
}

.legal-card.wide {
  grid-column: 1 / -1;
}

.legal-card h2,
.legal-card h3 {
  color: var(--tomato-dark);
  font-size: 1.22rem;
  font-family: "Manrope", sans-serif;
  font-weight: 950;
  line-height: 1.15;
}

.legal-card p {
  color: var(--muted);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(243, 165, 29, 0.12);
  font-weight: 800;
}

dl {
  display: grid;
  gap: 20px;
  margin: 0 0 24px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: #100c09;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 1050px) {
  .intro,
  .special,
  .menu-layout,
  .drinks-grid,
  .photo-grid,
  .legal-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .menu-photo {
    min-height: 420px;
  }

  .opening-card {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: rgba(24, 17, 13, 0.97);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav a[aria-current="page"] {
    background: var(--tomato);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .legal-hero {
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(4.6rem, 24vw, 7.5rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .intro article,
  .menu-group,
  .drinks-grid article,
  .legal-card,
  .contact-panel {
    padding: 22px;
  }

  .legal-card.wide {
    grid-column: auto;
  }

  .special-photo,
  .menu-photo,
  figure img,
  .drink-photo {
    min-height: 280px;
    height: 280px;
  }

  .price-list li {
    grid-template-columns: 1fr auto;
  }
}

.order-page {
  background: var(--white);
}

.order-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 76px) clamp(54px, 8vw, 90px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 17, 13, 0.95), rgba(24, 17, 13, 0.62)),
    linear-gradient(0deg, rgba(24, 17, 13, 0.62), rgba(24, 17, 13, 0.18)),
    url("assets/hero-food.png");
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-position: center;
}

.order-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(4.8rem, 12vw, 9rem);
}

.order-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  font-weight: 750;
}

.order-hero aside {
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.94);
  box-shadow: var(--shadow);
}

.order-hero aside strong,
.order-hero aside span,
.order-hero aside small {
  display: block;
}

.order-hero aside strong {
  font-size: 1.45rem;
}

.order-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 76px);
}

.order-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 76px);
  background: var(--cream);
}

.order-benefits article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.order-benefits span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--tomato);
  font-weight: 950;
}

.order-benefits strong {
  font-size: 1.1rem;
}

.order-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 760;
}

.order-notice {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--tomato-dark);
  font-weight: 900;
}

.order-notice span {
  color: rgba(255, 255, 255, 0.78);
}

.closed-notice {
  display: grid;
  gap: 0.35rem;
  margin: 18px clamp(20px, 5vw, 76px) 0;
  padding: 22px;
  border: 1px solid rgba(191, 48, 32, 0.24);
  border-left: 6px solid var(--tomato);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ed, #fffdf8);
  box-shadow: 0 18px 38px rgba(24, 17, 13, 0.08);
}

.closed-notice[hidden] {
  display: none;
}

.closed-notice strong {
  color: var(--tomato-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 950;
}

.closed-notice span {
  max-width: 760px;
  color: var(--muted);
  font-weight: 780;
}

.allergen-notice {
  padding: 18px clamp(20px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.allergen-notice details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.allergen-notice summary {
  cursor: pointer;
  color: var(--tomato-dark);
  font-weight: 950;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 16px;
}

.allergen-grid p,
.allergen-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.allergen-grid strong {
  color: var(--ink);
}

.allergen-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-toolbar {
  position: sticky;
  z-index: 5;
  top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
}

.order-toolbar label,
.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 750;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.order-menu-list {
  display: grid;
  gap: 18px;
}

.order-category {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent),
    var(--paper);
  overflow: hidden;
}

.order-category.is-unavailable {
  opacity: 0.76;
}

.order-category-banner {
  height: 230px;
  margin: -22px -22px 18px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.order-category-head {
  margin-bottom: 16px;
}

.order-category-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.1;
}

.order-category-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.category-tags {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.45rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(191, 48, 32, 0.1);
  color: #7b2f22;
  font-size: 0.78rem;
  font-weight: 800;
}

.order-items {
  display: grid;
  gap: 10px;
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(24, 17, 13, 0.06);
}

.order-item.is-highlight {
  border: 2px solid var(--gold);
}

.order-item strong,
.order-item span {
  display: block;
}

.order-item em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.order-item span {
  color: var(--tomato);
  font-weight: 950;
}

.order-item button,
.qty-actions button,
.ticket-actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--char);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.order-item button:disabled,
.checkout-form button:disabled,
.checkout-form input:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.cart-panel {
  position: sticky;
  top: 92px;
  scroll-margin-top: 96px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cart-panel h2 {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 950;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

.cart-line strong,
.cart-line span,
.cart-line em {
  display: block;
}

.cart-line span {
  color: var(--muted);
}

.cart-line em {
  color: var(--tomato-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
}

.qty-actions {
  display: inline-grid;
  grid-template-columns: 36px 28px 36px;
  gap: 5px;
  align-items: center;
  text-align: center;
}

.qty-actions button {
  min-height: 34px;
  padding: 0;
}

.cart-empty {
  padding: 14px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(24, 17, 13, 0.06);
  font-weight: 800;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 2px solid var(--line);
  font-size: 1.2rem;
  font-weight: 950;
}

.checkout-form {
  display: grid;
  gap: 13px;
}

.payment-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-choice legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-choice label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  cursor: pointer;
}

.payment-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--tomato);
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.payment-choice small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -2px;
}

.payment-icons span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fffdfa;
  font-size: 0.72rem;
  font-weight: 950;
}

.checkout-consent {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.checkout-consent a {
  color: var(--tomato-dark);
  font-weight: 950;
}

.form-note,
.order-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(720px, calc(100vw - 36px));
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 17, 13, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy {
  min-width: 0;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.3;
}

.cookie-settings-toggle {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.cookie-settings {
  margin-top: 8px;
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
}

.cookie-settings input {
  accent-color: var(--tomato);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-actions a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.cookie-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.cookie-actions button[data-cookie-save="necessary"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.order-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(24, 17, 13, 0.06);
}

.order-status:empty {
  display: none;
}

.order-status.is-success {
  color: #0d5c31;
  background: rgba(31, 122, 69, 0.14);
}

.order-status.is-error {
  color: var(--tomato-dark);
  background: rgba(207, 47, 36, 0.12);
}

.config-open {
  overflow: hidden;
}

.config-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(13, 9, 7, 0.68);
  backdrop-filter: blur(6px);
}

.config-dialog {
  position: fixed;
  z-index: 81;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 16px;
  width: min(560px, calc(100vw - 34px));
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 26px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.config-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(24, 17, 13, 0.08);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.config-head {
  padding-right: 44px;
}

.config-head p {
  margin: 0 0 4px;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.config-head h2 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 950;
}

.config-head strong {
  color: var(--tomato-dark);
  font-size: 1.1rem;
}

.config-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.config-group legend {
  padding: 0 8px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 950;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-pill,
.choice-all {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 900;
  cursor: pointer;
}

.choice-pill input,
.choice-all input {
  width: 20px;
  height: 20px;
  accent-color: var(--tomato);
}

.choice-pill:has(input:checked),
.choice-all:has(input:checked) {
  border-color: rgba(191, 48, 32, 0.5);
  background: rgba(191, 48, 32, 0.08);
}

.config-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.config-footer {
  position: sticky;
  bottom: -26px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  background: linear-gradient(rgba(247, 239, 226, 0), var(--paper) 28%);
}

.config-qty {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--white);
  text-align: center;
  font-weight: 950;
}

.config-qty button,
.config-add {
  border: 0;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.config-qty button {
  color: var(--ink);
  background: transparent;
  font-size: 1.4rem;
}

.config-add {
  min-height: 48px;
  border-radius: 999px;
  color: var(--white);
  background: var(--tomato);
}

.mobile-cart-bar {
  display: none;
}

.mobile-loader {
  display: none;
}

.tablet-body {
  min-height: 100vh;
  background: #130f0d;
}

.tablet-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 42px);
  color: var(--white);
  background: rgba(19, 15, 13, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tablet-header h1 {
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  margin-bottom: 0;
}

.tablet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.tablet-main {
  padding: clamp(20px, 4vw, 42px);
}

.tablet-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.tablet-status article {
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: #241a16;
}

.tablet-status span,
.tablet-status strong {
  display: block;
}

.tablet-status span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.tablet-status strong {
  font-size: 2.1rem;
}

.orders-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.order-ticket {
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid transparent;
}

.order-ticket.is-new {
  border-color: var(--gold);
}

.order-ticket header,
.order-ticket footer,
.order-ticket li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.order-ticket header {
  align-items: start;
  margin-bottom: 14px;
}

.order-ticket h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 950;
}

.ticket-id {
  color: var(--tomato);
  font-weight: 950;
}

.order-ticket ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}

.order-ticket li em {
  display: block;
  margin-top: 2px;
  color: var(--tomato-dark);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.ticket-note {
  padding: 12px;
  border-radius: 8px;
  background: rgba(243, 165, 29, 0.16);
  font-weight: 900;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tablet-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 900;
}

.orders-desk-body {
  min-height: 100vh;
  color: var(--white);
  background: #130f0d;
}

.orders-desk-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 44px);
  background: rgba(19, 15, 13, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.orders-desk-header h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.orders-desk-clock {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #241a16;
  text-align: right;
}

.orders-desk-clock span,
.orders-desk-clock strong {
  display: block;
}

.orders-desk-clock span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.orders-desk-clock strong {
  font-size: 1.8rem;
}

.orders-desk-main {
  padding: clamp(18px, 3vw, 36px);
}

.desk-view-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.desk-view-nav button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.desk-view-nav button.is-active {
  border-color: var(--tomato);
  background: var(--tomato);
  box-shadow: 0 10px 22px rgba(226, 43, 32, 0.24);
}

.desk-view {
  display: none;
}

.desk-view.is-active {
  display: block;
}

.orders-desk-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.orders-desk-stats article {
  padding: 18px;
  border-radius: 8px;
  background: #241a16;
}

.orders-desk-stats span,
.orders-desk-stats strong {
  display: block;
}

.orders-desk-stats span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
}

.orders-desk-stats strong {
  margin-top: 4px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.orders-desk-tools {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 320px) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
}

.desk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.desk-tabs button,
.desk-search input,
.desk-search {
  min-width: 0;
}

.desk-tabs button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 950;
  cursor: pointer;
}

.desk-tabs button.is-active {
  border-color: var(--tomato);
  background: var(--tomato);
}

.desk-search {
  display: grid;
  gap: 6px;
}

.desk-search span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 900;
}

.desk-search input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.desk-orders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.desk-ticket {
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid transparent;
}

.desk-ticket.is-new {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 165, 29, 0.12);
}

.desk-ticket.is-soon {
  border-color: #d97b19;
}

.desk-ticket.is-late {
  border-color: var(--tomato);
}

.desk-ticket header,
.desk-ticket footer,
.desk-ticket li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.desk-ticket header {
  align-items: flex-start;
}

.desk-ticket h2 {
  margin: 4px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.05;
}

.desk-time {
  min-width: 112px;
  padding: 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--tomato);
  text-align: center;
}

.desk-time span,
.desk-time strong {
  display: block;
}

.desk-time span {
  font-size: 0.75rem;
  font-weight: 900;
}

.desk-time strong {
  font-size: 1.8rem;
}

.desk-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.desk-flags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--tomato-dark);
  background: rgba(191, 48, 32, 0.1);
  font-size: 0.78rem;
  font-weight: 950;
}

.desk-ticket ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}

.desk-ticket li {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(24, 17, 13, 0.16);
}

.desk-ticket li em {
  display: block;
  margin-top: 3px;
  color: var(--tomato-dark);
  font-style: normal;
  font-weight: 950;
}

.desk-ticket footer {
  align-items: center;
  margin-top: 16px;
}

.desk-ticket footer > strong {
  font-size: 1.5rem;
}

.monthly-report {
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.monthly-report-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 180px auto auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.monthly-report-head h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.monthly-report-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.monthly-report-head label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.monthly-report-head input,
.monthly-report-head select {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.monthly-report-stats,
.report-providers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.monthly-report-stats article,
.report-providers article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.monthly-report-stats span,
.report-providers span,
.report-providers small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.monthly-report-stats strong,
.report-providers strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  font-weight: 950;
}

.report-table-wrap {
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.report-table th,
.report-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.report-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .orders-desk-tools,
  .desk-orders,
  .monthly-report-head {
    grid-template-columns: 1fr;
  }

  .orders-desk-stats,
  .monthly-report-stats,
  .report-providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  .orders-desk-header,
  .desk-view-nav,
  .orders-desk-stats,
  .orders-desk-tools,
  .desk-orders,
  .tablet-message {
    display: none !important;
  }

  .orders-desk-body {
    color: #000;
    background: #fff;
  }

  .orders-desk-main {
    padding: 0;
  }

  .monthly-report {
    margin: 0;
    padding: 0;
    color: #000;
    background: #fff;
  }
}

@media (max-width: 980px) {
  .order-hero,
  .order-benefits,
  .order-system,
  .orders-list {
    grid-template-columns: 1fr;
  }

  .cart-panel,
  .order-toolbar {
    position: static;
  }
}

@media (max-width: 760px) {
  .order-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .allergen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mobile-loader {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 10px;
    color: var(--white);
    text-align: center;
    background:
      radial-gradient(circle at 60% 34%, rgba(243, 165, 29, 0.35), transparent 24%),
      linear-gradient(135deg, #18110d, #5b1f1c);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader-mark {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: var(--tomato);
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.18);
  }

  .mobile-loader strong {
    font-size: 1.2rem;
  }

  .mobile-loader small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
  }

  body:has(.mobile-cart-bar:not([hidden])) {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .order-hero {
    padding-top: 130px;
  }

  .order-toolbar,
  .tablet-status {
    grid-template-columns: 1fr;
  }

  .order-item,
  .cart-line,
  .order-ticket header,
  .order-ticket footer,
  .order-ticket li,
  .tablet-header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .order-item button {
    width: 100%;
  }

  .order-category-banner {
    height: 150px;
  }

  .tablet-actions .btn {
    width: 100%;
  }

  .cart-panel {
    max-height: none;
    overflow: visible;
    padding-bottom: calc(150px + env(safe-area-inset-bottom));
  }

  .checkout-form .btn[type="submit"] {
    min-height: 60px;
    margin-top: 8px;
    font-size: 1rem;
  }

  .form-note {
    padding-bottom: 24px;
  }

  .cookie-banner {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 24px);
    padding: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-actions a {
    grid-column: 1 / -1;
    order: 3;
    text-align: center;
  }

  .cookie-actions button {
    width: 100%;
    padding: 0 10px;
  }

  .cookie-settings-toggle {
    grid-column: 1 / -1;
  }

  .mobile-cart-bar {
    position: fixed;
    z-index: 80;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--tomato);
    box-shadow: 0 18px 42px rgba(24, 17, 13, 0.32);
    font-weight: 950;
  }

  .mobile-cart-bar[hidden] {
    display: none;
  }

  .mobile-cart-bar.is-cart-visible {
    display: none;
  }

  .mobile-cart-bar strong {
    white-space: nowrap;
  }

  .config-dialog {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(84vh, 760px);
    padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    transform: none;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .config-footer {
    bottom: calc(-22px - env(safe-area-inset-bottom));
    grid-template-columns: 118px minmax(0, 1fr);
  }
}

.home-hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: 104px clamp(20px, 5vw, 76px) 54px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(54, 31, 22, 0.58) 0%, rgba(48, 27, 19, 0.48) 42%, rgba(146, 49, 29, 0.48) 100%),
    url("assets/hero-food.png");
  background-size: cover;
  background-position: 58% center;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 232, 196, 0.18), rgba(43, 24, 17, 0.5)),
    radial-gradient(circle at 34% 42%, rgba(255, 238, 205, 0.34), transparent 32%),
    radial-gradient(circle at 62% 20%, rgba(244, 169, 68, 0.2), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(222, 38, 29, 0.18), transparent 28%);
  pointer-events: none;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero-inner {
  max-width: 1220px;
  align-self: center;
}

.hero-logo-title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: min(1240px, 100%);
  margin: 0 0 24px;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.4));
}

.hero-logo-title img {
  display: block;
  width: 100%;
  max-height: clamp(315px, 40vw, 560px);
  object-fit: contain;
}

.home-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 780;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.pickup-card {
  align-self: end;
  margin: 0 0 10px auto;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.95);
  box-shadow: var(--shadow);
}

.pickup-card span,
.pickup-card strong,
.pickup-card small {
  display: block;
}

.pickup-card span {
  color: var(--tomato);
  font-weight: 950;
  text-transform: uppercase;
}

.pickup-card strong {
  margin: 6px 0;
  font-size: 1.45rem;
}

.pickup-card small {
  color: var(--muted);
  font-weight: 850;
}

.home-food-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(36px, 6vw, 70px) clamp(20px, 5vw, 76px);
  background: var(--white);
}

.home-food-strip article {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(24, 17, 13, 0.08);
}

.home-food-strip h2,
.home-food-strip p {
  padding-left: 22px;
  padding-right: 22px;
}

.home-food-strip h2 {
  margin: 20px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 950;
}

.home-food-strip p {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 760;
}

.food-tile {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.doner-tile {
  background-image:
    linear-gradient(rgba(24, 17, 13, 0.08), rgba(24, 17, 13, 0.16)),
    url("assets/cat-doner.png");
}

.pizza-tile {
  background-image:
    linear-gradient(rgba(24, 17, 13, 0.06), rgba(24, 17, 13, 0.18)),
    url("assets/cat-pizza-pasta.png");
  background-position: center;
}

.veggie-tile {
  background-image:
    linear-gradient(rgba(24, 17, 13, 0.04), rgba(24, 17, 13, 0.12)),
    url("assets/cat-veggie.png");
}

.home-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 239, 226, 0.76)),
    var(--white);
}

.home-info article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 168px;
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 34px rgba(24, 17, 13, 0.06);
}

.home-info article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--tomato), var(--gold));
  opacity: 0.8;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 10px 22px rgba(191, 48, 32, 0.25);
}

.icon-clock::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-clock::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(2px, -2px);
}

.icon-bag::before {
  content: "";
  width: 20px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translateY(3px);
}

.icon-bag::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateY(-7px);
}

.icon-pin::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.icon-pin::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.home-info h2 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
}

.home-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 760;
}

.home-order-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 76px);
  background: var(--cream);
}

.home-order-teaser h2 {
  margin-bottom: 14px;
}

.home-order-teaser p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-weight: 760;
}

.coming-soon-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 20%, rgba(245, 174, 78, 0.2), transparent 28%),
    linear-gradient(110deg, rgba(18, 13, 10, 0.96), rgba(18, 13, 10, 0.86) 48%, rgba(115, 30, 19, 0.74)),
    url("assets/hero-food.png");
  background-size: cover;
  background-position: 58% center;
}

.coming-soon {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 54px);
}

.coming-soon-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - clamp(36px, 8vw, 108px));
  overflow: hidden;
  padding: clamp(24px, 4.2vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0.68)),
    rgba(18, 13, 10, 0.5);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.coming-soon-content {
  display: grid;
  justify-items: center;
  max-width: 980px;
}

.coming-soon-content img {
  display: block;
  width: min(820px, 100%);
  max-height: clamp(180px, 30vw, 330px);
  object-fit: contain;
  object-position: center;
  margin: 12px 0 22px;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
}

.coming-soon-content h1 {
  max-width: 740px;
  margin: 0 0 14px;
  color: #fff8ef;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.92;
}

.coming-soon-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.65vw, 1.16rem);
  font-weight: 780;
}

.coming-soon-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 22px;
}

.coming-soon-facts article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.1);
}

.coming-soon-facts span,
.coming-soon-facts small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.coming-soon-facts strong {
  display: block;
  margin: 5px 0 2px;
  color: #fff8ef;
  font-size: 1.08rem;
  font-weight: 950;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .coming-soon-hero {
    grid-template-columns: 1fr;
  }

  .coming-soon-content img {
    object-position: center;
  }

  .coming-soon-content,
  .coming-soon-content h1,
  .coming-soon-content p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .coming-soon-facts {
    grid-template-columns: 1fr;
  }

  .coming-soon-actions {
    justify-content: center;
  }

  .home-hero,
  .home-food-strip,
  .home-info,
  .home-order-teaser {
    grid-template-columns: 1fr;
  }

  .home-hero {
    align-items: end;
  }

  .pickup-card {
    justify-self: center;
    width: min(320px, 100%);
    margin: 18px auto 0;
    text-align: center;
  }

  .home-order-teaser .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .coming-soon {
    padding: 12px;
  }

  .coming-soon-hero {
    min-height: calc(100vh - 24px);
    padding: 22px;
  }

  .coming-soon-content img {
    max-height: 190px;
  }

  .coming-soon-content h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .coming-soon-actions .btn {
    width: 100%;
  }

  .home-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-logo-title {
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .hero-logo-title img {
    max-height: 300px;
  }
}
