:root {
  color-scheme: light;
  --bg: #f2eadc;
  --surface: #fff9ee;
  --card: #fffdf8;
  --ink: #1d1712;
  --muted: #71665a;
  --line: rgba(35, 26, 18, 0.13);
  --line-strong: rgba(35, 26, 18, 0.22);
  --red: #b43225;
  --red-dark: #842219;
  --green: #244833;
  --gold: #d09a42;
  --cream: #f4dfba;
  --black: #14100c;
  --shadow: 0 22px 60px rgba(40, 27, 16, 0.14);
  --soft-shadow: 0 12px 28px rgba(40, 27, 16, 0.09);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Young Serif", Georgia, serif;
  --font-text: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-text);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #100e0b;
    --surface: #1b1712;
    --card: #251f18;
    --ink: #fff5e8;
    --muted: #c6b7a3;
    --line: rgba(255, 245, 232, 0.12);
    --line-strong: rgba(255, 245, 232, 0.2);
    --red: #e85d46;
    --red-dark: #ff806a;
    --green: #9bc69b;
    --gold: #e4b15c;
    --cream: #3a2d1c;
    --black: #0c0a08;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
    --soft-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(180, 50, 37, 0.1), transparent 360px),
    var(--bg);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(132, 34, 25, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(132, 34, 25, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 24%, transparent 86%);
  z-index: -1;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  animation: pageSettle 360ms ease 1040ms both;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 184, 86, 0.36), transparent 16rem),
    radial-gradient(circle at 50% 50%, rgba(121, 24, 16, 0.92), transparent 26rem),
    #100b08;
  overflow: hidden;
  perspective: 900px;
  animation: introCurtainOut 260ms ease 1080ms forwards;
}

.intro.intro--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__depth {
  position: absolute;
  width: min(460px, 92vw);
  aspect-ratio: 1.08;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(255, 205, 118, 0.9) 0 4%, rgba(225, 107, 39, 0.76) 14%, rgba(90, 18, 12, 0.72) 34%, rgba(5, 3, 2, 0.98) 61%),
    linear-gradient(180deg, #64170f 0%, #130907 74%);
  box-shadow:
    inset 0 0 0 16px rgba(95, 18, 12, 0.9),
    inset 0 0 0 32px rgba(180, 50, 37, 0.34),
    inset 0 -38px 80px rgba(0, 0, 0, 0.54),
    0 44px 120px rgba(0, 0, 0, 0.64);
  transform-origin: center;
  animation: ovenZoom 1300ms cubic-bezier(.16, .84, .2, 1) both;
}

.intro__depth::before,
.intro__depth::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 211, 139, 0.2);
  border-radius: inherit;
  content: "";
}

.intro__depth::after {
  inset: 28%;
  opacity: 0.58;
}

.intro__heat {
  position: absolute;
  width: min(560px, 120vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 232, 156, 0.7) 0 4%, rgba(244, 137, 47, 0.42) 20%, transparent 54%),
    radial-gradient(circle at 43% 46%, rgba(255, 116, 45, 0.28), transparent 34%);
  filter: blur(16px);
  mix-blend-mode: screen;
  animation: heatBloom 1300ms ease both;
}

.intro__logo-mark {
  position: absolute;
  width: min(160px, 38vw);
  height: auto;
  border-radius: 50%;
  opacity: 0;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.34));
  animation: brandFlash 1300ms ease both;
}

.intro__wipe {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 244, 203, 0.9) 0 6%, rgba(239, 130, 50, 0.35) 18%, transparent 46%);
  opacity: 0;
  transform: scale(0.35);
  animation: heatBloom 1300ms ease both;
}

@keyframes introCurtainOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageSettle {
  from {
    transform: scale(1.012);
    filter: blur(3px);
  }
  to {
    transform: none;
    filter: blur(0);
  }
}

