:root {
  --black: #080808;
  --coal: #11110f;
  --coal-2: #1a1916;
  --paper: #f3f0e8;
  --white: #fffdf7;
  --yellow: #f7ba08;
  --mint: #b8ffcf;
  --muted: rgba(255, 253, 247, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --header-h: 86px;
  --radius: 8px;
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  color: var(--white);
  font-family: var(--body);
  letter-spacing: 0;
}

button,
a {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -80px;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.app-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
  padding: 14px 5.5vw;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.brand img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(247, 186, 8, 0.22);
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 1.78rem;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
}

.screen-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}

.screen-nav button,
.screen-nav a {
  position: relative;
  border: 0;
  padding: 0.5rem 0;
  color: rgba(255, 253, 247, 0.82);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
}

.screen-nav button::after,
.screen-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.screen-nav button:hover::after,
.screen-nav button.is-active::after,
.screen-nav a:hover::after {
  right: 0;
}

.screen-nav button.is-active {
  color: var(--yellow);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  border: 1px solid var(--yellow);
  color: var(--black);
  background: var(--yellow);
}

.header-cta svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.screen-deck {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.app-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(30px) scale(0.995);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 360ms;
}

.app-screen.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.screen-home {
  background: var(--black);
}

.home-media {
  position: absolute;
  inset: 0 0 140px;
  width: 100%;
  height: calc(100% - 140px);
  object-fit: cover;
  object-position: center;
}

.home-copy {
  position: absolute;
  z-index: 3;
  top: var(--header-h);
  bottom: 140px;
  left: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(43%, 620px);
  padding-top: 1rem;
}

.home-copy h1 {
  display: grid;
  margin: 0;
  font-family: var(--body);
  font-size: 6.7rem;
  line-height: 0.87;
  font-weight: 900;
}

.home-copy h1 span {
  color: var(--white);
}

.home-copy h1 strong {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin-top: 0.28rem;
  color: var(--yellow);
  font-weight: 900;
}

.home-copy h1 strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 42%;
  height: 5px;
  background: var(--yellow);
  transform: rotate(-2deg);
}

.home-copy > p {
  max-width: 470px;
  margin: 2rem 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: 1.12rem;
  line-height: 1.55;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  border: 1px solid transparent;
}

.button-primary {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(8, 8, 8, 0.35);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.home-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.7rem;
}

.home-meta > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 42px;
}

.home-meta > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 2rem;
}

.home-meta svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-meta span {
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.home-meta strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
}

.home-meta b {
  margin: 0 0.3rem;
  color: var(--yellow);
}

.benefit-strip {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  height: 140px;
  padding: 0 6vw;
  color: #171715;
  background: var(--paper);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.25);
}

.benefit-strip::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 18px;
  background: var(--paper);
  clip-path: polygon(0 54%, 7% 28%, 15% 62%, 23% 35%, 31% 58%, 42% 24%, 52% 60%, 62% 32%, 72% 58%, 84% 23%, 93% 55%, 100% 30%, 100% 100%, 0 100%);
}

.benefit-lead {
  display: grid;
  padding-right: 2rem;
}

.benefit-lead strong,
.benefit-lead span {
  font-size: 1.42rem;
  line-height: 1.2;
  font-weight: 900;
}

.benefit-lead span {
  color: #d79f00;
}

.benefit-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 76px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 1.5rem;
}

.benefit-item svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #161615;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item span {
  display: grid;
  gap: 0.3rem;
}

.benefit-item strong {
  font-size: 0.85rem;
}

.benefit-item small {
  max-width: 150px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.72rem;
  line-height: 1.35;
}

.app-screen:not(.screen-home) {
  padding: calc(var(--header-h) + 20px) 7vw 48px;
  background:
    linear-gradient(112deg, rgba(247, 186, 8, 0.04), transparent 32%),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.035), transparent 35%),
    var(--black);
}

.app-screen:not(.screen-home)::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.03) 5px 6px);
}

.screen-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(230px, 0.3fr);
  align-items: end;
  gap: 2rem;
  height: 106px;
  padding-right: 8vw;
}

.screen-heading > span {
  position: absolute;
  top: 0;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 4.6rem;
  line-height: 0.9;
  font-weight: 400;
}

.screen-heading p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.menu-workspace,
.location-workspace,
.specials-track {
  position: absolute;
  z-index: 2;
  left: 7vw;
  right: 7vw;
  top: calc(var(--header-h) + 146px);
  bottom: 46px;
}

.menu-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  gap: 1.4rem;
}

.menu-photo,
.menu-panel,
.location-detail,
.route-map,
.special-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--coal);
}

.menu-photo {
  isolation: isolate;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 253, 247, 0.07);
}

