:root {
  --bg: #fff8e7;
  --surface: #ffffff;
  --surface-soft: #fff3c8;
  --ink: #211b16;
  --muted: #6d6259;
  --line: #efd596;
  --line-strong: #e0b525;
  --gold: #ffd84d;
  --gold-dark: #b17a00;
  --maroon: #b92932;
  --maroon-dark: #3a1113;
  --ember: #e3492d;
  --leaf: #1f7a68;
  --tomato: #d1462f;
  --panel: rgba(255,255,255,.92);
  --panel-strong: #ffffff;
  --shadow: 0 18px 50px rgba(88, 24, 18, 0.14);
  --hero-glass: rgba(58,17,19,.68);
  --hero-text: #ffffff;
  --hero-muted: rgba(255,255,255,.78);
  --radius: 14px;
  --container: 1180px;
}

body[data-theme="dark"] {
  --bg: #100f0e;
  --surface: #191411;
  --surface-soft: #231713;
  --ink: #fff7e4;
  --muted: #c6b8a2;
  --line: rgba(255,216,77,.2);
  --line-strong: rgba(255,216,77,.42);
  --gold: #ffd84d;
  --gold-dark: #ffd84d;
  --maroon: #d43a40;
  --maroon-dark: #2b0c0e;
  --ember: #f0663a;
  --panel: rgba(28,21,18,.9);
  --panel-strong: #211812;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --hero-glass: rgba(18,13,11,.72);
  --hero-text: #fff7e4;
  --hero-muted: rgba(255,247,228,.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(185,41,50,.13) 0 12%, transparent 12% 100%),
    linear-gradient(315deg, rgba(255,216,77,.28) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #fffdf6, var(--bg) 42%, #fff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  transition: background .2s ease, color .2s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,253,246,.9), rgba(255,248,231,.86)),
    url("https://images.unsplash.com/photo-1543353071-10c8ba85a904?w=1800&q=70&auto=format&fit=crop") center / cover;
  opacity: .34;
}

body > * {
  position: relative;
  z-index: 1;
}

body[data-theme="dark"] {
  background:
    linear-gradient(135deg, rgba(185,41,50,.16) 0 16%, transparent 16% 100%),
    linear-gradient(315deg, rgba(255,216,77,.08) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #100f0e, #17100e 46%, #0f0c0a 100%);
}

body[data-theme="dark"]::before {
  background:
    linear-gradient(180deg, rgba(16,15,14,.9), rgba(23,16,14,.88)),
    url("https://images.unsplash.com/photo-1543353071-10c8ba85a904?w=1800&q=70&auto=format&fit=crop") center / cover;
  opacity: .22;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: 112px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text);
  background: #100f0e;
  transition: min-height .35s ease;
  touch-action: pan-y;
  padding: 18px max(16px, calc((100vw - var(--container)) / 2));
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 6.5s ease;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 168, 76, .32), transparent 30%),
    linear-gradient(135deg, rgba(50, 17, 15, .42), rgba(16, 15, 14, .72)),
    var(--hero-image) center / cover;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.32), rgba(0,0,0,.64)),
    linear-gradient(90deg, rgba(16,15,14,.58), transparent 54%, rgba(16,15,14,.38));
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: left;
  padding: 0 18px 0 0;
  transition: opacity .25s ease, transform .25s ease;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .72rem;
  margin: 0;
}

.hero h1 {
  margin: 4px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: .02em;
}

.hero__tagline {
  max-width: 720px;
  margin: 0;
  color: var(--hero-muted);
  font-size: clamp(.86rem, 1.7vw, 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__button,
.ghost-button,
.hero__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #15110d;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.ui-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,216,77,.42);
  border-radius: 16px;
  background: var(--hero-glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.hero__slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.hero__control {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-color: rgba(255,255,255,.42);
  background: rgba(16,15,14,.32);
  color: #fff;
}

.hero__control:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.18);
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.hero__dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--gold);
}

.app-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 18px;
  z-index: 10;
  max-height: calc(100vh - 36px);
  overflow: auto;
  margin-top: 34px;
  padding: 14px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-nav__list {
  display: grid;
  gap: 8px;
  padding: 0;
}

.menu-nav__list a {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.2;
}

.menu-nav__list a:hover,
.menu-nav__list a.is-active {
  color: var(--maroon);
  border-color: var(--line-strong);
  background: rgba(255,216,77,.22);
}

.menu-layout {
  padding: 34px 0 78px;
}

.toolbar {
  display: block;
  margin-bottom: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(33,27,22,.08);
}