@keyframes ovenZoom {
  0% {
    opacity: 0;
    transform: translateZ(-240px) scale(0.58);
    filter: blur(8px);
  }
  14% {
    opacity: 1;
    filter: blur(3px);
  }
  54% {
    transform: translateZ(90px) scale(1.12);
    filter: blur(0);
  }
  100% {
    opacity: 0.18;
    transform: translateZ(420px) scale(2.45);
    filter: blur(18px);
  }
}

@keyframes heatBloom {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  42% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes brandFlash {
  0%,
  24% {
    opacity: 0;
    transform: scale(0.9);
  }
  38%,
  68% {
    opacity: 0.36;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.restaurant-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.restaurant-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  animation: heroImageSettle 920ms cubic-bezier(.16, .84, .2, 1) 720ms both;
}

.restaurant-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 7, 0.44) 0%, rgba(14, 10, 7, 0.62) 54%, var(--bg) 100%),
    linear-gradient(90deg, rgba(14, 10, 7, 0.82), rgba(14, 10, 7, 0.18));
  z-index: -1;
}

.hero-brand,
.menu-app {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hero-brand {
  position: relative;
  display: grid;
  max-width: 760px;
  justify-items: center;
  margin-top: 0;
  padding-top: 58px;
  color: #fff8ee;
  text-align: center;
}

.hero-brand__logo {
  width: min(620px, 86vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 54px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 26px rgba(255, 183, 80, 0.12));
  animation: heroMarkIn 480ms cubic-bezier(.16, .84, .2, 1) 1020ms both;
}

.open-badge {
  justify-self: center;
  margin-top: 14px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(36, 72, 51, 0.9);
  color: #efffe9;
  font-size: 0.82rem;
  font-weight: 900;
  animation: heroCopyIn 360ms cubic-bezier(.2, .8, .2, 1) 1110ms both;
}

.hero-brand p {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: 1rem;
  line-height: 1.65;
  animation: heroCopyIn 360ms cubic-bezier(.2, .8, .2, 1) 1170ms both;
}

.menu-app {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  margin-top: -54px;
  padding-bottom: 48px;
}

.menu-toolbar {
  position: sticky;
  top: max(6px, env(safe-area-inset-top));
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.35fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 95%, transparent), color-mix(in srgb, var(--card) 90%, transparent));
  box-shadow: 0 12px 34px rgba(40, 27, 16, 0.11);
  backdrop-filter: blur(18px) saturate(1.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: toolbarEnter 420ms cubic-bezier(.16, .84, .2, 1) 1120ms both;
}

.menu-toolbar.is-stuck {
  border-color: color-mix(in srgb, var(--red-dark) 24%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, transparent), color-mix(in srgb, var(--card) 94%, transparent));
  box-shadow: 0 16px 42px rgba(40, 27, 16, 0.17);
}

.search-control {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 7px 0 12px;
  background: color-mix(in srgb, var(--card) 94%, var(--surface));
  color: var(--muted);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 42%, transparent);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-control:focus-within {
  border-color: color-mix(in srgb, var(--red) 62%, var(--line));
  background: var(--card);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--red) 11%, transparent),
    inset 3px 0 0 var(--red);
}

.search-control__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--red-dark);
  transition: color 160ms ease, transform 160ms ease;
}

.search-control.has-query .search-control__icon {
  color: var(--red);
  transform: scale(0.9);
}

.search-control__icon svg,
.search-clear svg,
.featured-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.search-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0;
}

.search-control input::placeholder {
  color: color-mix(in srgb, var(--muted) 82%, transparent);
}

.search-control input::-webkit-search-cancel-button {
  display: none;
}

.search-clear {
  display: grid;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  place-items: center;
  background: color-mix(in srgb, var(--red) 9%, transparent);
  color: var(--red-dark);
}

.search-clear[hidden] {
  display: none;
}

.search-clear:hover,
.search-clear:focus-visible {
  background: color-mix(in srgb, var(--red) 16%, transparent);
}

.search-clear:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--red) 34%, transparent);
  outline-offset: 1px;
}