.menu-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 186, 8, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.08), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.menu-photo.is-switching img {
  opacity: 0.54;
  filter: saturate(0.84) brightness(0.74);
  transform: scale(1.018);
}

.menu-photo::after,
.special-hero::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.menu-photo-label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.3rem;
  max-width: min(78%, 440px);
  border: 1px solid rgba(247, 186, 8, 0.34);
  border-radius: 6px;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(145deg, rgba(7, 7, 7, 0.86), rgba(22, 21, 18, 0.76));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 253, 247, 0.09);
  backdrop-filter: blur(12px);
}

.special-badge,
.story-copy > span {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-photo-label span {
  justify-self: start;
  border-radius: 999px;
  padding: 0.24rem 0.48rem;
  color: #171715;
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(247, 186, 8, 0.28);
}

.menu-photo-label strong {
  font-family: var(--display);
  font-size: 2.75rem;
  line-height: 0.92;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.menu-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-width: 0;
  padding: 0.85rem;
  background: linear-gradient(160deg, #23221e, #121210);
}

.menu-tabs,
.location-tabs {
  display: flex;
  gap: 0.45rem;
  scrollbar-width: none;
}

.menu-tabs {
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.85rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.location-tabs {
  overflow-x: auto;
}

.menu-tabs::-webkit-scrollbar,
.location-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs button,
.location-tabs button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 253, 247, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tabs button {
  scroll-snap-align: start;
}

.menu-tabs button.is-active,
.location-tabs button.is-active {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.menu-summary {
  margin: 0.65rem 0 0;
  min-height: 2.2em;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(42px, auto);
  align-content: start;
  gap: 0.48rem;
  min-height: 0;
  overflow: hidden;
  padding: 0.65rem 0 0.5rem;
}

.dish-card {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.45rem 0.8rem;
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dish-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(247, 186, 8, 0.42), transparent 34%, rgba(184, 255, 207, 0.18));
  opacity: 0;
  transition: opacity 180ms ease;
}

.dish-card:hover,
.dish-card:focus-visible {
  border-color: rgba(247, 186, 8, 0.42);
  background: rgba(255, 253, 247, 0.06);
  transform: translateY(-1px);
}

.dish-card:focus-visible {
  outline: 2px solid rgba(247, 186, 8, 0.92);
  outline-offset: 2px;
}

.dish-card.is-active {
  border-color: rgba(247, 186, 8, 0.74);
  background: linear-gradient(145deg, rgba(247, 186, 8, 0.16), rgba(255, 253, 247, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.1),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.dish-card.is-active::before {
  opacity: 1;
}

.dish-card strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.15;
}

.dish-card > span {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.dish-card.is-active > span {
  color: var(--white);
}

.panel-link {
  justify-self: end;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.location-workspace {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(480px, 1.25fr);
  grid-template-rows: auto 1fr;
  gap: 0.9rem 1.4rem;
}

.location-tabs {
  grid-column: 1 / -1;
}

.location-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem;
  background: linear-gradient(155deg, #23221e, #11110f);
}

.location-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 3.8rem;
  line-height: 0.95;
  font-weight: 400;
}

.location-detail > p {
  max-width: 470px;
  margin: 0.8rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.location-detail dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.location-detail dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}

.location-detail dt {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail dd {
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.75rem;
  line-height: 1.4;
}

.location-detail dd a {
  color: var(--yellow);
  font-weight: 850;
}

.contact-note {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 253, 247, 0.58);
}

.outlet-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.outlet-actions .button,
.story-actions .button {
  min-height: 40px;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}

.route-map {
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.03);
  background:
    radial-gradient(circle at 47% 54%, rgba(247, 186, 8, 0.13), transparent 20%),
    linear-gradient(135deg, rgba(247, 186, 8, 0.05), transparent 34%),
    #11110f;
}

.real-location-map {
  background: #e7e0d3;
}

.real-location-map::before,
.real-location-map::after {
  display: none;
}

.real-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #e7e0d3;
}

.leaflet-container {
  width: 100%;
  height: 100%;
  color: var(--white);
  font-family: var(--body);
  background: #e7e0d3;
}

.leaflet-tile-pane {
  filter: saturate(0.78) contrast(1.04) brightness(0.92);
}

.leaflet-control-attribution {
  border-top-left-radius: 6px;
  color: rgba(255, 253, 247, 0.62);
  background: rgba(7, 7, 7, 0.76) !important;
  font-size: 0.54rem;
  line-height: 1.3;
}

.leaflet-control-attribution a {
  color: var(--yellow);
}

.outlet-map-pin {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.outlet-pin {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 0.42rem;
  width: max-content;
  min-width: 132px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.36rem 0.28rem 0.24rem;
  color: rgba(255, 253, 247, 0.84);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(7px);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.72));
}

.outlet-pin-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border: 3px solid #171715;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 253, 247, 0.22);
}

.outlet-pin-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
}

