:root {
  --paper: #f7f0e4;
  --paper-deep: #ede1cf;
  --card: rgba(255, 252, 246, 0.86);
  --ink: #1f2a42;
  --muted: #66675f;
  --line: rgba(31, 42, 66, 0.16);
  --accent: #b77924;
  --accent-deep: #875314;
  --gold: #d39a3f;
  --green: #477c45;
  --red: #a83f37;
  --header-height: 72px;
  --content-width: 1180px;
  --shadow-soft: 0 18px 60px rgba(46, 39, 27, 0.12);
  --shadow-card: 0 12px 35px rgba(46, 39, 27, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(247, 240, 228, 0.82), rgba(247, 240, 228, 0.9)),
    url("assets/images/brand/background.png") center / cover;
  content: "";
}

@supports (background-image: url("assets/images/brand/background.webp")) {
  body::before {
    background-image:
      linear-gradient(rgba(247, 240, 228, 0.82), rgba(247, 240, 228, 0.9)),
      url("assets/images/brand/background.webp");
  }
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #f3b844;
  outline-offset: 3px;
}

.language-picker {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 18px;
}

.language-picker[hidden] {
  display: none;
}

.language-picker__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 30, 51, 0.92), rgba(25, 77, 115, 0.76)),
    url("assets/images/brand/building.png") center 58% / cover;
}

@supports (background-image: url("assets/images/brand/building-768.webp")) {
  .language-picker__backdrop {
    background-image:
      linear-gradient(135deg, rgba(18, 30, 51, 0.92), rgba(25, 77, 115, 0.76)),
      url("assets/images/brand/building-768.webp");
  }
}

.language-picker__card {
  position: relative;
  width: min(100%, 520px);
  padding: 30px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 252, 246, 0.95), rgba(255, 250, 241, 0.95)),
    url("assets/images/brand/background.png") center / cover;
  box-shadow: 0 28px 90px rgba(4, 15, 28, 0.38);
  text-align: center;
  animation: picker-in 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.language-picker__card::before,
.language-picker__card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(46, 112, 158, 0.1);
  content: "";
}

.language-picker__card::before {
  top: -90px;
  left: -80px;
}

.language-picker__card::after {
  right: -80px;
  bottom: -100px;
  background: rgba(200, 138, 49, 0.13);
}

.language-picker__mark {
  display: block;
  width: 210px;
  height: 88px;
  margin: 0 auto 16px;
}

.language-picker__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.language-picker__kicker {
  margin: 0 0 4px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language-picker h1 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.language-picker #languageHint {
  margin: 5px 0 24px;
  color: var(--muted);
}