.featured-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 13px;
  background: color-mix(in srgb, var(--card) 94%, var(--surface));
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 42%, transparent);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.featured-toggle span {
  display: grid;
  place-items: center;
  color: var(--gold);
}

.featured-toggle.active {
  border-color: var(--red);
  background: var(--red-dark);
  color: #fff8ee;
  box-shadow: 0 7px 18px rgba(132, 34, 25, 0.2);
  animation: controlPop 220ms cubic-bezier(.2, .9, .25, 1);
}

.featured-toggle.active span {
  color: #ffd38b;
}

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

.featured-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 62%, transparent);
  outline-offset: 2px;
}

.category-tabs {
  display: flex;
  gap: 3px;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px;
  overflow-x: auto;
  background: color-mix(in srgb, var(--bg) 48%, transparent);
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  border: 0;
  border-radius: 5px;
  padding: 0 9px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.category-tabs button small {
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  color: currentColor;
  font-size: 0.61rem;
}

.category-tabs button.active {
  background: var(--card);
  color: var(--red-dark);
  box-shadow:
    0 2px 8px rgba(40, 27, 16, 0.09),
    inset 0 -2px 0 var(--red);
  animation: tabSelect 180ms ease-out;
}

.category-tabs button.active small {
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--red-dark);
}

.category-tabs button:hover:not(.active) {
  background: color-mix(in srgb, var(--card) 64%, transparent);
  color: var(--ink);
}

.category-tabs button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 58%, transparent);
  outline-offset: -2px;
}

.featured-area,
.menu-board {
  display: grid;
  gap: 12px;
}

.featured-area[hidden] {
  display: none;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0;
}

.section-heading strong {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: right;
}

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

.signature-card,
.menu-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff8ee;
  text-align: left;
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 340ms cubic-bezier(.2, .8, .2, 1) var(--motion-delay, 0ms),
    translate 340ms cubic-bezier(.2, .8, .2, 1) var(--motion-delay, 0ms);
}

.signature-card {
  min-height: 240px;
  padding: 18px;
}

.signature-card:hover,
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.signature-card::before,
.menu-card::before {
  position: absolute;
  inset: 0;
  background-image: var(--product-image, url("assets/pideci-zafer-hero.png"));
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.05);
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
  z-index: -2;
}

.signature-card:hover::before,
.menu-card:hover::before {
  transform: scale(1.085);
}

.signature-card::after,
.menu-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.05) 0%, rgba(10, 8, 6, 0.34) 44%, rgba(10, 8, 6, 0.9) 100%),
    linear-gradient(135deg, rgba(180, 50, 37, 0.14), rgba(36, 72, 51, 0.18));
  content: "";
  z-index: -1;
}

.signature-card__content,
.menu-card__body {
  display: grid;
  align-content: end;
  gap: 7px;
  min-height: 100%;
}

.signature-card h3,
.menu-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.signature-card h3 {
  font-size: 1.45rem;
}

.menu-card h3 {
  font-size: 1.28rem;
}

.signature-card p,
.menu-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 248, 238, 0.76);
  font-size: 0.9rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.signature-card__bottom,
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.signature-card__bottom strong,
.price {
  color: #ffd38b;
  font-size: 1.24rem;
  font-weight: 950;
}

.signature-card__bottom span,
.prep {
  color: rgba(255, 248, 238, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.tag-row,
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  border-radius: 999px;
  padding: 0 8px;
  background: rgba(255, 248, 238, 0.16);
  color: #fff8ee;
  font-size: 0.68rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.menu-list {
  display: grid;
  gap: 22px;
}

.category-section {
  display: grid;
  gap: 11px;
}

.drink-groups {
  display: grid;
  gap: 22px;
}

.drink-group {
  display: grid;
  gap: 10px;
}

.drink-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline: 2px;
}

.drink-group__heading h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.drink-group__heading h3::before {
  width: 18px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.drink-group__heading span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 8px;
}

.category-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 400;
}

.category-heading span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

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

.menu-card {
  min-height: 230px;
  padding: 16px;
}