.outlet-pin strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1;
}

.outlet-pin small {
  display: block;
  margin-top: 0.12rem;
  color: rgba(255, 253, 247, 0.64);
  font-size: 0.56rem;
  line-height: 1;
  white-space: nowrap;
}

.outlet-pin-action {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(247, 186, 8, 0.55);
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
}

.outlet-pin-action::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg);
}

.outlet-pin-action::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
}

.outlet-map-pin.is-active {
  z-index: 900 !important;
}

.outlet-map-pin.is-active .outlet-pin {
  color: var(--white);
  border-color: rgba(247, 186, 8, 0.72);
  background: rgba(8, 8, 8, 0.9);
  transform: scale(1.08);
  transform-origin: 9px 9px;
}

.outlet-map-pin.is-active .outlet-pin-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(247, 186, 8, 0.25), 0 0 22px rgba(247, 186, 8, 0.55);
}

.outlet-map-pin.is-active .outlet-pin-dot::after {
  animation: map-pin-pulse 1.8s ease-out infinite;
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.055) 1px, transparent 1px);
  background-size: 82px 82px;
  transform: rotate(-7deg) scale(1.18);
  transform-origin: center;
}

.route-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.2), transparent 28%, transparent 72%, rgba(8, 8, 8, 0.32)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.26), transparent 34%);
}

.route-map.real-location-map::before,
.route-map.real-location-map::after {
  content: none;
  display: none;
}

.map-title,
.map-current,
.map-scale {
  position: absolute;
  z-index: 650;
}

.map-title {
  top: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.2rem;
  max-width: 310px;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 7px;
  padding: 0.75rem 0.85rem;
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(8px);
}

.map-title strong,
.map-current strong {
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.map-title span,
.map-current span,
.map-scale span {
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-current {
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.16rem;
  border: 1px solid rgba(247, 186, 8, 0.4);
  border-radius: 7px;
  padding: 0.65rem 0.8rem;
  background: rgba(247, 186, 8, 0.12);
  backdrop-filter: blur(8px);
}

.map-current span {
  color: rgba(247, 186, 8, 0.72);
}

.real-location-map .map-current {
  color: var(--black);
  border-color: rgba(8, 8, 8, 0.14);
  background: var(--yellow);
}

.real-location-map .map-current strong {
  color: var(--black);
}

.real-location-map .map-current span {
  color: rgba(8, 8, 8, 0.62);
}

.map-scale {
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.6rem;
  background: rgba(7, 7, 7, 0.7);
}

.map-scale i {
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.22), var(--yellow));
}