.search {
  flex: 1;
  display: grid;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 700;
}

.search__field {
  position: relative;
  display: flex;
  align-items: center;
}

.search__field .ui-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}

.search input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  min-height: 48px;
  padding: 0 44px;
  font: inherit;
  outline: none;
  background: var(--panel-strong);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.18);
}

.search input::-webkit-search-decoration,
.search input::-webkit-search-cancel-button {
  appearance: none;
}

.search__clear {
  position: absolute;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(185,41,50,.1);
  color: var(--maroon);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.search__clear[hidden] {
  display: none;
}

.ghost-button {
  background: transparent;
  color: var(--gold-dark);
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}

.toolbar__download {
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
  width: auto;
  padding-inline: 16px;
  border-color: var(--maroon);
  background: var(--maroon);
  color: #fff;
  white-space: nowrap;
}

.toolbar__download:disabled {
  cursor: progress;
  opacity: .72;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 0;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,216,77,.16), transparent 38%),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(88,24,18,.11);
  color: var(--muted);
  font-weight: 700;
}

.pagination:empty {
  display: none;
}

.pagination__controls {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: 10px;
}

.pagination__pages {
  display: flex;
  min-width: 0;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

.pagination button {
  min-height: 40px;
  min-width: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.pagination__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--maroon) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(185,41,50,.2);
}

.pagination button[aria-current="page"] {
  border-color: var(--maroon);
  background: linear-gradient(135deg, var(--maroon), var(--ember));
  color: #fff;
  box-shadow: 0 8px 18px rgba(185,41,50,.2);
}

.pagination button:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255,216,77,.26);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: .38;
  box-shadow: none;
  transform: none;
}

body[data-theme="dark"] .pagination__pages {
  background: rgba(255,255,255,.06);
}

.menu-section {
  scroll-margin-top: 92px;
  display: grid;
  margin-bottom: 0;
  touch-action: pan-y;
}

.section-menu {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 28px;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(185,41,50,.98), rgba(58,17,19,.98)),
    var(--maroon);
  color: #fff;
  box-shadow: var(--shadow);
}

.section-header__copy {
  position: relative;
  z-index: 1;
}

.section-header h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
}

.subsection {
  margin: 0;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.subsection:last-child {
  border-bottom: 0;
}

.subsection__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 12px;
  margin-bottom: 0;
}

.subsection h3 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.subsection__note {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.subsection__items {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 10px;
  border: 0;
  border-bottom: 1px solid rgba(234,223,206,.88);
  border-left: 3px solid transparent;
  width: 100%;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.menu-item:last-child {
  border-bottom: 0;
}

body[data-theme="dark"] .menu-item {
  border-bottom-color: rgba(255,216,77,.14);
}

.menu-item:hover {
  background: #fff3cf;
  border-left-color: var(--gold);
}

.menu-item:focus-visible,
.menu-nav__list a:focus-visible,
.hero__button:focus-visible,
.hero__control:focus-visible,
.theme-toggle:focus-visible,
.drawer-close:focus-visible,
.pagination button:focus-visible {
  outline: 3px solid rgba(255,216,77,.58);
  outline-offset: 2px;
}

body[data-theme="dark"] .menu-item:hover {
  background: rgba(255,216,77,.1);
}

.menu-item__image {
  width: 72px;
  height: 58px;
  border: 2px solid rgba(255,216,77,.78);
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-soft);
}

.menu-item__copy {
  min-width: 0;
}

.menu-item__name {
  font-weight: 800;
}

.menu-item__desc {
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
}

.menu-item__price {
  color: var(--gold-dark);
  font-weight: 900;
  white-space: nowrap;
  text-align: right;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.price-pill {
  border-radius: 8px;
  background: rgba(255,216,77,.22);
  color: var(--gold-dark);
  padding: 4px 9px;
  font-weight: 900;
  font-size: .84rem;
}

.site-footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,.7);
  padding: 42px 0;
  text-align: center;
}

.site-footer strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.theme-toggle {
  position: fixed;
  right: max(16px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255,216,77,.46);
  border-radius: 999px;
  background: rgba(58,17,19,.92);
  color: #fff7e4;
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
}

body[data-theme="dark"] .theme-toggle {
  background: rgba(255,248,231,.92);
  color: var(--maroon-dark);
  border-color: rgba(185,41,50,.32);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle__icon--sun {
  color: #8f1f25;
}

.theme-toggle__icon--moon {
  color: #ffd84d;
}

.empty-state {
  padding: 30px;
  background: var(--panel-strong);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(16,15,14,.48);
  opacity: 0;
  transition: opacity .2s ease;
}

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

.item-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 31;
  width: min(390px, 100%);
  max-width: calc(100vw - 32px);
  overflow-y: auto;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,216,77,.08), transparent 220px),
    var(--panel-strong);
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-radius: 14px 0 0 14px;
  box-shadow: -20px 0 54px rgba(0,0,0,.18);
  transform: translateX(105%);
  transition: transform .24s ease;
}