.menu-card--grouped {
  min-height: 255px;
  cursor: default;
}

.menu-card--grouped .menu-card__body {
  gap: 8px;
}

.portion-options {
  display: grid;
  grid-template-columns: repeat(var(--portion-count), minmax(0, 1fr));
  margin-top: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 8px;
  background: rgba(20, 14, 10, 0.46);
  backdrop-filter: blur(12px);
}

.portion-option {
  display: grid;
  gap: 2px;
  min-width: 0;
  min-height: 55px;
  border: 0;
  border-left: 1px solid rgba(255, 248, 238, 0.16);
  padding: 7px 5px;
  place-content: center;
  background: transparent;
  color: #fff8ee;
  text-align: center;
  transition: background 150ms ease, color 150ms ease;
}

.portion-option:first-child {
  border-left: 0;
}

.portion-option span {
  color: rgba(255, 248, 238, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
}

.portion-option strong {
  color: #ffd38b;
  font-size: 0.96rem;
  font-weight: 950;
  white-space: nowrap;
}

.portion-option:hover,
.portion-option:focus-visible {
  background: rgba(255, 248, 238, 0.12);
}

.portion-option:focus-visible {
  outline: 2px solid #ffd38b;
  outline-offset: -2px;
}

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

.item-modal,
.hours-modal {
  width: min(500px, calc(100% - 30px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.item-modal[open],
.hours-modal[open] {
  animation: dialogIn 240ms cubic-bezier(.16, .84, .2, 1) both;
}

.item-modal::backdrop,
.hours-modal::backdrop {
  background: rgba(12, 9, 7, 0.58);
  backdrop-filter: blur(6px);
  animation: backdropIn 200ms ease-out both;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(20, 14, 10, 0.54);
  color: #fff8ee;
  font-size: 1.45rem;
}

.modal-cover {
  height: 190px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48)),
    var(--product-image, url("assets/pideci-zafer-hero.png"));
  background-position: center;
  background-size: cover;
}

.modal-body {
  padding: 18px;
}

.modal-category {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
}

.modal-body p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.modal-tags {
  margin-top: 12px;
}

.modal-tags .tag {
  background: color-mix(in srgb, var(--cream) 72%, transparent);
  color: var(--red-dark);
}

.modal-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.modal-bottom strong {
  color: var(--red-dark);
  font-size: 1.42rem;
}

.modal-bottom span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hours-modal {
  width: min(440px, calc(100% - 30px));
  border-color: rgba(255, 248, 238, 0.13);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 179, 80, 0.16), transparent 15rem),
    linear-gradient(145deg, #1a0f0b, #35170f);
  color: #fff8ee;
}

.hours-modal__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.hours-modal__body > span {
  color: rgba(255, 211, 139, 0.84);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hours-modal__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 400;
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 248, 238, 0.11);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 248, 238, 0.06);
}

.hours-list span {
  color: rgba(255, 248, 238, 0.72);
  font-weight: 800;
}

.hours-list strong {
  color: #fff8ee;
  font-weight: 950;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.55fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--red-dark) 24%, var(--line));
  border-radius: 10px;
  padding: clamp(30px, 4vw, 46px) clamp(20px, 2.4vw, 30px) 18px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--red-dark) 7%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 82%, transparent), color-mix(in srgb, var(--bg) 96%, transparent));
  color: var(--ink);
  isolation: isolate;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
}

.footer-brand > img:first-child {
  width: min(340px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(40, 20, 12, 0.16));
}

.footer-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
}

.footer-action {
  display: grid;
  grid-template-rows: 34px auto auto auto;
  gap: 5px;
  min-width: 0;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 17px 16px;
  align-content: center;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.footer-action:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-action:last-child {
  padding-right: 0;
}

.footer-action:hover,
.footer-action:focus-visible {
  background: color-mix(in srgb, var(--red-dark) 7%, transparent);
}

.footer-action:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 58%, transparent);
  outline-offset: -2px;
}

