/* Google Fonts are loaded via <link preconnect>/<link stylesheet> tags in
   each page's <head>, not @import — @import blocks CSS parsing until the
   imported stylesheet resolves, which delays first paint on every page. */

:root {
  font-synthesis: none;
}

:root {
  --bg: #f7f5ef;
  --ink: #303030;
  --muted: #706f6a;
  --line: #dedbd3;
  --terracotta: #ce6d56;
  --terracotta-dark: #b85f4b;
  --olive: #607347;
  --soft: #f0eee8;
  --white: #fffefa;
  --shadow: 0 12px 28px rgba(36, 34, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  width: min(1110px, calc(100% - 42px));
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 236px;
  height: 59px;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.main-nav,
.footer-social,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav {
  color: #6b6a66;
  font-size: 16px;
  font-weight: 600;
}

.language-select select {
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d9d4cb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5b594f;
  font: 800 13px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.mobile-language-select {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #e0dbd2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.main-nav a:not(.icon-link):hover {
  color: var(--terracotta);
}

.nav-rule {
  width: 1px;
  height: 45px;
  background: #c7c4bb;
}

.icon-link {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}

.icon-link svg,
.step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero {
  width: min(980px, calc(100% - 36px));
  margin: 82px auto 0;
  text-align: center;
}

.pill {
  width: fit-content;
  margin: 0 auto 34px;
  padding: 7px 23px;
  border: 1px solid #ddd7cd;
  border-radius: 999px;
  /* Darker than --terracotta specifically for contrast: var(--terracotta)
     on this pill's translucent-white background measures ~3.3:1 against
     --bg, failing WCAG AA (4.5:1) for normal-weight 15px text. This shade
     measures ~4.9:1 in the same spot without touching the shared variable
     used by buttons/headings elsewhere. */
  color: #a8543f;
  background: rgba(255, 255, 255, 0.3);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--terracotta-dark);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #686762;
  margin-bottom: 24px;
  font-size: 17px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 700;
  line-height: 1;
}

h1 span,
.about strong {
  color: var(--terracotta);
}

.hero h1 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 32px;
  font-size: 21px;
  font-weight: 700;
}

.primary-button,
.city-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 31px;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 0 rgba(77, 75, 68, 0.38);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-button:hover,
.city-card:hover .city-button {
  background: var(--terracotta-dark);
}

.home-search-section {
  width: min(720px, calc(100% - 36px));
  margin: 42px auto 0;
  position: relative;
}

.home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border: 2px solid #d0ccc3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(36, 34, 30, 0.07);
}

.home-search input {
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 16px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-search input:focus {
  outline: none;
}

.home-search button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font: 800 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.home-search-results {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #e4ded4;
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: 0 14px 32px rgba(32, 28, 24, 0.12);
}

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

.home-search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}

.home-search-results a:hover {
  background: #f3eee6;
}

.home-search-results span {
  display: grid;
  gap: 2px;
}

.home-search-results strong {
  font-size: 15px;
}

.home-search-results em,
.home-search-results small,
.home-search-results p {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.steps {
  width: min(1110px, calc(100% - 36px));
  margin: 86px auto 0;
}

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

.step-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid #e6e3dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.step-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #efebe4;
  color: var(--terracotta);
  padding: 14px;
}

.step-card h3 {
  margin-bottom: 0;
  color: #7b7972;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.step-card p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 900;
}

.cities {
  width: min(1080px, calc(100% - 36px));
  margin: 82px auto 0;
  text-align: center;
}

.cities h2,
.about h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 4vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.section-lead {
  margin-bottom: 56px;
  color: #72716c;
  font-size: 21px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.city-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  text-align: left;
  scrollbar-width: thin;
}

.city-rail-wrap {
  position: relative;
  padding: 0 54px;
}

.city-rail-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 228, 220, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--terracotta);
  box-shadow: 0 8px 22px rgba(24, 22, 20, 0.18);
  cursor: pointer;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.city-rail-arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 12px 28px rgba(24, 22, 20, 0.22);
}

.city-rail-arrow:focus-visible {
  outline: 3px solid rgba(211, 99, 74, 0.35);
  outline-offset: 3px;
}

.city-rail-arrow:disabled {
  cursor: default;
  opacity: 0.34;
}

.city-rail-arrow-prev {
  left: 0;
}

.city-rail-arrow-next {
  right: 0;
}

.city-rail-wrap-no-scroll .city-rail-arrow {
  display: none;
}

@media (max-width: 699px) {
  .city-rail-arrow {
    display: none;
  }

  .city-rail-wrap {
    padding: 0;
  }
}