.language-picker__choices {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.language-choice {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-choice:hover {
  border-color: rgba(46, 112, 158, 0.48);
  box-shadow: 0 10px 30px rgba(31, 42, 66, 0.1);
  transform: translateY(-2px);
}

.language-choice__code {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-choice:last-child .language-choice__code {
  background: var(--accent);
}

.language-choice strong,
.language-choice small {
  display: block;
}

.language-choice strong {
  font-size: 1rem;
}

.language-choice small {
  color: var(--muted);
  font-size: 0.78rem;
}

.language-pending {
  overflow: hidden;
}

.site-shell {
  min-height: 100vh;
}

.language-pending .site-shell {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(248, 243, 233, 0.88);
  box-shadow: 0 8px 30px rgba(31, 42, 66, 0.07);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(100% - 24px, var(--content-width));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 44px;
  text-decoration: none;
}

.brand picture,
.brand img {
  width: 82px;
  height: 44px;
}

.brand img {
  object-fit: contain;
}

.menu-switcher {
  display: flex;
  justify-self: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.menu-switcher button {
  min-height: 44px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  white-space: nowrap;
}

.menu-switcher button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 5px 15px rgba(31, 42, 66, 0.18);
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.language-switcher button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(78svh, 720px);
  overflow: hidden;
  background: #719bc0;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 54%;
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(to top, rgba(13, 26, 44, 0.82) 0%, rgba(13, 26, 44, 0.15) 58%, rgba(13, 26, 44, 0.04) 100%),
    linear-gradient(to right, rgba(13, 26, 44, 0.42), transparent 74%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 90px 0 42px;
  color: #fff;
  text-shadow: 0 3px 20px rgba(5, 14, 28, 0.32);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.75rem, 12vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero__content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 18px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero__button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.hero__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.view-kids .hero {
  background: #dbe5bc;
}

.view-kids .hero__media img {
  object-position: 50% 34%;
}

.view-kids .hero__shade {
  background:
    linear-gradient(to top, rgba(42, 60, 42, 0.84), rgba(42, 60, 42, 0.06) 75%),
    linear-gradient(to right, rgba(42, 60, 42, 0.38), transparent 70%);
}

.welcome {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  width: min(100% - 36px, 850px);
  margin: 0 auto;
  padding: 60px 0 52px;
}

.welcome__icon {
  display: grid;
  place-items: start center;
  padding-top: 6px;
}

.welcome__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.welcome__copy {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(0.98rem, 3.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.55;
}

.welcome__copy p {
  margin: 0 0 12px;
}

.welcome__copy p:last-child {
  margin-bottom: 0;
  color: var(--accent-deep);
}

.view-kids .welcome {
  display: none;
}

.menu-area {
  min-height: 70vh;
  padding-bottom: 78px;
}

.menu-tools {
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  padding: 10px 0 0;
  border-bottom: 1px solid rgba(31, 42, 66, 0.08);
  background: rgba(247, 240, 228, 0.93);
  box-shadow: 0 8px 24px rgba(31, 42, 66, 0.05);
  backdrop-filter: blur(16px);
}

.search {
  position: relative;
  width: min(100% - 32px, 560px);
  margin: 0 auto 10px;
}

.search > svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.search input {
  width: 100%;
  height: 46px;
  padding: 0 46px;
  border: 1px solid rgba(31, 42, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 7px 24px rgba(31, 42, 66, 0.06);
  outline: none;
}

.search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 112, 158, 0.12);
}

.search__clear {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 42, 66, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
}

.search__clear svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.category-strip {
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 0 16px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.category-strip a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.category-strip a[aria-current="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.menu-layout {
  display: grid;
  width: min(100% - 32px, var(--content-width));
  margin: 32px auto 0;
}

.category-sidebar {
  display: none;
}

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

.menu-category {
  scroll-margin-top: calc(var(--header-height) + 120px);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 66, 0.11);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.category-heading {
  position: relative;
  min-height: 112px;
  padding: 24px 22px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.category-heading__copy {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.category-heading h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 9vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.category-heading__icon {
  width: 43px;
  height: 43px;
  opacity: 0.72;
}

.category-heading__media {
  display: block;
  height: 180px;
  margin: 18px -22px -20px;
  overflow: hidden;
  background: var(--paper-deep);
}

.category-heading__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
}

#burgers .category-heading__media img {
  object-position: center 61%;
}

.menu-items {
  display: grid;
  gap: 0;
  padding: 0 20px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
}

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

.menu-item h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.2;
}

.menu-item__price {
  align-self: start;
  color: var(--accent-deep);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.25;
  white-space: nowrap;
}

.menu-item__price span {
  margin-left: 2px;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.55;
}

.menu-category--compact .category-heading {
  min-height: 96px;
}

.menu-category--compact .menu-items {
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu-category--compact .menu-item {
  padding-top: 13px;
  padding-bottom: 13px;
}

.menu-category--compact .menu-item h3,
.menu-category--compact .menu-item__price {
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 0.93rem;
}

.menu-category--compact .menu-item h3 {
  line-height: 1.35;
}

.empty-state {
  width: min(100% - 32px, 640px);
  margin: 50px auto;
  padding: 38px 24px;
  border: 1px dashed rgba(31, 42, 66, 0.28);
  border-radius: 24px;
  text-align: center;
}

.empty-state img {
  width: 54px;
  margin: 0 auto 12px;
  opacity: 0.55;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.kids-menu {
  position: relative;
  width: min(100% - 32px, 1040px);
  margin: 36px auto 0;
  padding: 24px 0 46px;
}

.kids-menu::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px dashed rgba(71, 124, 69, 0.28);
  border-radius: 42% 58% 48% 52% / 35% 40% 60% 65%;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 191, 64, 0.2), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(83, 151, 198, 0.2), transparent 25%),
    radial-gradient(circle at 50% 78%, rgba(71, 124, 69, 0.18), transparent 32%);
  content: "";
}

.kids-menu__trail {
  position: absolute;
  top: 18%;
  left: 16%;
  width: 67%;
  height: 64%;
  border: 3px dashed rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.kids-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.kids-card {
  --kids-accent: var(--green);
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 150px;
  padding: 14px 16px 14px 10px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--kids-accent), white 55%);
  border-radius: 28px 18px 30px 20px;
  background: rgba(255, 252, 244, 0.94);
  box-shadow: 0 14px 30px rgba(59, 58, 39, 0.12);
}

.kids-card:nth-child(even) {
  border-radius: 18px 30px 20px 28px;
}

.kids-card[data-accent="blue"] { --kids-accent: #4f93bd; }
.kids-card[data-accent="yellow"] { --kids-accent: #e2a62f; }
.kids-card[data-accent="green"] { --kids-accent: #5b8e50; }
.kids-card[data-accent="orange"] { --kids-accent: #cf7843; }
.kids-card[data-accent="red"] { --kids-accent: #ad4c43; }

.kids-card__image {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--kids-accent), white 80%);
}

.kids-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-card__copy {
  min-width: 0;
}

.kids-card h2 {
  margin: 0 0 8px;
  color: #34472f;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 6vw, 1.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.kids-card__price {
  display: inline-flex;
  align-items: baseline;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--kids-accent);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
}

.kids-card__price span {
  margin-left: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.information {
  display: grid;
  gap: 12px;
  width: min(100% - 32px, 900px);
  margin: 0 auto 76px;
}

.information details {
  overflow: hidden;
  border: 1px solid rgba(31, 42, 66, 0.14);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 8px 26px rgba(31, 42, 66, 0.06);
}

.information summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  list-style: none;
}

.information summary::-webkit-details-marker {
  display: none;
}

.information summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.information details[open] summary svg {
  transform: rotate(180deg);
}

.information__body {
  padding: 0 18px 22px;
  border-top: 1px solid var(--line);
}

.allergen-list {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.allergen-list li {
  padding-left: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.allergen-list strong {
  color: var(--ink);
}

.information__note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
}

.information__legal p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.information__legal p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 54px 20px 40px;
  overflow: hidden;
  color: var(--ink);
}

.site-footer__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(235, 211, 171, 0.16), rgba(181, 128, 63, 0.3)),
    url("assets/images/brand/backcover.png") center 62% / cover;
}

@supports (background-image: url("assets/images/brand/backcover.webp")) {
  .site-footer__texture {
    background-image:
      linear-gradient(rgba(235, 211, 171, 0.16), rgba(181, 128, 63, 0.3)),
      url("assets/images/brand/backcover.webp");
  }
}

.site-footer picture,
.site-footer img {
  width: 230px;
  height: 104px;
}

.site-footer img {
  object-fit: contain;
}

.site-footer a {
  margin-top: 4px;
  padding: 9px 14px;
  border: 1px solid rgba(31, 42, 66, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.noscript-message {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

@keyframes picker-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

@media (min-width: 600px) {
  :root {
    --header-height: 78px;
  }

  .site-header__inner {
    width: min(100% - 40px, var(--content-width));
  }

  .brand picture,
  .brand img {
    width: 112px;
    height: 46px;
  }

  .menu-switcher button {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.8rem;
  }

  .hero__content {
    width: min(100% - 64px, var(--content-width));
    padding-bottom: 62px;
  }

  .welcome {
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .welcome__icon img {
    width: 68px;
    height: 68px;
  }

  .category-strip {
    justify-content: flex-start;
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
  }

  .category-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    height: 250px;
    min-height: 0;
    padding: 0;
  }

  .category-heading__copy {
    align-self: center;
    padding: 28px 30px;
  }

  .category-heading__media {
    height: 100%;
    margin: 0;
    border-left: 1px solid var(--line);
  }

  .category-heading:not(:has(.category-heading__media)) {
    display: block;
    height: auto;
    min-height: 115px;
  }

  .menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    padding: 6px 28px 10px;
  }

  .menu-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }

  .menu-item {
    padding: 21px 0;
  }

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

  .kids-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 34px;
  }

  .kids-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 490px);
    justify-self: center;
  }

  .allergen-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }
}