.footer-action__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--red-dark);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-action__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-action > span:not(.footer-action__icon) {
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-action strong {
  overflow: hidden;
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-action em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-action:hover em {
  color: var(--red-dark);
  transform: translateX(3px);
}

.footer-action:hover .footer-action__icon {
  color: var(--red);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.motion-reveal {
  opacity: 0;
  translate: 0 14px;
}

.motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.section-heading.motion-reveal,
.category-heading.motion-reveal,
.empty-state.motion-reveal,
.site-footer.motion-reveal {
  transition:
    opacity 340ms cubic-bezier(.2, .8, .2, 1) var(--motion-delay, 0ms),
    translate 340ms cubic-bezier(.2, .8, .2, 1) var(--motion-delay, 0ms);
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.045) translateY(-5px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

@keyframes heroMarkIn {
  from {
    opacity: 0;
    transform: scale(0.975);
    translate: 0 14px;
  }
  to {
    opacity: 1;
    transform: scale(1);
    translate: 0 0;
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    translate: 0 9px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes toolbarEnter {
  from {
    opacity: 0;
    translate: 0 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes controlPop {
  0% {
    transform: scale(0.96);
  }
  70% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes tabSelect {
  from {
    opacity: 0.72;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes backdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1020px) {
  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "search featured"
      "categories categories";
  }

  .search-control {
    grid-area: search;
  }

  .category-tabs {
    grid-area: categories;
  }

  .featured-toggle {
    grid-area: featured;
  }
}

@media (max-width: 860px) {
  .restaurant-hero {
    min-height: 500px;
  }

  .hero-brand {
    margin-top: 0;
    padding-top: 66px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .signature-card {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .restaurant-hero {
    min-height: 470px;
  }

  .restaurant-hero__shade {
    background:
      linear-gradient(180deg, rgba(14, 10, 7, 0.5) 0%, rgba(14, 10, 7, 0.72) 58%, var(--bg) 100%);
  }

  .hero-brand,
  .menu-app {
    width: min(100% - 22px, 1120px);
  }

  .hero-brand {
    margin-top: 0;
    padding-top: 54px;
  }

  .hero-brand__logo {
    width: min(430px, 92vw);
  }

  .hero-brand p {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .menu-app {
    gap: 18px;
    margin-top: -44px;
  }

  .menu-toolbar {
    top: max(4px, env(safe-area-inset-top));
    gap: 4px;
    padding: 5px;
  }

  .search-control {
    height: 40px;
    padding: 0 6px 0 10px;
  }

  .search-control input {
    font-size: 0.84rem;
  }

  .featured-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 0.8rem;
  }

  .featured-toggle strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .category-tabs {
    height: 34px;
    padding: 3px;
  }

  .category-tabs button {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 0.77rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .section-heading strong {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

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

  .menu-card {
    min-height: 205px;
    padding: 14px;
  }

  .menu-card--grouped {
    min-height: 250px;
  }

  .drink-groups {
    gap: 18px;
  }

  .drink-group__heading h3 {
    font-size: 0.92rem;
  }

  .menu-card h3 {
    font-size: 1.2rem;
  }

  .signature-card h3 {
    font-size: 1.32rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 18px 18px;
  }

  .footer-brand {
    justify-items: center;
    gap: 14px;
  }

  .footer-brand > img:first-child {
    display: block;
    width: min(250px, 86vw);
  }

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

  .footer-action {
    grid-template-rows: 30px auto auto auto;
    min-height: 132px;
    padding: 14px 12px;
  }

  .footer-action:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-action:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-right: 0;
  }

  .footer-action:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .footer-action strong {
    font-size: 0.98rem;
  }

  .footer-action em {
    justify-self: start;
  }

  .footer-legal {
    align-items: start;
    flex-direction: column;
    gap: 5px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .search-control {
    grid-template-columns: 20px minmax(0, 1fr) 28px;
    gap: 6px;
  }

  .category-tabs button {
    font-size: 0.76rem;
  }

  .site-footer {
    padding: 24px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }

  .app-shell {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