.city-rail-card {
  min-height: 242px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  isolation: isolate;
  scroll-snap-align: start;
  box-shadow: 0 4px 18px rgba(24, 22, 20, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.city-rail-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-rail-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 26px rgba(24, 22, 20, 0.2);
}

.city-rail-copy {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.city-rail-copy strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.city-rail-copy span {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.city-rail-copy em {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.city-card {
  min-height: 280px;
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  align-items: baseline;
  gap: 10px 20px;
  overflow: hidden;
  position: relative;
  padding: 36px 42px;
  border-radius: 16px;
  isolation: isolate;
  color: white;
  background-image: var(--photo);
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 18px rgba(24, 22, 20, 0.16);
  text-shadow: 0 2px 13px rgba(0, 0, 0, 0.58);
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.city-card:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 26px rgba(24, 22, 20, 0.2);
}

.city-name {
  font-size: clamp(31px, 4.3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.dish-count {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dish-list {
  flex-basis: 100%;
}

.dish-list {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.city-button {
  flex-basis: auto;
  width: fit-content;
  min-height: 34px;
  padding: 0 18px;
  box-shadow: none;
  font-size: 14px;
  text-transform: none;
}

.dish-rationale {
  width: min(1080px, calc(100% - 36px));
  margin: 88px auto 110px;
  text-align: center;
}

.dish-rationale h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.dish-rationale p {
  margin: 0 0 22px;
  color: #343330;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
}

.dish-rationale span {
  color: var(--terracotta);
  font-weight: 800;
}

.dish-rationale .rationale-survey {
  margin-top: 64px;
  color: #8b8984;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.4;
}

.tips-section {
  width: min(1110px, calc(100% - 36px));
  margin: 78px auto 0;
  text-align: center;
}

.tips-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.tip-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid #e6e3dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(24, 22, 20, 0.14);
}

.tip-marker {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #efebe4;
  position: relative;
}

.tip-marker::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--terracotta);
}

.tip-category {
  color: var(--terracotta-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tip-card strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.tip-card span:not(.tip-marker):not(.tip-category) {
  color: #5c5a54;
  font-size: 14px;
  line-height: 1.45;
}

.tip-card em {
  align-self: end;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.about {
  width: min(760px, calc(100% - 36px));
  margin: 88px auto 100px;
  text-align: center;
}

.about p {
  margin-bottom: 14px;
  font-size: 20px;
}

.about .small-note {
  margin-top: 40px;
  color: #74726c;
  font-size: 15px;
}

.text-hero {
  width: min(920px, calc(100% - 36px));
  margin: 70px auto 0;
  text-align: center;
}

.text-hero h1 {
  margin-bottom: 18px;
}

.text-hero p:not(.pill) {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 22px;
  font-weight: 600;
}

.about-search-wrap {
  width: min(900px, calc(100% - 36px));
  margin: 41px auto 0;
}

.about-search {
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 36px;
  margin: 0;
}

.about-search button {
  width: 70px;
  height: 68px;
}

.about-hero .pill {
  display: none;
}

.content-page {
  width: min(820px, calc(100% - 36px));
  margin: 54px auto 100px;
  padding: 42px;
  border: 1px solid #e7e3da;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.content-page h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.content-page h3 {
  margin: 30px 0 8px;
  color: var(--terracotta-dark);
  font-size: 18px;
  text-transform: uppercase;
}

.content-page p {
  color: #474641;
  font-size: 18px;
}

.content-page a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.about-band {
  margin-top: 120px;
  padding: 110px 0 130px;
  background: #f0ece6;
}

.about-copy {
  width: min(1220px, calc(100% - 72px));
  margin: 0 auto;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1;
}

.about-copy p {
  max-width: 1220px;
  color: #4c4a45;
  font-size: 24px;
  line-height: 1.45;
}

.city-hero {
  width: min(1110px, calc(100% - 36px));
  min-height: 430px;
  display: flex;
  align-items: end;
  margin: 58px auto 0;
  overflow: hidden;
  padding: 52px;
  border-radius: 18px;
  color: white;
  background-image: var(--photo);
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 46px rgba(24, 22, 20, 0.18);
}

.city-hero .pill {
  margin: 0 0 22px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.9);
}

.city-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: white;
  font-size: clamp(44px, 6vw, 76px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.city-hero p:not(.pill) {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

.city-browser {
  width: min(900px, calc(100% - 60px));
  margin: 76px auto 110px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 84px;
  color: #85837d;
  font-size: 22px;
  font-weight: 500;
}

.breadcrumbs strong {
  color: #55534f;
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  gap: 10px;
  align-items: center;
  margin-bottom: 62px;
}

.search-row input {
  width: 100%;
  height: 61px;
  padding: 15px 20px;
  border: 2px solid rgba(2, 1, 1, 0.24);
  border-radius: 30px;
  background: transparent;
  color: #3c3b39;
  font: 400 18px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
}

.search-row input:focus {
  border-color: var(--terracotta);
}

.search-row button {
  width: 80px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font: 600 16px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.city-intro {
  margin-bottom: 56px;
  color: #4a4946;
  font-size: 16px;
  line-height: 1.5;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 82px;
}

.category-tabs a {
  display: grid;
  place-items: center;
  min-height: 43px;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.level-legend {
  display: block;
  margin-bottom: 72px;
  padding: 19px;
  border: 1px solid #e7e3da;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(43, 41, 36, 0.12);
}

.level-legend h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.level-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 3px;
  color: rgb(48, 47, 47);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.level-legend strong {
  font-weight: 700;
  margin-right: 6px;
}

.level-legend .legend-must strong {
  color: var(--olive);
}

.level-legend .legend-adventure strong {
  color: #c3955c;
}

.level-legend .legend-local strong {
  color: var(--terracotta);
}

.dish-guide {
  width: min(1110px, calc(100% - 36px));
  margin: 42px auto 110px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 18px 22px;
  border: 1px solid #e7e3da;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.legend h3 {
  margin: 0 12px 0 0;
  color: var(--terracotta-dark);
  font-size: 15px;
  text-transform: uppercase;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f5d57;
  font-size: 14px;
  font-weight: 700;
}

.legend.level-legend {
  display: block;
  margin-bottom: 72px;
  padding: 22px 24px;
  border: 1px solid #e7e3da;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(43, 41, 36, 0.12);
}

.legend.level-legend h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.legend.level-legend span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  color: rgb(48, 47, 47);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.legend.level-legend span:last-child {
  margin-bottom: 0;
}

.legend.level-legend .legend-copy {
  display: block;
}

.legend.level-legend .dot {
  margin-top: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: inline-block;
  border-radius: 50%;
}

.dot.lunch {
  background: #ce6d56;
}

.dot.street {
  background: #607347;
}

.dot.dessert {
  background: #d8a74b;
}

.dot.must,
.level-badge.must i {
  background: radial-gradient(circle at 30% 25%, #9db17a, #526b38 70%);
}

.dot.adventure,
.level-badge.adventure i {
  background: radial-gradient(circle at 30% 25%, #e4c692, #b98d55 70%);
}

.dot.local,
.level-badge.local i {
  background: radial-gradient(circle at 30% 25%, #ef8f73, #c95842 70%);
}

.dish-list-section {
  scroll-margin-top: 30px;
  margin-top: 72px;
}

.city-dishes-title {
  margin: 0 0 54px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.dish-list-section h2 {
  margin: 0 0 54px;
  color: var(--terracotta);
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1;
}

.dish-list-stack {
  display: grid;
  gap: 42px;
}

.dish-row {
  min-height: 154px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 110px 32px;
  gap: 24px;
  align-items: center;
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 14px rgba(43, 41, 36, 0.13);
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dish-row:hover {
  transform: scale(1.018);
  box-shadow: 0 12px 24px rgba(43, 41, 36, 0.16);
}

.dish-row img {
  width: 150px;
  height: 126px;
  border-radius: 16px;
  object-fit: cover;
}

.dish-row-main {
  display: grid;
  gap: 12px;
}

.dish-row-main strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.dish-row-main > span:last-child {
  color: #4c4a46;
  font-size: 15px;
  line-height: 1.35;
}

.level-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #e1e7dc;
  color: var(--olive);
  font-size: 16px;
  font-weight: 700;
}

.level-badge i {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
}

.level-badge.adventure {
  background: #f0e4d0;
  color: #bd8e53;
}

.level-badge.local {
  background: #f4ddd6;
  color: var(--terracotta);
}

.city-label {
  align-self: center;
  justify-self: center;
  min-width: 100px;
  padding: 10px 18px;
  border-radius: 0 10px 0 10px;
  background: var(--terracotta);
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.row-arrow {
  color: var(--terracotta);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.single-dish-hero {
  width: min(1140px, calc(100% - 60px));
  height: 300px;
  display: block;
  margin: 18px auto 56px;
  border-radius: 20px;
  object-fit: fill;
  object-position: center;
}

.single-dish-page {
  width: min(900px, calc(100% - 60px));
  margin: 0 auto 120px;
}

.single-dish-page .breadcrumbs {
  margin-bottom: 64px;
  font-size: 14px;
}

.allergen-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.allergen-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #e9e7e3;
  color: #4d4b46;
  font-size: 14px;
}

.allergen-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.allergen-row .diet-pill {
  background: #dfe7d9;
  color: var(--olive);
}

.disclaimer {
  margin-bottom: 70px;
  color: #55534f;
  font-size: 14px;
}

.single-dish-page h1 {
  margin-bottom: 28px;
  font-size: clamp(31px, 3vw, 38px);
  font-weight: 700;
}

.single-copy {
  margin: 44px 0 42px;
  color: #44423e;
  font-size: 17px;
  line-height: 1.5;
}

.dish-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 62px;
}

.dish-actions button {
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  font: 700 16px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.button-icon,
.text-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.button-icon svg,
.text-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.dish-actions button,
.restaurant-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hear-button {
  border: 0;
  background: var(--terracotta);
  color: white;
}

.waiter-button {
  border: 2px solid #bdb9b3;
  background: transparent;
  color: #3e3c39;
}

.waiter-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  background: #fffdf9;
  text-align: center;
}

.waiter-modal[hidden] {
  display: none;
}

.waiter-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.waiter-modal-dish {
  color: var(--ink);
  font-size: clamp(38px, 10vw, 72px);
  font-weight: 900;
  line-height: 1.05;
}

.waiter-modal-phrase {
  color: var(--terracotta-dark);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 800;
}

.dish-info-card {
  margin-top: 50px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 14px rgba(43, 41, 36, 0.12);
}

.dish-info-card h2 {
  margin: 0 0 20px;
  color: #777571;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.dish-info-card p {
  margin: 0;
  color: #343330;
  font-size: 16px;
  line-height: 1.5;
}

.note-card h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.note-card h2 span {
  color: var(--terracotta);
  font-size: 40px;
  line-height: 0.6;
}

.note-card p {
  padding-left: 34px;
  font-style: italic;
}

.where-section {
  margin-top: 62px;
}

.where-section > h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1;
}

.where-section > p {
  margin-bottom: 44px;
  color: #4b4945;
  font-size: 16px;
}

.restaurant-stack {
  display: grid;
  gap: 36px;
}

.restaurant-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 14px rgba(43, 41, 36, 0.13);
}

.restaurant-card h3 {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.restaurant-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #7a7874;
  font-size: 16px;
}

.restaurant-area strong {
  color: #343330;
}

.restaurant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.restaurant-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.maps-link {
  background: var(--terracotta);
  color: white;
}

.site-link {
  border: 2px solid #bdb9b3;
  background: transparent;
  color: #393733;
}

.why-go {
  display: none;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e7e1d7;
}

.why-go h4 {
  margin: 0 0 10px;
  color: #777571;
  font-size: 14px;
  text-transform: uppercase;
}

.why-go p {
  margin: 0;
  color: #44423f;
  font-size: 15px;
  line-height: 1.45;
}

.dish-section {
  margin-top: 42px;
}

.dish-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

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

.dish-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #e6e2d8;
  border-top: 8px solid var(--terracotta);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.dish-card.type-1 {
  border-top-color: var(--olive);
}

.dish-card.type-2 {
  border-top-color: #d8a74b;
}

.dish-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
}

.dish-card p {
  margin-bottom: 0;
  color: #5c5a54;
  font-size: 15px;
}

.dish-tag {
  width: fit-content;
  margin-bottom: 14px !important;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0eee8;
  color: var(--terracotta-dark) !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  min-height: 147px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(80px, calc((100vw - 1120px) / 2));
  background: var(--olive);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 22px;
}

.site-footer nav {
  gap: 20px;
}

.site-footer nav a + a {
  position: relative;
}

.site-footer nav a + a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
}

.cookie-settings-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.9;
}

.cookie-settings-trigger:hover,
.cookie-settings-trigger:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.cookie-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 46px;
  padding: 8px 24px;
  background: var(--terracotta);
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
}

.cookie-bar p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 31px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: white;
  color: #1f1f1f;
  font: 600 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--olive);
  color: white;
}

.cookie-preferences {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  gap: 0;
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: left;
}

.cookie-preferences[hidden],
.cookie-bar[hidden] {
  display: none;
}

.cookie-essential {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-essential small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
}

.cookie-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 16px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-toggle input {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 26px;
  margin: 1px 0 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 50%, white 0 8px, transparent 8.5px),
    rgba(47, 43, 41, 0.34);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.cookie-toggle input:checked {
  border-color: var(--olive);
  background:
    radial-gradient(circle at calc(100% - 12px) 50%, white 0 8px, transparent 8.5px),
    var(--olive);
}

.cookie-toggle input:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.cookie-toggle span,
.cookie-toggle strong,
.cookie-toggle small {
  display: block;
}

.cookie-toggle span {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  text-align: left;
}

.cookie-toggle strong {
  margin-bottom: 2px;
}

.cookie-toggle small {
  color: rgba(255, 255, 255, 0.86);
}

.save-cookie-preferences {
  min-height: 40px;
  width: fit-content;
  margin-top: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: white;
  color: #1f1f1f;
  font: 600 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.save-cookie-preferences:hover,
.save-cookie-preferences:focus-visible {
  background: #f5f5f5;
  outline: 2px solid white;
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .site-header,
  .main-nav,
  .site-footer,
  .cookie-bar {
    flex-direction: column;
  }

  .site-header {
    width: min(539px, calc(100% - 60px));
    height: 111px;
    margin: 0 auto;
    padding-top: 53px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .brand {
    width: 252px;
    height: 36px;
  }

  .main-nav {
    display: none;
  }

  .mobile-language-select {
    position: absolute;
    top: 52px;
    right: 0;
    display: block;
  }

  .mobile-language-select select {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.88);
  }

  .nav-rule {
    display: none;
  }

  .hero {
    width: min(539px, calc(100% - 60px));
    margin-top: 108px;
  }

  .pill {
    padding: 7px 23px;
    font-size: 15px;
    font-weight: 500;
  }

  .hero .pill {
    margin-bottom: 33px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 15px;
    font-weight: 500;
  }

  .lead {
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .primary-button {
    min-height: 45px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
  }

  .steps {
    width: min(527px, calc(100% - 72px));
    margin-top: 9px;
    padding-top: 84px;
  }

  .step-grid {
    gap: 42px;
    margin-top: 53px;
  }

  .step-card {
    min-height: 157px;
    flex-direction: column;
    justify-content: center;
    padding: 19px;
    border-radius: 20px;
    text-align: center;
  }

  .step-card h3 {
    font-size: 15px;
  }

  .step-card p {
    font-size: 18px;
    font-weight: 800;
  }

  .cities {
    width: min(527px, calc(100% - 72px));
    margin-top: 95px;
    padding-top: 74px;
    text-align: left;
  }

  .cities .section-kicker,
  .cities h2 {
    text-align: left;
  }

  .cities h2,
  .about h2 {
    font-size: 36px;
    line-height: 1;
  }

  .section-lead {
    margin-bottom: 42px;
    font-size: 16px;
    line-height: 1.5;
  }

  .city-grid {
    gap: 20px;
    margin-right: -16px;
    margin-left: -16px;
  }

  .city-card {
    min-height: 280px;
    padding: 20px;
  }

  .city-name {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.1;
  }

  .dish-count {
    font-size: 14px;
  }

  .dish-list {
    font-size: 16px;
  }

  .dish-rationale {
    width: min(527px, calc(100% - 72px));
    margin-top: 74px;
    margin-bottom: 90px;
  }

  .dish-rationale h2 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .dish-rationale p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.45;
  }

  .dish-rationale .rationale-survey {
    margin-top: 46px;
    font-size: 15px;
  }

  .step-grid,
  .city-grid,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .city-hero {
    min-height: 240px;
    padding: 28px;
  }

  .text-hero,
  .city-hero {
    margin-top: 0;
  }

  .city-hero {
    width: min(100% - 20px, 579px);
    height: 250px;
    min-height: 250px;
    margin-top: 10px;
    padding: 0 35px 35px;
    border-radius: 0 0 18px 18px;
  }

  .city-hero .pill,
  .city-hero p:not(.pill) {
    display: none;
  }

  .city-hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
  }

  .content-page {
    padding: 26px;
  }

  .about-search-wrap {
    width: min(100% - 36px, 563px);
    margin-top: 51px;
  }

  .about-search {
    grid-template-columns: minmax(0, 427px) 70px;
    gap: 36px;
  }

  .text-hero.about-hero {
    width: min(539px, calc(100% - 60px));
    margin-top: 41px;
    padding: 54px 0 81px;
  }

  .about-hero h1 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .about-hero p:not(.pill) {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
  }

  .about-band {
    margin-top: 0;
    padding: 134px 0;
  }

  .about-copy {
    width: min(539px, calc(100% - 60px));
  }

  .about-copy h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .city-browser,
  .single-dish-page {
    width: min(100% - 72px, 900px);
  }

  .single-dish-page {
    width: min(100% - 48px, 900px);
  }

  .city-browser {
    margin-top: 42px;
    margin-bottom: 110px;
  }

  .breadcrumbs {
    gap: 10px;
    margin-bottom: 69px;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .search-row {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 14px;
    margin-bottom: 40px;
  }

  .search-row input {
    height: 50px;
    padding: 12px 18px;
    border-radius: 26px;
    font-size: 16px;
  }

  .search-row button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 15px;
  }

  .city-browser .search-row {
    width: min(100% + 12px, 480px);
    margin-right: auto;
    margin-bottom: 64px;
    margin-left: auto;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 24px;
  }

  .search-row.about-search {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 24px;
    margin-bottom: 38px;
  }

  .city-intro {
    margin-bottom: 67px;
    font-size: 16px;
  }

  .category-tabs {
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-bottom: 94px;
    margin-left: -18px;
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .category-tabs a {
    width: calc(100% - 20px);
    min-height: 43px;
    margin-left: 10px;
    font-size: 15px;
  }

  .level-legend span {
    align-items: flex-start;
    font-size: 16px;
    white-space: normal;
  }

  .legend.level-legend {
    display: block;
    margin-bottom: 61px;
    padding: 19px;
    border-radius: 20px;
  }

  .legend.level-legend h3 {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: 18px;
  }

  .legend.level-legend span {
    display: flex;
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .city-dishes-title {
    margin: 0 0 38px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }

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

  .dish-list-section h2 {
    margin-bottom: 31px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .dish-list-stack {
    gap: 20px;
  }

  .dish-row {
    width: calc(100% + 36px);
    min-height: 745px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    align-items: start;
    margin-left: -18px;
    padding: 15px;
    border-radius: 20px;
  }

  .dish-row img {
    width: 100%;
    height: 484px;
    border-radius: 16px;
  }

  .dish-row-main {
    gap: 20px;
    padding-top: 45px;
  }

  .dish-row-main strong {
    font-size: 18px;
    line-height: 1;
  }

  .dish-row-main > span:last-child {
    font-size: 15px;
    line-height: 1.5;
  }

  .level-badge {
    min-height: 36px;
    gap: 10px;
    padding: 6px 18px;
    font-size: 16px;
  }

  .level-badge i {
    width: 16px;
    height: 16px;
  }

  .city-label {
    position: static;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    justify-self: end;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    margin: 0 6px 6px 0;
    padding: 9px 16px;
    border-radius: 0 10px 0 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  }

  .row-arrow {
    display: none;
  }

  .single-dish-hero {
    width: min(100% - 20px, 720px);
    height: 150px;
    margin: 10px auto 36px;
  }

  .single-dish-page .breadcrumbs {
    margin-bottom: 64px;
  }

  .allergen-row {
    gap: 24px;
  }

  .allergen-row span {
    min-height: 36px;
    padding: 6px 18px;
    font-size: 14px;
  }

  .disclaimer {
    margin-bottom: 75px;
    font-size: 14px;
  }

  .single-dish-page h1 {
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .single-copy {
    margin: 39px 0 48px;
    font-size: 18px;
    line-height: 1.5;
  }

  .dish-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .dish-actions button {
    min-height: 53px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }

  .dish-info-card {
    margin-top: 22px;
    padding: 20px;
  }

  .dish-info-card h2 {
    font-size: 18px;
  }

  .dish-info-card p,
  .where-section > p,
  .restaurant-area,
  .restaurant-actions a {
    font-size: 16px;
  }

  .dish-info-card p {
    font-size: 17px;
    line-height: 1.5;
  }

  .where-section {
    margin-top: 104px;
  }

  .where-section > h2 {
    font-size: 24px;
  }

  .where-section > p {
    margin-bottom: 32px;
  }

  .note-card p {
    padding-left: 0;
  }

  .restaurant-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .restaurant-card {
    padding: 20px;
  }

  .restaurant-card h3 {
    font-size: 22px;
  }

  .site-footer {
    align-items: flex-start;
    padding: 30px 24px 84px;
  }

  .cookie-bar {
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }

  .cookie-preferences {
    text-align: left;
  }

  .cookie-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand {
    width: min(252px, 100%);
    height: 36px;
  }

  h1 {
    font-size: 34px;
  }

  .lead,
  .section-lead,
  .about p {
    font-size: 16px;
  }

  .step-card {
    padding: 19px;
  }

  .category-tabs {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

h1 {
  font-size: clamp(38px, 5.2vw, 58px);
}

.lead {
  font-size: 19px;
}

.pill,
.eyebrow,
.section-kicker {
  font-size: 14px;
}

.hero .eyebrow {
  font-size: 15px;
}

.primary-button,
.city-button {
  font-size: 15px;
}

.step-card h3 {
  font-size: 15px;
}

.step-card p {
  font-size: 18px;
}

.cities h2,
.about h2 {
  font-size: clamp(28px, 3.4vw, 34px);
}

.section-lead {
  font-size: 19px;
}

.city-name {
  font-size: clamp(28px, 3.7vw, 36px);
}

.dish-count {
  font-size: 14px;
}

.dish-list {
  font-size: 15px;
}

.dish-rationale h2 {
  font-size: clamp(31px, 3.8vw, 44px);
}

.dish-rationale p {
  font-size: clamp(18px, 1.8vw, 22px);
}

.dish-rationale .rationale-survey {
  font-size: clamp(15px, 1.35vw, 18px);
}

.about p {
  font-size: 18px;
}

.text-hero p:not(.pill) {
  font-size: 19px;
}

.about-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.about-copy p {
  font-size: 20px;
}

.city-hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
}

.city-hero p:not(.pill) {
  font-size: 19px;
}

.breadcrumbs {
  font-size: 18px;
}

.search-row input {
  font-size: 16px;
}

.search-row button,
.category-tabs a {
  font-size: 14px;
}

.legend.level-legend h3,
.level-legend h3 {
  font-size: 16px;
}

.legend.level-legend span,
.level-legend span {
  font-size: 14px;
}

.city-dishes-title {
  font-size: clamp(22px, 2vw, 28px);
}

.dish-list-section h2 {
  font-size: clamp(21px, 1.8vw, 24px);
}

.dish-row-main strong {
  font-size: 17px;
}

.dish-row-main > span:last-child {
  font-size: 14px;
}

.level-badge {
  font-size: 14px;
}

.city-label {
  font-size: 13px;
}

.row-arrow {
  font-size: 44px;
}

.single-dish-page h1 {
  font-size: clamp(28px, 2.7vw, 34px);
}

.single-copy,
.dish-info-card p,
.where-section > p,
.restaurant-area,
.restaurant-actions a {
  font-size: 15px;
}

.dish-actions button {
  font-size: 15px;
}

.dish-info-card h2 {
  font-size: 16px;
}

.note-card h2 span {
  font-size: 34px;
}

.where-section > h2 {
  font-size: clamp(22px, 2vw, 24px);
}

.restaurant-card h3 {
  font-size: 20px;
}

.dish-section h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}

.dish-card h3 {
  font-size: 20px;
}

@media (max-width: 820px) {
  .pill,
  .hero .eyebrow,
  .section-kicker {
    font-size: 13px;
  }

  .hero h1,
  h1 {
    font-size: 30px;
  }

  .lead,
  .section-lead,
  .about p {
    font-size: 15px;
  }

  .primary-button {
    font-size: 15px;
  }

  .step-card h3 {
    font-size: 14px;
  }

  .step-card p {
    font-size: 16px;
  }

  .cities h2,
  .about h2 {
    font-size: 30px;
  }

  .city-name {
    font-size: 30px;
  }

  .dish-count,
  .dish-list {
    font-size: 14px;
  }

  .dish-rationale h2 {
    font-size: 26px;
  }

  .dish-rationale p {
    font-size: 16px;
  }

  .dish-rationale .rationale-survey {
    font-size: 14px;
  }

  .city-hero h1 {
    font-size: 34px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-copy h2 {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .search-row input,
  .city-intro {
    font-size: 15px;
  }

  .search-row button,
  .category-tabs a {
    font-size: 14px;
  }

  .legend.level-legend h3,
  .level-legend h3 {
    font-size: 16px;
  }

  .legend.level-legend span,
  .level-legend span {
    font-size: 14px;
  }

  .city-dishes-title {
    font-size: 22px;
  }

  .dish-list-section h2 {
    font-size: 18px;
  }

  .dish-row-main strong {
    font-size: 17px;
  }

  .dish-row-main > span:last-child,
  .level-badge {
    font-size: 14px;
  }

  .single-dish-page h1 {
    font-size: 28px;
  }

  .single-copy {
    font-size: 16px;
  }

  .dish-actions button {
    font-size: 14px;
  }

  .dish-info-card h2 {
    font-size: 16px;
  }

  .dish-info-card p,
  .where-section > p,
  .restaurant-area,
  .restaurant-actions a {
    font-size: 15px;
  }

  .where-section > h2 {
    font-size: 22px;
  }

  .restaurant-card h3 {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  h1,
  .hero h1 {
    font-size: 29px;
  }

  .city-hero h1 {
    font-size: 32px;
  }

  .single-copy,
  .dish-info-card p {
    font-size: 15px;
  }
}

/* Mobile usability pass: compact layout, safer tap targets, no route/content changes. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.main-nav a,
.site-footer a,
.icon-link,
.language-select select,
.cookie-actions button {
  min-height: 44px;
}

.main-nav a:not(.icon-link),
.site-footer nav a {
  display: inline-flex;
  align-items: center;
}

.icon-link {
  width: 44px;
  height: 44px;
}

.cookie-actions button {
  padding: 0 16px;
}

.single-dish-hero {
  object-fit: cover;
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 28px), 640px);
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    align-items: center;
    margin: 14px auto 0;
    padding-top: 0;
  }

  .brand {
    width: min(208px, 100%);
    height: 40px;
    min-height: 40px;
  }

  .mobile-language-select {
    position: static;
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .mobile-language-select select {
    min-width: 76px;
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 12px;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
  }

  .main-nav .language-select,
  .nav-rule {
    display: none;
  }

  .main-nav a:not(.icon-link) {
    min-height: 40px;
    padding: 0 2px;
    border: 0;
    border-radius: 999px;
    background: transparent;
  }

  .main-nav .icon-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    color: #74716b;
  }

  .hero {
    width: min(calc(100% - 32px), 620px);
    margin-top: 36px;
  }

  .pill {
    margin-bottom: 20px;
    padding: 7px 18px;
    font-size: 12px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero h1,
  h1 {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.04;
  }

  .lead {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.45;
  }

  .primary-button,
  .city-button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }

  .steps,
  .cities,
  .dish-rationale,
  .about,
  .text-hero,
  .about-copy,
  .city-browser,
  .single-dish-page,
  .content-page {
    width: min(calc(100% - 32px), 680px);
  }

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

  .step-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .step-card {
    min-height: 92px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px;
    text-align: left;
  }

  .step-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    padding: 12px;
  }

  .step-card h3 {
    font-size: 13px;
  }

  .step-card p {
    font-size: 16px;
    line-height: 1.15;
  }

  .cities {
    margin-top: 58px;
    padding-top: 0;
  }

  .cities h2,
  .about h2,
  .dish-rationale h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .section-lead {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.45;
  }

  .city-grid {
    gap: 16px;
    margin-right: 0;
    margin-left: 0;
  }

  .city-card {
    min-height: 230px;
    padding: 22px;
    border-radius: 16px;
  }

  .city-name {
    font-size: 30px;
    line-height: 1;
  }

  .dish-count,
  .dish-list {
    font-size: 13px;
  }

  .city-button {
    min-height: 44px;
    font-size: 13px;
  }

  .dish-rationale {
    margin-top: 64px;
    margin-bottom: 76px;
  }

  .dish-rationale p {
    font-size: 16px;
    line-height: 1.45;
  }

  .dish-rationale .rationale-survey {
    margin-top: 36px;
    font-size: 13px;
  }

  .city-hero {
    width: min(calc(100% - 20px), 680px);
    height: auto;
    min-height: 210px;
    margin-top: 16px;
    padding: 28px;
    border-radius: 18px;
  }

  .city-hero h1 {
    font-size: 32px;
  }

  .city-browser {
    margin-top: 30px;
    margin-bottom: 86px;
  }

  .breadcrumbs {
    gap: 8px 12px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.25;
  }

  .breadcrumbs a,
  .breadcrumbs strong {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .search-row,
  .city-browser .search-row,
  .search-row.about-search {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 8px;
    margin: 0 0 30px;
  }

  .search-row input {
    height: 48px;
    padding: 11px 15px;
    font-size: 14px;
  }

  .search-row button {
    width: 52px;
    height: 52px;
    font-size: 12px;
  }

  .city-intro {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.45;
  }

  .category-tabs {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 0 38px;
  }

  .category-tabs a {
    width: 100%;
    min-height: 46px;
    margin-left: 0;
    padding: 0 16px;
    font-size: 14px;
  }

  .legend.level-legend {
    display: block;
    margin-bottom: 44px;
    padding: 18px;
  }

  .legend.level-legend h3,
  .level-legend h3 {
    margin: 0 0 14px;
    font-size: 15px;
  }

  .legend.level-legend span,
  .level-legend span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
  }

  .legend.level-legend span:last-child,
  .level-legend span:last-child {
    margin-bottom: 0;
  }

  .legend.level-legend .legend-copy {
    display: block;
  }

  .legend.level-legend .dot {
    margin-top: 4px;
  }

  .legend.level-legend strong,
  .level-legend strong {
    margin-right: 0;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .city-dishes-title {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .dish-list-section {
    margin-top: 42px;
  }

  .dish-list-section h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .dish-list-stack {
    gap: 18px;
  }

  .dish-row {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    margin-left: 0;
    padding: 14px 14px 16px;
    border-radius: 20px;
  }

  .dish-row img {
    width: 100%;
    height: auto;
    grid-row: auto;
    border-radius: 16px;
  }

  .dish-row-main {
    min-width: 0;
    gap: 8px;
    padding-top: 0;
    padding-right: 0;
  }

  .dish-row-main strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .dish-row-main > span:last-child {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .level-badge {
    min-height: 30px;
    gap: 7px;
    padding: 5px 11px;
    font-size: 12px;
  }

  .level-badge i {
    width: 14px;
    height: 14px;
  }

  .city-label {
    position: static;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    justify-self: end;
    z-index: 1;
    min-width: 0;
    min-height: 0;
    margin: 0 6px 6px 0;
    padding: 9px 16px;
    border-radius: 0 10px 0 10px;
    font-size: 13px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  }

  .row-arrow {
    display: none;
  }

  .single-dish-hero {
    width: min(calc(100% - 20px), 680px);
    height: 150px;
    margin: 16px auto 28px;
    border-radius: 16px;
  }

  .single-dish-page {
    margin-bottom: 86px;
  }

  .single-dish-page .breadcrumbs {
    margin-bottom: 24px;
  }

  .allergen-row {
    gap: 10px;
    margin-bottom: 22px;
  }

  .allergen-row span {
    min-height: 40px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .disclaimer {
    margin-bottom: 42px;
    font-size: 13px;
    line-height: 1.45;
  }

  .single-dish-page h1 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .single-copy {
    margin: 30px 0 30px;
    font-size: 15px;
    line-height: 1.45;
  }

  .dish-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .dish-actions button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.2;
  }

  .dish-info-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .dish-info-card h2 {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .dish-info-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .note-card h2 {
    gap: 10px;
  }

  .note-card h2 span {
    font-size: 30px;
  }

  .where-section {
    margin-top: 56px;
  }

  .where-section > h2 {
    font-size: 22px;
  }

  .where-section > p {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .restaurant-stack {
    gap: 18px;
  }

  .restaurant-card {
    padding: 18px;
    border-radius: 18px;
  }

  .restaurant-card h3 {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.15;
  }

  .restaurant-area {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.35;
  }

  .restaurant-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .restaurant-actions a {
    min-height: 48px;
    font-size: 14px;
  }

  .about-search-wrap {
    width: min(calc(100% - 32px), 620px);
    margin-top: 34px;
  }

  .text-hero.about-hero {
    width: min(calc(100% - 32px), 620px);
    margin-top: 28px;
    padding: 44px 0 58px;
  }

  .about-band {
    padding: 70px 0;
  }

  .about-copy h2 {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .content-page {
    margin-top: 34px;
    padding: 24px;
  }

  .site-footer {
    align-items: stretch;
    gap: 18px;
    padding: 28px 20px 108px;
    font-size: 13px;
  }

  .site-footer p {
    margin-bottom: 12px;
  }

  .site-footer nav,
  .footer-social {
    gap: 8px 14px;
    flex-wrap: wrap;
  }

  .site-footer nav a {
    min-height: 44px;
  }

  .cookie-bar {
    align-items: stretch;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.35;
  }

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

  .cookie-actions button {
    width: 100%;
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .cookie-essential {
    gap: 12px;
    padding: 12px 0;
  }

  .cookie-toggle {
    column-gap: 12px;
    padding: 14px 0;
  }

  .save-cookie-preferences {
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
  }
}

@media (min-width: 700px) and (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero {
    margin-top: 56px;
  }

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

  .city-card {
    min-height: 260px;
  }

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

  .dish-row {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .dish-row img {
    width: 200px;
    height: 150px;
  }

  .city-label {
    position: static;
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

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

  .cookie-bar {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .cookie-actions {
    flex: 0 0 auto;
    min-width: 330px;
  }
}

@media (min-width: 821px) {
  .main-nav a:not(.icon-link) {
    min-height: 44px;
  }

  .category-tabs a {
    min-height: 46px;
  }

  .cookie-actions button {
    min-height: 44px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .site-header .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 10px;
    border: 1px solid #e6e3dc;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-header .main-nav .nav-rule,
  .site-header .main-nav .language-select {
    display: none;
  }

  .site-header .main-nav a:not(.icon-link) {
    min-height: 40px;
    padding: 0 10px;
    justify-content: flex-start;
  }

  .site-header .main-nav .icon-link {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .home-search-section,
  .tips-section {
    width: min(calc(100% - 28px), 640px);
  }

  .home-search {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 6px;
    padding: 6px;
  }

  .home-search input {
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }

  .home-search button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .cities {
    width: 100%;
    padding-left: 14px;
    text-align: left;
  }

  .cities .section-kicker,
  .cities h2,
  .cities .section-lead {
    width: calc(100% - 28px);
    text-align: center;
  }

  .city-rail {
    grid-auto-columns: minmax(250px, 82vw);
    padding-right: 14px;
  }

  .city-rail-card {
    min-height: 214px;
  }

  .city-rail-copy {
    padding: 20px;
  }

  .city-rail-copy strong {
    font-size: 30px;
  }

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

@media (min-width: 700px) and (max-width: 1100px) {
  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── App boot loader ──────────────────────────────────────────────────────
   Pages with real, meaningful fallback content (home, city, dish — body
   class `has-static-fallback`) NEVER hide #content: the fallback IS the
   pre-boot content, visible immediately and to no-JS/crawler visitors, and
   app.js swaps it in place once ready. This is also what fixes the LCP
   regression from the previous patch, which hid #content on every page.

   Pages with empty/near-empty fallback (about/privacy/cookies, the /dish/
   query-param shell — body class `needs-boot-loader`) would otherwise show
   a blank screen, so for THOSE pages only: while `js-enabled` is present on
   <html> and neither `app-ready` (first render done) nor `app-boot-timeout`
   (fail-safe) has been added, #content stays hidden and this loader shows
   instead. Either class ends the loading state and reveals #content again
   automatically. Pages that opt into neither class (no-JS, or JS pages that
   don't opt in) are unaffected either way. */

.app-boot-loader {
  display: none;
  min-height: 40vh;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.app-boot-loader p {
  margin: 0;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.app-boot-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: app-boot-spin 0.8s linear infinite;
}

@keyframes app-boot-spin {
  to {
    transform: rotate(360deg);
  }
}

html.js-enabled:not(.app-ready):not(.app-boot-timeout) body.needs-boot-loader #content {
  display: none;
}

html.js-enabled:not(.app-ready):not(.app-boot-timeout) body.needs-boot-loader .app-boot-loader {
  display: flex;
}

/* Light, minimal styling so the raw fallback (home/city/dish) looks
   intentional/branded for the brief moment before app.js replaces it —
   not a redesign, just centering, spacing, and pill-style links instead
   of default browser bullet points. */
.static-fallback {
  width: min(900px, calc(100% - 36px));
  margin: 58px auto 0;
  text-align: center;
}

.static-fallback h1 {
  margin-bottom: 12px;
}

.static-fallback p {
  color: var(--muted);
  font-size: 18px;
}

.static-fallback ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.static-fallback li a {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
}

.static-fallback nav[aria-label="Breadcrumb"] {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .app-boot-spinner {
    animation: none;
  }
}