@media (min-width: 1000px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: min(82vh, 790px);
  }

  .hero__media img {
    object-position: center 58%;
  }

  .hero__shade {
    background:
      linear-gradient(to top, rgba(13, 26, 44, 0.72), transparent 62%),
      linear-gradient(to right, rgba(13, 26, 44, 0.62), rgba(13, 26, 44, 0.04) 66%);
  }

  .hero__content {
    padding-bottom: 78px;
  }

  .menu-tools {
    padding-bottom: 10px;
  }

  .category-strip {
    display: none;
  }

  .menu-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 36px;
    margin-top: 44px;
  }

  .category-sidebar {
    display: block;
  }

  .category-sidebar__label {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .category-sidebar nav {
    position: sticky;
    top: calc(var(--header-height) + 90px);
    display: grid;
    gap: 3px;
    max-height: calc(100vh - var(--header-height) - 120px);
    overflow-y: auto;
    padding: 6px 10px 6px 0;
  }

  .category-sidebar a {
    padding: 8px 11px;
    border-left: 2px solid transparent;
    border-radius: 0 10px 10px 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 680;
    text-decoration: none;
  }

  .category-sidebar a:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--ink);
  }

  .category-sidebar a[aria-current="true"] {
    border-left-color: var(--accent);
    background: rgba(46, 112, 158, 0.08);
    color: var(--accent-deep);
  }

  .menu-list {
    gap: 46px;
  }

  .menu-category {
    scroll-margin-top: calc(var(--header-height) + 105px);
  }

  .kids-menu {
    margin-top: 54px;
  }

  .kids-grid {
    grid-template-columns: repeat(6, 1fr);
    padding: 56px 48px;
  }

  .kids-card {
    grid-column: span 3;
    grid-template-columns: 148px minmax(0, 1fr);
    min-height: 190px;
    padding: 18px;
  }

  .kids-card__image {
    width: 148px;
    height: 148px;
  }

  .kids-card:nth-child(odd) {
    transform: rotate(-0.6deg);
  }

  .kids-card:nth-child(even) {
    transform: rotate(0.6deg);
  }

  .kids-card:last-child:nth-child(odd) {
    grid-column: 2 / span 4;
    width: auto;
  }

  .information {
    margin-top: 96px;
  }
}

@media (max-width: 390px) {
  .site-header__inner {
    width: calc(100% - 16px);
    gap: 5px;
  }

  .brand picture,
  .brand img {
    width: 64px;
    height: 38px;
  }

  .menu-switcher {
    padding: 3px;
  }

  .menu-switcher button {
    min-height: 44px;
    padding: 6px 7px;
    font-size: 0.64rem;
  }

  .language-switcher button {
    width: 44px;
    height: 44px;
    font-size: 0.64rem;
  }

  .hero__content {
    width: calc(100% - 28px);
  }

  .menu-layout,
  .kids-menu,
  .information {
    width: calc(100% - 20px);
  }

  .kids-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 130px;
  }

  .kids-card__image {
    width: 92px;
    height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media print {
  .site-header,
  .menu-tools,
  .category-sidebar,
  .hero__button,
  .language-picker,
  .site-footer a {
    display: none !important;
  }

  .hero {
    min-height: 320px;
  }

  .menu-layout {
    display: block;
    width: 100%;
  }

  .menu-category {
    break-inside: avoid;
    box-shadow: none;
  }
}