.geo-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.map-coast,
.map-water,
.map-roads path,
.route-segment,
.city-center {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.map-coast {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 2.8;
}

.map-water {
  stroke: rgba(184, 255, 207, 0.15);
  stroke-width: 1.8;
  stroke-dasharray: 5 8;
}

.map-roads path {
  stroke: rgba(255, 253, 247, 0.16);
  stroke-width: 2;
}

.route-segment {
  stroke: rgba(247, 186, 8, 0.48);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 300ms ease, stroke-width 300ms ease, filter 300ms ease;
}

.city-center {
  stroke: rgba(247, 186, 8, 0.22);
  stroke-width: 1.4;
  stroke-dasharray: 4 7;
}

.route-map[data-active-location="krishnapura"] .route-north,
.route-map[data-active-location="balmatta"] .route-north,
.route-map[data-active-location="balmatta"] .route-south,
.route-map[data-active-location="deralakatte"] .route-south {
  stroke: var(--yellow);
  stroke-width: 5.5;
  filter: drop-shadow(0 0 7px rgba(247, 186, 8, 0.35));
}

.route-map[data-active-location="balmatta"] .city-center {
  stroke: rgba(247, 186, 8, 0.7);
  filter: drop-shadow(0 0 7px rgba(247, 186, 8, 0.35));
}

.screen-locations.is-active .map-coast {
  animation: map-fade-in 900ms ease both;
}

.screen-locations.is-active .map-roads path {
  animation: map-fade-in 700ms ease both;
}

.screen-locations.is-active .route-segment {
  animation: route-draw-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.screen-locations.is-active .route-south { animation-delay: 220ms; }

.route-map.is-replaying[data-active-location="krishnapura"] .route-north,
.route-map.is-replaying[data-active-location="deralakatte"] .route-south {
  animation: route-select 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.map-marker {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.56rem;
  align-items: center;
  color: rgba(255, 253, 247, 0.68);
  transform: translate(-7px, -7px);
  transition: color 250ms ease, transform 250ms ease;
}

.map-marker i {
  position: relative;
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
  border: 3px solid var(--coal);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.map-marker i::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
}

.map-marker b {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  font-size: 0.86rem;
  line-height: 1.1;
}

.map-marker small {
  margin-top: 0.15rem;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.62rem;
  line-height: 1.1;
  white-space: nowrap;
}

.map-marker.is-active {
  color: var(--white);
  transform: translate(-7px, -7px) scale(1.08);
}

.map-marker.is-active i {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(247, 186, 8, 0.24);
}

.map-marker.is-active i::after {
  animation: map-pin-pulse 1.8s ease-out infinite;
}

.screen-locations.is-active .map-marker {
  animation: marker-arrive 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.screen-locations.is-active .map-marker[data-map-marker="balmatta"] { animation-delay: 260ms; }
.screen-locations.is-active .map-marker[data-map-marker="deralakatte"] { animation-delay: 420ms; }

.map-marker[data-map-marker="krishnapura"] { left: 21%; top: 15%; }
.map-marker[data-map-marker="balmatta"] { left: 47.5%; top: 55%; }
.map-marker[data-map-marker="deralakatte"] { left: 79%; top: 81%; }

.map-region,
.map-sea {
  position: absolute;
  z-index: 4;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.map-region-north { left: 42%; top: 13%; }
.map-region-city { left: 56%; top: 49%; }
.map-region-south { left: 66%; top: 72%; }
.map-sea { left: 3.5%; top: 44%; transform: rotate(-90deg); }

@keyframes route-draw-in {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; }
  to { stroke-dasharray: 1; stroke-dashoffset: 0; }
}

@keyframes route-select {
  0% { stroke-dasharray: 1; stroke-dashoffset: 1; }
  100% { stroke-dasharray: 1; stroke-dashoffset: 0; }
}

@keyframes marker-arrive {
  from { opacity: 0; translate: 0 10px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes map-pin-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  75%, 100% { opacity: 0; transform: scale(2.5); }
}

@keyframes map-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.specials-track {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 118px;
  gap: 0.8rem;
}

.special-filter-row {
  display: flex;
  gap: 0.45rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

.special-filter-row::-webkit-scrollbar,
.special-rail::-webkit-scrollbar {
  display: none;
}

.special-filter-row button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.52rem 0.76rem;
  color: rgba(255, 253, 247, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.special-filter-row button:hover,
.special-filter-row button:focus-visible {
  border-color: rgba(247, 186, 8, 0.48);
  color: var(--white);
  outline: 0;
  transform: translateY(-1px);
}

.special-filter-row button.is-active {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.special-hero {
  isolation: isolate;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 253, 247, 0.07);
}

.special-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(247, 186, 8, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.24) 52%, rgba(8, 8, 8, 0.12));
}

.special-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.special-hero:hover img {
  transform: scale(1.018);
}

.special-hero.is-switching img {
  opacity: 0.58;
  filter: saturate(0.82) brightness(0.78);
  transform: scale(1.03);
}

.special-hero-copy {
  position: absolute;
  z-index: 3;
  left: 1.35rem;
  bottom: 1.35rem;
  display: grid;
  gap: 0.55rem;
  width: min(520px, 58%);
}

.special-badge {
  justify-self: start;
  border: 1px solid rgba(184, 255, 207, 0.22);
  border-radius: 999px;
  padding: 0.34rem 0.55rem;
  background: rgba(8, 8, 8, 0.54);
  backdrop-filter: blur(8px);
}

.special-hero h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1;
  font-weight: 400;
}

.special-hero p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 253, 247, 0.74);
  font-size: 0.84rem;
  line-height: 1.5;
}

.special-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.special-meta span {
  display: grid;
  gap: 0.08rem;
  min-width: 104px;
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: 7px;
  padding: 0.48rem 0.62rem;
  background: rgba(8, 8, 8, 0.54);
  backdrop-filter: blur(8px);
}

.special-meta small {
  color: rgba(255, 253, 247, 0.52);
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.special-meta strong {
  color: var(--yellow);
  font-size: 0.82rem;
  line-height: 1.1;
}

.special-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.special-actions .button {
  min-height: 38px;
  padding: 0.58rem 0.95rem;
  font-size: 0.72rem;
}

.special-rail {
  display: flex;
  gap: 0.65rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.special-pick {
  appearance: none;
  position: relative;
  flex: 0 0 178px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: 7px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.special-pick::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  pointer-events: none;
}

.special-pick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.special-pick span {
  position: absolute;
  z-index: 1;
  left: 0.62rem;
  right: 0.62rem;
  bottom: 0.55rem;
  display: grid;
  gap: 0.12rem;
}

.special-pick small {
  color: var(--yellow);
  font-size: 0.54rem;
  font-weight: 950;
  text-transform: uppercase;
}

.special-pick strong {
  font-size: 0.72rem;
  line-height: 1.08;
}

.special-pick:hover,
.special-pick:focus-visible,
.special-pick.is-active {
  border-color: rgba(247, 186, 8, 0.74);
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.special-pick:hover img,
.special-pick:focus-visible img,
.special-pick.is-active img {
  filter: saturate(1.06) brightness(1.05);
  transform: scale(1.04);
}

.special-pick.is-active {
  box-shadow:
    0 0 0 1px rgba(247, 186, 8, 0.26),
    0 14px 34px rgba(0, 0, 0, 0.35);
}

.screen-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.58fr);
  align-items: center;
  gap: 5vw;
}

.story-copy,
.story-food {
  position: relative;
  z-index: 2;
}

.story-copy > span {
  color: var(--yellow);
}

.story-copy h2 {
  margin: 0.7rem 0 1rem;
  font-family: var(--display);
  font-size: 5.5rem;
  line-height: 0.88;
  font-weight: 400;
}

.story-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.story-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
  margin-top: 1.15rem;
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  padding: 0.75rem 0;
}

.story-proof span {
  min-width: 0;
}

.story-proof strong,
.story-proof small {
  display: block;
}

.story-proof strong {
  color: var(--yellow);
  font-size: 0.92rem;
  line-height: 1.1;
}

.story-proof small {
  margin-top: 0.18rem;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.story-copy blockquote {
  margin: 1.2rem 0 0;
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.story-food {
  display: grid;
  grid-template-rows: 1fr 0.65fr;
  gap: 0.8rem;
  height: 65vh;
  max-height: 620px;
}

.story-food img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.screen-rail {
  position: fixed;
  z-index: 90;
  right: 1.5rem;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  transform: translateY(-50%);
}

.rail-dots {
  display: grid;
  gap: 0.65rem;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.56);
  backdrop-filter: blur(10px);
}

.rail-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.rail-dots button.is-active {
  height: 22px;
  border-radius: 999px;
  background: var(--yellow);
}

.rail-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: rgba(8, 8, 8, 0.56);
  cursor: pointer;
}

.rail-arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screen-status {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1220px) {
  .screen-nav { gap: 1.5rem; }
  .home-copy h1 { font-size: 5.45rem; }
  .home-copy { width: 45%; }
  .screen-heading h2 { font-size: 3.8rem; }
  .story-copy h2 { font-size: 4.6rem; }
  .benefit-strip { grid-template-columns: 1.2fr repeat(3, 1fr); }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }

  .app-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 10px 20px;
    background: rgba(8, 8, 8, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .brand { gap: 0.58rem; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.32rem; }
  .brand small {
    display: block;
    margin-top: 0.08rem;
    font-size: 0.62rem;
  }
  .header-cta { display: none; }
  .nav-toggle { display: block; }

  .screen-nav {
    position: fixed;
    z-index: 99;
    top: calc(var(--header-h) + 10px);
    right: 20px;
    bottom: auto;
    left: auto;
    width: min(320px, calc(100vw - 40px));
    display: grid;
    align-items: stretch;
    align-content: start;
    justify-content: stretch;
    gap: 0.45rem;
    border: 1px solid rgba(255, 253, 247, 0.12);
    border-radius: 14px;
    padding: 0.62rem;
    background:
      linear-gradient(155deg, rgba(30, 29, 25, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.62),
      inset 0 1px 0 rgba(255, 253, 247, 0.06);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .screen-nav::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 25px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 253, 247, 0.12);
    border-left: 1px solid rgba(255, 253, 247, 0.12);
    background: rgba(26, 25, 22, 0.98);
    transform: rotate(45deg);
  }

  .screen-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .screen-nav button,
  .screen-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 253, 247, 0.1);
    border-radius: 9px;
    padding: 0.75rem 2.25rem 0.75rem 0.9rem;
    background: rgba(255, 253, 247, 0.045);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .screen-nav button::after,
  .screen-nav a::after {
    right: 0.9rem;
    left: auto;
    top: 50%;
    bottom: auto;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    opacity: 0.5;
    transform: translateY(-50%) rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .screen-nav button:hover::after,
  .screen-nav button.is-active::after,
  .screen-nav a:hover::after {
    right: 0.9rem;
    opacity: 1;
    transform: translate(2px, -50%) rotate(45deg);
  }

  .screen-nav button.is-active {
    border-color: var(--yellow);
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 8px 22px rgba(247, 186, 8, 0.18);
  }

  .home-media {
    inset: var(--header-h) 0 auto;
    width: 100%;
    height: 43%;
    object-position: 66% center;
  }

  .home-copy {
    top: 42%;
    right: 20px;
    bottom: 54px;
    left: 20px;
    justify-content: center;
    width: auto;
    padding: 0;
  }

  .home-copy h1 { font-size: 4rem; }
  .home-copy > p { max-width: 380px; margin-top: 1rem; font-size: 0.94rem; }
  .home-actions { margin-top: 1rem; }
  .home-actions .button { min-height: 42px; padding: 0.65rem 0.9rem; font-size: 0.74rem; }
  .home-meta { margin-top: 0.9rem; gap: 1rem; }
  .home-meta > div + div { padding-left: 1rem; }
  .home-meta span { font-size: 0.68rem; }
  .home-meta strong { font-size: 0.9rem; }
  .benefit-strip { display: none; }

  .app-screen:not(.screen-home) {
    padding: calc(var(--header-h) + 8px) 20px 58px;
  }

  .screen-heading {
    display: block;
    height: 94px;
    padding: 0;
  }

  .screen-heading > span { top: 0; }
  .screen-heading h2 { padding-top: 1.2rem; font-size: 3rem; }
  .screen-heading p { margin-top: 0.35rem; font-size: 0.75rem; }

  .menu-workspace,
  .location-workspace,
  .specials-track {
    left: 20px;
    right: 20px;
    top: calc(var(--header-h) + 108px);
    bottom: 58px;
  }

  .menu-workspace {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0.8rem;
  }

  .menu-photo-label strong { font-size: 2.2rem; }
  .menu-panel { padding: 0.7rem; }
  .menu-summary { font-size: 0.68rem; }
  .dish-grid { gap: 0.42rem; }
  .dish-card { min-height: 38px; padding: 0.5rem 0.58rem; }
  .dish-card strong,
  .dish-card > span { font-size: 0.7rem; }

  .location-workspace { grid-template-columns: 0.9fr 1.1fr; }
  .location-detail { padding: 1rem; }
  .location-detail h3 { font-size: 3rem; }

  .screen-story {
    grid-template-columns: 1fr 0.8fr;
  }
  .story-food { display: none; }
}

@media (max-width: 640px) {
  .screen-nav button,
  .screen-nav a { font-size: 0.78rem; }

  .home-media {
    height: 41%;
    object-position: 72% center;
  }

  .home-copy {
    top: 39%;
    bottom: 54px;
  }

  .home-copy h1 { font-size: 3.6rem; }
  .home-copy > p { max-width: 330px; font-size: 0.84rem; line-height: 1.45; }
  .home-actions { flex-wrap: nowrap; }
  .home-actions .button { flex: 1 1 0; min-width: 0; }
  .home-actions .button svg { display: none; }
  .home-meta > div:last-child { display: none; }

  .screen-heading { height: 86px; }
  .screen-heading h2 { font-size: 2.45rem; }
  .screen-heading p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .menu-workspace,
  .location-workspace,
  .specials-track {
    top: calc(var(--header-h) + 98px);
  }

  .menu-workspace {
    grid-template-columns: 1fr;
    grid-template-rows: 36% 64%;
    gap: 0.65rem;
  }

  .menu-photo-label {
    left: 0.65rem;
    right: auto;
    bottom: 0.65rem;
    min-width: 55%;
    padding: 0.55rem 0.65rem;
  }

  .menu-photo-label span { font-size: 0.55rem; }
  .menu-photo-label strong { font-size: 1.8rem; }
  .menu-panel {
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .menu-tabs {
    gap: 0.34rem;
    margin: -0.05rem -0.25rem 0;
    padding: 0.05rem 0.25rem 0.22rem;
    scroll-padding-inline: 0.25rem;
  }
  .menu-tabs button { min-height: 30px; padding: 0.4rem 0.58rem; font-size: 0.53rem; }
  .menu-summary { min-height: auto; margin-top: 0.26rem; font-size: 0.62rem; }
  .dish-grid {
    gap: 0.35rem;
    grid-auto-rows: minmax(34px, auto);
    padding: 0.35rem 0 0.25rem;
  }
  .dish-card {
    min-height: 34px;
    gap: 0.25rem 0.45rem;
    border-color: rgba(255, 253, 247, 0.12);
    padding: 0.45rem 0.5rem;
    background: rgba(10, 10, 9, 0.78);
  }
  .dish-card strong { font-size: 0.63rem; }
  .dish-card > span { font-size: 0.62rem; }
  .panel-link { display: none; }

  .location-workspace {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(275px, 1fr) minmax(255px, 0.78fr);
    gap: 0.55rem;
  }

  .location-tabs {
    position: relative;
    z-index: 4;
    gap: 0.25rem;
  }
  .location-tabs button { min-height: 32px; padding: 0.42rem 0.48rem; font-size: 0.54rem; }
  .route-map {
    order: 2;
    position: relative;
    inset: auto;
    min-height: 0;
    opacity: 1;
  }
  .route-map.real-location-map {
    width: calc(100% + 40px);
    margin-inline: -20px;
    border: 0;
    border-radius: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 253, 247, 0.08),
      inset 0 -1px 0 rgba(255, 253, 247, 0.08),
      0 16px 34px rgba(0, 0, 0, 0.28);
  }
  .route-map.real-location-map .leaflet-container {
    border-radius: 0;
  }
  .map-title {
    top: 0.55rem;
    left: 0.55rem;
    max-width: 185px;
    padding: 0.48rem 0.55rem;
  }
  .map-title strong,
  .map-current strong { font-size: 0.56rem; }
  .map-title span,
  .map-current span,
  .map-scale span { font-size: 0.42rem; }
  .map-current {
    top: 0.55rem;
    right: 0.55rem;
    padding: 0.48rem 0.55rem;
  }
  .map-scale {
    left: 0.55rem;
    bottom: 0.55rem;
    padding: 0.34rem 0.46rem;
  }
  .map-scale i { width: 46px; height: 2px; }
  .outlet-map-pin:not(.is-active) .outlet-pin {
    grid-template-columns: auto;
    min-width: 0;
    padding: 0.22rem;
    border-radius: 999px;
  }
  .outlet-map-pin:not(.is-active) .outlet-pin-copy,
  .outlet-map-pin:not(.is-active) .outlet-pin-action {
    display: none;
  }
  .outlet-map-pin:not(.is-active) .outlet-pin-dot {
    width: 19px;
    height: 19px;
  }
  .map-region,
  .map-sea { font-size: 0.48rem; }
  .map-region-north { left: 43%; top: 28%; }
  .map-region-city { left: 55%; top: 52%; }
  .map-region-south { left: 58%; top: 74%; }
  .map-sea { left: -1%; top: 52%; }
  .map-marker {
    column-gap: 0.34rem;
    transform: translate(-6px, -6px);
  }
  .map-marker i {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }
  .map-marker b { font-size: 0.66rem; }
  .map-marker small { font-size: 0.48rem; }
  .map-marker.is-active { transform: translate(-6px, -6px) scale(1.08); }
  .map-marker[data-map-marker="krishnapura"] { left: 23%; top: 35%; }
  .map-marker[data-map-marker="balmatta"] { left: 47%; top: 58%; }
  .map-marker[data-map-marker="deralakatte"] { left: 63%; top: 79%; }
  .location-detail {
    order: 3;
    position: relative;
    z-index: 3;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0.35rem 0 0;
    background: transparent;
    backdrop-filter: none;
  }

  .location-detail h3 { font-size: 2.35rem; }
  .location-detail > p { display: none; }
  .location-detail dl { gap: 0.4rem; }
  .location-detail dl div { grid-template-columns: 58px 1fr; padding-top: 0.4rem; }
  .location-detail dt { font-size: 0.56rem; }
  .location-detail dd { font-size: 0.65rem; }
  .outlet-actions { margin-top: 0.6rem; }
  .outlet-actions .button { min-height: 34px; padding: 0.45rem 0.7rem; font-size: 0.64rem; }

  .specials-track {
    grid-template-rows: auto minmax(0, 1fr) 96px;
    gap: 0.55rem;
  }

  .special-filter-row {
    gap: 0.32rem;
    margin-inline: -0.2rem;
    padding: 0.04rem 0.2rem 0.12rem;
    scroll-padding-inline: 0.2rem;
  }

  .special-filter-row button {
    min-height: 30px;
    padding: 0.4rem 0.58rem;
    font-size: 0.52rem;
  }

  .special-hero {
    border-radius: 7px;
  }

  .special-hero::before {
    background:
      radial-gradient(circle at 76% 20%, rgba(247, 186, 8, 0.16), transparent 26%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.92), transparent 56%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.58), transparent 66%);
  }

  .special-hero-copy {
    right: 0.72rem;
    left: 0.72rem;
    bottom: 0.7rem;
    width: auto;
    gap: 0.34rem;
  }

  .special-badge {
    padding: 0.26rem 0.44rem;
    font-size: 0.5rem;
  }

  .special-hero h3 {
    max-width: 92%;
    font-size: 2.42rem;
  }

  .special-hero p {
    max-width: 96%;
    font-size: 0.65rem;
    line-height: 1.36;
  }

  .special-meta {
    gap: 0.34rem;
  }

  .special-meta span {
    min-width: 88px;
    padding: 0.34rem 0.46rem;
  }

  .special-meta small { font-size: 0.43rem; }
  .special-meta strong { font-size: 0.62rem; }

  .special-actions {
    gap: 0.38rem;
  }

  .special-actions .button {
    min-height: 32px;
    padding: 0.42rem 0.66rem;
    font-size: 0.58rem;
  }

  .special-rail {
    gap: 0.45rem;
  }

  .special-pick {
    flex-basis: 126px;
    border-radius: 6px;
  }

  .special-pick span {
    left: 0.48rem;
    right: 0.48rem;
    bottom: 0.42rem;
  }

  .special-pick small { font-size: 0.46rem; }
  .special-pick strong { font-size: 0.6rem; }

  .screen-story {
    display: block;
  }

  .story-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100dvh - var(--header-h) - 56px);
    padding-top: clamp(5.8rem, 15dvh, 7.2rem);
  }

  .story-copy h2 { margin: 0.8rem 0 1rem; font-size: 4.15rem; }
  .story-copy p { max-width: 92%; font-size: 0.78rem; line-height: 1.55; }
  .story-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding: 0.62rem 0;
  }
  .story-proof strong { font-size: 0.72rem; }
  .story-proof small { font-size: 0.49rem; }
  .story-copy blockquote { margin-top: 1rem; font-size: 0.84rem; }

  .screen-rail {
    top: auto;
    right: 50%;
    bottom: 8px;
    display: flex;
    align-items: center;
    transform: translateX(50%);
  }

  .rail-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.65rem;
  }

  .rail-dots button.is-active { width: 22px; height: 8px; }
  .rail-arrow { transform: rotate(-90deg); }
}