.item-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-hero {
  margin-top: 12px;
}

.drawer-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.drawer-kicker {
  display: inline-block;
  margin: 18px 0 8px;
  color: var(--maroon);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.drawer-content h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
}

.drawer-description {
  margin: 12px 0 0;
  color: var(--muted);
}

.drawer-price {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.drawer-price__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.drawer-price__row span:first-child {
  color: var(--muted);
  text-transform: capitalize;
}

.drawer-price__row span:last-child {
  color: var(--gold-dark);
  white-space: nowrap;
}

.drawer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.drawer-meta div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.drawer-meta span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.drawer-meta strong {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(16,15,14,.54);
  opacity: 0;
  transition: opacity .2s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
}

.pdf-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 35;
  width: min(420px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255,216,77,.16), transparent 45%),
    var(--panel-strong);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  transform: translate(-50%, -46%) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.pdf-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--maroon);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pdf-modal h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.pdf-modal p {
  margin: 10px 46px 18px 0;
  color: var(--muted);
}

.pdf-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdf-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff8e7;
  color: var(--maroon-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pdf-choice--dark {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  color: #fff7e4;
}

.pdf-choice:disabled {
  cursor: progress;
  opacity: .72;
}

@media (max-width: 720px) {
  .app-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    max-height: none;
    margin-top: 0;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
  }

  .menu-sidebar__head {
    display: none;
  }

  .menu-nav__list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu-nav__list::-webkit-scrollbar {
    display: none;
  }

  .menu-nav__list a {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 154px;
    padding-inline: 12px;
  }

  .hero__content {
    padding: 0;
  }

  .hero__bottom {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px;
  }

  .hero__bottom .hero__button {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero__slider-controls {
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 7px;
  }

  .hero__dots {
    flex: 1;
    justify-content: center;
    gap: 5px;
  }

  .hero__dots button {
    width: clamp(12px, 5.2vw, 24px);
  }

  .hero__control {
    min-height: 38px;
    width: 38px;
    min-width: 38px;
  }

  .pagination {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .pagination__controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
  }

  .pagination__pages {
    overflow-x: auto;
    padding-block: 2px;
    scrollbar-width: none;
  }

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

  .pagination button {
    min-height: 40px;
  }

  .pagination__step {
    width: 40px;
    min-width: 40px;
    padding-inline: 0;
  }

  .pagination__step span:not(.pagination__icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .theme-toggle {
    right: 14px;
    bottom: 14px;
    width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
  }

  .theme-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .section-header,
  .section-menu {
    border-radius: 8px;
  }

  .subsection {
    padding: 18px 16px;
  }

  .menu-item {
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .menu-item__price,
  .price-grid {
    grid-column: 2;
    text-align: left;
    justify-content: start;
  }

  .menu-item__image {
    width: 58px;
    height: 52px;
  }

  .item-drawer {
    width: min(360px, calc(100vw - 34px));
    max-width: calc(100vw - 34px);
    padding: 16px;
  }

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

  .pdf-modal__actions {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 10pt;
  }

  .hero,
  .menu-sidebar,
  .toolbar,
  .menu-actions,
  .drawer-backdrop,
  .item-drawer,
  .modal-backdrop,
  .pdf-modal,
  .theme-toggle,
  .pagination {
    display: none !important;
  }

  .container {
    width: 100%;
  }

  .menu-layout {
    padding: 0;
  }

  .menu-layout::before {
    content: "Daylight Menu";
    display: block;
    margin: 0 0 10mm;
    color: var(--maroon);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30pt;
    font-weight: 800;
    line-height: 1;
  }

  .menu-section {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 7mm;
  }

  .section-header,
  .subsection {
    box-shadow: none;
    border-radius: 0;
  }

  .section-menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .section-header {
    padding: 5mm;
    margin-bottom: 3mm;
  }

  .section-header h2 {
    font-size: 22pt;
  }

  .subsection {
    padding: 4mm;
    margin-bottom: 4mm;
  }

  .menu-item {
    padding: 2.2mm 0;
  }

  .site-footer {
    background: #fff;
    color: #111;
    padding: 6mm 0 0;
    border-top: 1px solid #ddd;
  }
}