@media (max-height: 720px) and (min-width: 641px) {
  .home-media { bottom: 112px; height: calc(100% - 112px); }
  .home-copy { bottom: 112px; }
  .home-copy h1 { font-size: 4.7rem; }
  .home-copy > p { margin-top: 1.2rem; font-size: 0.9rem; }
  .home-actions { margin-top: 1rem; }
  .home-meta { margin-top: 1rem; }
  .benefit-strip { height: 112px; }
  .benefit-lead strong,
  .benefit-lead span { font-size: 1.15rem; }
  .benefit-item { min-height: 62px; }
  .screen-heading { height: 82px; }
  .screen-heading h2 { font-size: 3.45rem; }
  .menu-workspace,
  .location-workspace,
  .specials-track { top: calc(var(--header-h) + 112px); }
  .specials-track {
    grid-template-rows: auto minmax(0, 1fr) 96px;
    gap: 0.6rem;
  }
  .special-hero h3 { font-size: 4.6rem; }
  .special-hero p { font-size: 0.76rem; }
  .story-copy h2 { font-size: 4.2rem; }
  .story-food { height: 60vh; }
}

@media (max-height: 740px) and (max-width: 640px) {
  .home-media { height: 37%; }
  .home-copy { top: 34%; }
  .home-copy h1 { font-size: 3rem; }
  .home-copy > p { margin-top: 0.7rem; }
  .home-actions { margin-top: 0.7rem; }
  .home-meta { display: none; }
  .screen-heading h2 { font-size: 2.1rem; }
  .screen-heading p { display: none; }
  .menu-workspace,
  .location-workspace,
  .specials-track { top: calc(var(--header-h) + 84px); }
  .specials-track {
    grid-template-rows: auto minmax(0, 1fr) 84px;
    gap: 0.42rem;
  }
  .special-filter-row button {
    min-height: 28px;
    padding: 0.34rem 0.5rem;
  }
  .special-hero-copy { gap: 0.28rem; }
  .special-hero h3 { font-size: 2.05rem; }
  .special-hero p { display: none; }
  .special-meta span { padding: 0.3rem 0.42rem; }
  .special-actions .button { min-height: 30px; }
  .special-pick { flex-basis: 112px; }
  .menu-workspace { grid-template-rows: 36% 64%; }
  .menu-summary { display: none; }
  .dish-grid { padding-top: 0.42rem; }
  .location-workspace {
    grid-template-rows: auto minmax(190px, 0.75fr) minmax(190px, 0.95fr);
    gap: 0.45rem;
  }
  .map-title span,
  .map-scale { display: none; }
  .map-title,
  .map-current { padding: 0.38rem 0.48rem; }
  .location-detail h3 { font-size: 2rem; }
  .location-detail dl div { padding-top: 0.3rem; }
  .location-detail dd { font-size: 0.62rem; }
  .outlet-actions { gap: 0.45rem; }
  .outlet-actions .button { min-height: 32px; padding-inline: 0.58rem; }
  .story-copy h2 { font-size: 3.45rem; }
  .story-copy p { font-size: 0.7rem; }
  .story-copy { padding-top: clamp(4.4rem, 10dvh, 5.4rem); }
  .story-proof { margin-top: 0.65rem; padding: 0.48rem 0; }
  .story-proof strong { font-size: 0.64rem; }
  .story-proof small { font-size: 0.44rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
