:root {
  color-scheme: dark;
  --black: #070504;
  --charcoal: #110d0b;
  --charcoal-2: #19110e;
  --cream: #fff2d2;
  --muted: #d8c8aa;
  --red: #9d090b;
  --red-deep: #650406;
  --yellow: #f6b021;
  --yellow-hot: #ffc64a;
  --line: rgba(255, 242, 210, 0.18);
  --line-red: rgba(218, 17, 20, 0.44);
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 9%, rgba(198, 38, 13, 0.22), transparent 520px),
    radial-gradient(circle at 8% 28%, rgba(246, 176, 33, 0.11), transparent 460px),
    linear-gradient(180deg, #070504 0%, #0d0807 48%, #070504 100%);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

body::before {
  z-index: -2;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 242, 210, 0.34) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(246, 176, 33, 0.32) 0 1px, transparent 1px);
  background-size: 174px 214px, 260px 240px;
}

body::after {
  z-index: -1;
  opacity: 0.15;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 6px),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 242, 210, 0.08) 49%, transparent 54%);
  mix-blend-mode: overlay;
}

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

picture {
  display: contents;
}

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

::selection {
  background: var(--yellow);
  color: #170a03;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 16px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 6px;
  color: #170a03;
  background: var(--yellow);
  font: 900 0.95rem var(--condensed);
  transform: translateY(-160%);
  transition: transform 260ms var(--ease);
}

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

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display .word {
  display: inline-block;
  white-space: nowrap;
}

.display .char {
  display: inline-block;
  color: var(--cream);
  text-shadow:
    2px 0 0 rgba(113, 6, 7, 0.55),
    0 18px 32px rgba(0, 0, 0, 0.46);
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0;
  color: var(--yellow);
  font: 900 1.18rem var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 54% 44%, rgba(246, 176, 33, 0.16), transparent 300px),
    radial-gradient(circle at 46% 58%, rgba(157, 9, 11, 0.48), transparent 360px),
    var(--black);
  animation: preloader-fallback 0.34s var(--ease) 1.15s forwards;
}

.loader-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px 22px;
  align-items: center;
  width: min(100%, 430px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(246, 176, 33, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 9, 11, 0.66), rgba(7, 5, 4, 0.92) 58%),
    rgba(7, 5, 4, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.09),
    0 30px 86px rgba(0, 0, 0, 0.44);
}

.loader-card::before {
  position: absolute;
  right: -8px;
  bottom: -18px;
  content: "HOT";
  color: rgba(255, 242, 210, 0.08);
  font: 400 8rem/0.8 var(--display);
  pointer-events: none;
}

.loader-card img {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.loader-copy {
  position: relative;
  z-index: 1;
}

.loader-copy strong {
  display: block;
  color: var(--cream);
  font: 400 5.3rem/0.82 var(--display);
  text-transform: uppercase;
}

.loader-copy span {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font: 900 1rem var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-bar {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 242, 210, 0.12);
  transform-origin: left;
}

.loader-bar::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--yellow), #ff661f, var(--yellow));
  transform: translateX(-72%);
  animation: loader-sweep 1.05s var(--ease) infinite;
}

.gsap-ready .preloader {
  animation: none;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 320ms var(--ease),
    visibility 320ms var(--ease);
}

@keyframes preloader-fallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes loader-sweep {
  to {
    transform: translateX(72%);
  }
}

.cursor-fire {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(246, 86, 18, 0.14), transparent 64%);
  filter: blur(18px);
  transform: translate3d(-50%, -50%, 0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), #ff5a12, var(--red));
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 92dvh;
  padding: 32px 40px 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 5, 4, 0.99) 0%, rgba(7, 5, 4, 0.95) 38%, rgba(7, 5, 4, 0.74) 66%, rgba(7, 5, 4, 0.58) 100%),
    radial-gradient(circle at 66% 54%, rgba(246, 88, 13, 0.16), transparent 430px),
    radial-gradient(circle at 54% 92%, rgba(246, 176, 33, 0.11), transparent 480px);
}

.hero::after {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 176, 33, 0.68), rgba(157, 9, 11, 0.68), transparent);
}

.hero-flames {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -150px;
  z-index: -1;
  width: 100%;
  height: 500px;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
  transform: none;
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.82) 76%, rgba(0, 0, 0, 1) 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 15%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.78) 85%, transparent 100%);
  mask-image:
    linear-gradient(180deg, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.82) 76%, rgba(0, 0, 0, 1) 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 15%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.78) 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.site-header {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.52));
}

.logo-link img {
  width: 100%;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 8px 8px 8px 30px;
  border: 1px solid rgba(255, 242, 210, 0.08);
  border-radius: 999px;
  background: rgba(7, 5, 4, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.site-nav a {
  font: 900 1.06rem var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.nav-cta {
  min-width: 126px;
  padding: 14px 26px;
  border-radius: 999px;
  color: #160a03;
  background: var(--yellow);
  text-align: center;
  box-shadow: 0 18px 42px rgba(246, 176, 33, 0.24);
}

.nav-toggle {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 1360px);
  margin: 48px auto 0;
}

.hero-copy {
  max-width: 610px;
}

.hero-title {
  max-width: 10ch;
  margin-top: 14px;
  font-size: 9.2rem;
}

.hero-title .word {
  display: block;
}

.hero-sub {
  max-width: 34rem;
  margin: 26px 0 0;
  color: #f4e7cc;
  font-size: 1.34rem;
  line-height: 1.48;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 28px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  overflow: hidden;
  font: 900 1.12rem var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    background 280ms var(--ease),
    color 280ms var(--ease);
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(112deg, transparent 0 32%, rgba(255, 255, 255, 0.36) 48%, transparent 66% 100%);
  transform: translateX(-130%);
  transition:
    opacity 200ms var(--ease),
    transform 700ms var(--ease);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(22, 10, 3, 0.12);
  transition: transform 260ms var(--ease);
}

.btn:hover span {
  transform: translate(3px, -2px);
}

.btn-primary {
  color: #160a03;
  background: var(--yellow);
  box-shadow: 0 22px 48px rgba(246, 176, 33, 0.24);
}

.btn-outline {
  color: var(--cream);
  background: rgba(7, 5, 4, 0.66);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.glovo:focus-visible,
.contact-card a:focus-visible,
.reviews-score:focus-visible,
.map-link:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(246, 176, 33, 0.48);
  outline-offset: 4px;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.product-glow {
  position: absolute;
  inset: 4% 4% -2% 0;
  z-index: 1;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(ellipse at 48% 44%, rgba(246, 176, 33, 0.28), transparent 38%),
    radial-gradient(ellipse at 46% 56%, rgba(246, 88, 13, 0.34), transparent 54%),
    radial-gradient(ellipse at 50% 68%, rgba(157, 9, 11, 0.46), transparent 68%);
  opacity: 0.96;
  filter: blur(22px);
  transform: translate3d(-2%, 4%, 0) scale(0.94);
}

.hero-product img {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter:
    saturate(1.16)
    contrast(1.08)
    drop-shadow(-30px 42px 44px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 66px rgba(246, 88, 13, 0.28))
    drop-shadow(0 0 28px rgba(246, 176, 33, 0.18));
  transform: rotate(-1deg);
}

.price-burst {
  position: absolute;
  right: 4%;
  top: 10%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  color: #170a03;
  background: var(--yellow);
  font: 900 2.25rem var(--condensed);
  text-transform: uppercase;
  box-shadow: 0 22px 58px rgba(246, 176, 33, 0.3);
  transform: rotate(5deg);
}

.proof {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1360px);
  margin: 20px auto 0;
  border: 1px solid var(--line-red);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(25, 17, 14, 0.82), rgba(9, 6, 5, 0.76)),
    rgba(7, 5, 4, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.34);
}

.proof-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px 28px;
  border-right: 1px solid var(--line-red);
  transition:
    background 280ms var(--ease),
    transform 280ms var(--ease);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item:hover {
  background: rgba(157, 9, 11, 0.18);
  transform: translateY(-2px);
}

.proof strong {
  color: var(--cream);
  font: 400 4.4rem/0.84 var(--display);
  text-transform: uppercase;
}

.proof span {
  color: var(--muted);
  font: 900 1.02rem var(--condensed);
  text-transform: uppercase;
}

.proof-hot strong,
.proof-hot span {
  color: var(--yellow);
}

.menu-section,
.ingredients,
.location-section,
.reviews-section,
.order {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.menu-section {
  position: relative;
  padding: 92px 0 82px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 11ch;
  font-size: 7.8rem;
}

.section-heading p:last-child {
  max-width: 48rem;
  margin: 0;
  color: #eadcc2;
  font-size: 1.18rem;
  line-height: 1.5;
}

.section-heading.compact {
  max-width: 980px;
}

.section-heading.compact h2 {
  max-width: 12ch;
}

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

.menu-feature,
.sides-panel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(246, 176, 33, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(246, 176, 33, 0.12), transparent 230px),
    linear-gradient(145deg, rgba(157, 9, 11, 0.98), rgba(82, 4, 5, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.32);
}

.menu-feature {
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px 30px 28px;
}

.menu-feature-primary {
  grid-column: span 5;
}

.menu-feature::before,
.sides-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(255, 242, 210, 0.14) 52% 62%, transparent 62%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.2), transparent 170px);
}

.menu-feature::after {
  position: absolute;
  right: -52px;
  top: 28px;
  bottom: 28px;
  width: 148px;
  content: "MENU";
  color: rgba(255, 242, 210, 0.12);
  font: 400 9rem/0.8 var(--display);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.menu-copy {
  position: relative;
  z-index: 2;
  max-width: 31rem;
}

.script-label {
  display: block;
  color: var(--cream);
  font: italic 800 2rem/1 var(--condensed);
  transform: rotate(-2deg);
}

.menu-feature h3,
.sides-panel h3 {
  margin: 0;
  color: var(--cream);
  font: 400 5.4rem/0.88 var(--display);
  text-transform: uppercase;
  text-shadow: 2px 0 0 rgba(0, 0, 0, 0.3);
}

.menu-copy p {
  max-width: 32rem;
  margin: 16px 0 0;
  color: #fff4dd;
  font-size: 1.06rem;
  line-height: 1.44;
}

.menu-feature img {
  position: relative;
  left: 0;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: min(100%, 470px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 26px auto 18px;
  filter: saturate(1.16) contrast(1.08) drop-shadow(0 30px 34px rgba(0, 0, 0, 0.36));
  transition:
    transform 520ms var(--ease),
    filter 520ms var(--ease);
}

.menu-feature-primary img {
  width: min(104%, 540px);
}

.menu-feature-bacon img {
  left: -36px;
  width: min(124%, 580px);
}

.menu-feature:hover img {
  transform: translateY(-8px) scale(1.04);
  filter: saturate(1.22) contrast(1.1) drop-shadow(0 38px 46px rgba(0, 0, 0, 0.44));
}

.price-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.price-list span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
  min-height: 52px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 242, 210, 0.18);
  color: var(--cream);
  font: 400 4.1rem/0.8 var(--display);
}

.price-list b {
  color: var(--yellow);
  font: 900 1.5rem var(--condensed);
}

.sides-panel {
  grid-column: span 3;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  padding: 34px 28px 28px;
  background:
    radial-gradient(circle at 64% 42%, rgba(246, 176, 33, 0.18), transparent 230px),
    linear-gradient(180deg, #1c1110, #070504 54%, #130b09);
}

.sides-panel h3 {
  margin-top: 10px;
  font-size: 3.8rem;
}

.sides-panel img {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 350px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: saturate(1.16) contrast(1.08) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.42));
}

.sides-panel dl {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 0;
}

.sides-panel dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 242, 210, 0.16);
}

.sides-panel dt,
.sides-panel dd {
  margin: 0;
  font: 900 1.5rem var(--condensed);
  text-transform: uppercase;
}

.sides-panel dd {
  color: var(--yellow);
}

.sides-panel .btn {
  width: 100%;
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  gap: 72px;
  align-items: center;
  padding: 84px 0 92px;
}

.ingredient-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050403;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
}

.ingredient-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 5, 4, 0.52) 100%),
    linear-gradient(90deg, rgba(7, 5, 4, 0.34), transparent 34%);
}

.ingredient-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.ingredients-copy h2 {
  max-width: 10ch;
  margin-top: 14px;
  font-size: 7rem;
}

.ingredients-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 28px 0 30px;
  color: #eadcc2;
  font-size: 1.18rem;
  line-height: 1.58;
}

.ingredients ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ingredients li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  border: 1px solid rgba(246, 176, 33, 0.22);
  border-radius: 8px;
  background: rgba(255, 242, 210, 0.035);
  color: #f7ead1;
  font-size: 1.05rem;
}

.ingredients li span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #160a03;
  background: var(--yellow);
  font: 900 1rem var(--condensed);
}

.location-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  padding: 62px 0 86px;
}

.location-copy {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(246, 176, 33, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 176, 33, 0.12), transparent 250px),
    linear-gradient(145deg, rgba(157, 9, 11, 0.92), rgba(67, 4, 5, 0.86) 45%, rgba(10, 7, 6, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.08),
    0 32px 86px rgba(0, 0, 0, 0.34);
}

.location-copy::before {
  position: absolute;
  right: -26px;
  top: 28px;
  content: "ŁÓDŹ";
  color: rgba(255, 242, 210, 0.1);
  font: 400 10.5rem/0.78 var(--display);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.location-copy .eyebrow,
.location-copy h2,
.location-copy > p,
.location-facts,
.hours-board,
.location-actions {
  position: relative;
  z-index: 2;
}

.location-copy h2 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: 6.1rem;
}

.location-copy > p:not(.eyebrow):not(.hours-note) {
  max-width: 39rem;
  margin: 20px 0 0;
  color: #fff4dd;
  font-size: 1.08rem;
  line-height: 1.5;
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.location-facts article {
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 242, 210, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 176, 33, 0.1), transparent 80%),
    rgba(7, 5, 4, 0.26);
}

.location-facts span,
.hours-board span {
  display: block;
  color: var(--yellow);
  font: 900 0.92rem var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font: 400 1.95rem/0.86 var(--display);
  text-transform: uppercase;
}

.location-facts p {
  margin: 8px 0 0;
  color: #eadcc2;
  font-size: 0.88rem;
  line-height: 1.36;
}

.hours-board {
  display: grid;
  margin-top: 16px;
  border: 1px solid rgba(255, 242, 210, 0.14);
  border-radius: 8px;
  background: rgba(7, 5, 4, 0.34);
}

.hours-board div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(255, 242, 210, 0.12);
}

.hours-board div:last-child {
  border-bottom: 0;
}

.hours-board strong {
  color: var(--cream);
  font: 900 1rem var(--condensed);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.hours-note {
  max-width: 35rem;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.location-actions {
  margin-top: 22px;
}

.map-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(246, 176, 33, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 32%, rgba(246, 176, 33, 0.14), transparent 300px),
    #090604;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.08),
    0 32px 86px rgba(0, 0, 0, 0.34);
}

.map-shell::before {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  content: "Piotrkowska 146 / Łódź";
  padding: 12px 14px;
  border: 1px solid rgba(255, 242, 210, 0.16);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(7, 5, 4, 0.82);
  font: 900 1rem var(--condensed);
  text-transform: uppercase;
  pointer-events: none;
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  filter: saturate(0.74) contrast(1.08) brightness(0.84);
}

.map-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px 0 22px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  color: #160a03;
  background: var(--yellow);
  font: 900 1.06rem var(--condensed);
  text-transform: uppercase;
  box-shadow: 0 22px 48px rgba(246, 176, 33, 0.26);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.map-link span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(22, 10, 3, 0.12);
  transition: transform 260ms var(--ease);
}

.map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(246, 176, 33, 0.34);
}

.map-link:hover span {
  transform: translate(3px, -2px);
}

.reviews-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
  padding: 20px 0 92px;
}

.reviews-intro,
.review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 176, 33, 0.26);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.08),
    0 30px 76px rgba(0, 0, 0, 0.32);
}

.reviews-intro {
  min-height: 100%;
  padding: 42px 38px;
  background:
    radial-gradient(circle at 18% 14%, rgba(246, 176, 33, 0.16), transparent 250px),
    linear-gradient(145deg, rgba(157, 9, 11, 0.9), rgba(68, 4, 5, 0.82) 48%, rgba(7, 5, 4, 0.92));
}

.reviews-intro::before {
  position: absolute;
  right: -24px;
  bottom: 24px;
  content: "GOOGLE";
  color: rgba(255, 242, 210, 0.08);
  font: 400 9.6rem/0.8 var(--display);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.reviews-intro .eyebrow,
.reviews-intro h2,
.reviews-intro > p,
.reviews-score {
  position: relative;
  z-index: 2;
}

.reviews-intro h2 {
  max-width: 9.5ch;
  margin-top: 14px;
  font-size: 6.4rem;
}

.reviews-intro > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 22px 0 0;
  color: #fff4dd;
  font-size: 1.08rem;
  line-height: 1.5;
}

.reviews-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  width: fit-content;
  margin-top: 32px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 242, 210, 0.15);
  border-radius: 8px;
  background: rgba(7, 5, 4, 0.38);
  color: inherit;
  text-decoration: none;
  transition:
    transform 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
}

.reviews-score:hover {
  border-color: rgba(246, 176, 33, 0.38);
  background: rgba(7, 5, 4, 0.5);
  transform: translateY(-3px);
}

.reviews-score > span {
  color: var(--yellow);
  font: 400 4.8rem/0.78 var(--display);
  text-transform: uppercase;
}

.reviews-stars-meter {
  position: relative;
  display: block;
  width: max-content;
  color: rgba(246, 176, 33, 0.26);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.reviews-stars-meter::before,
.reviews-stars-meter::after {
  content: "★★★★★";
}

.reviews-stars-meter::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 94%;
  overflow: hidden;
  color: var(--yellow);
}

.reviews-score small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font: 900 0.86rem var(--condensed);
  text-transform: uppercase;
}

.reviews-score em {
  display: block;
  margin-top: 8px;
  color: #fff4dd;
  font: 900 0.92rem var(--condensed);
  font-style: normal;
  text-transform: uppercase;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 176, 33, 0.12), transparent 220px),
    linear-gradient(145deg, rgba(17, 10, 7, 0.96), rgba(7, 5, 4, 0.92));
}

.review-card-wide {
  grid-column: 1 / -1;
  min-height: 300px;
  background:
    radial-gradient(circle at 92% 16%, rgba(246, 176, 33, 0.16), transparent 280px),
    linear-gradient(135deg, rgba(126, 7, 8, 0.94), rgba(25, 10, 7, 0.94) 54%, rgba(7, 5, 4, 0.96));
}

.review-card::before {
  position: absolute;
  right: -58px;
  bottom: -112px;
  width: 208px;
  height: 208px;
  border-radius: 50%;
  background: rgba(246, 176, 33, 0.13);
  content: "";
  pointer-events: none;
}

.review-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-stars {
  color: var(--yellow);
  font: 900 1.05rem/1 var(--condensed);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.review-top small {
  color: var(--muted);
  font: 900 0.92rem var(--condensed);
  text-transform: uppercase;
  white-space: nowrap;
}

.review-card blockquote {
  position: relative;
  z-index: 2;
  margin: 30px 0 0;
  color: #fff4dd;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.5;
}

.review-card blockquote::before {
  position: absolute;
  left: -8px;
  top: -42px;
  content: "“";
  color: rgba(246, 176, 33, 0.22);
  font: 400 6rem/1 var(--display);
  pointer-events: none;
}

.review-card cite {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 24px;
  color: var(--yellow);
  font: 900 0.95rem var(--condensed);
  font-style: normal;
  text-transform: uppercase;
}

.order {
  padding-bottom: 34px;
}

.order-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(620px, 1.24fr);
  gap: 20px;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 210, 0.18);
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 56% 34%, rgba(246, 176, 33, 0.12), transparent 380px),
    linear-gradient(90deg, rgba(7, 5, 4, 0.96), rgba(7, 5, 4, 0.58)),
    rgba(12, 9, 7, 0.82);
}

.order-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px 72px;
}

.order-copy h2 {
  max-width: 9ch;
  margin-top: 12px;
  font-size: 7rem;
}

.order-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 24px 0 0;
  color: #eadcc2;
  font-size: 1.16rem;
  line-height: 1.52;
}

.fries-scene {
  position: relative;
  z-index: 1;
  min-height: 720px;
  overflow: visible;
}

.fries-scene::before {
  position: absolute;
  inset: 13% 2% 5% 0;
  z-index: 0;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 54% 55%, rgba(246, 176, 33, 0.24), transparent 54%),
    radial-gradient(ellipse at 48% 68%, rgba(157, 9, 11, 0.28), transparent 62%);
  filter: blur(10px);
  opacity: 0.86;
}

.fries-scene img {
  position: absolute;
  right: -7%;
  bottom: -6%;
  z-index: 2;
  width: min(118%, 980px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter:
    saturate(1.15)
    contrast(1.06)
    drop-shadow(-24px 44px 44px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 34px rgba(246, 176, 33, 0.12));
}

.glovo {
  position: absolute;
  right: 46px;
  bottom: 46px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 262px;
  min-height: 76px;
  padding: 0 16px 0 26px;
  border: 2px solid rgba(255, 242, 210, 0.18);
  border-radius: 8px;
  color: #170a03;
  background: var(--yellow);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 24px 70px rgba(246, 176, 33, 0.28);
  transition:
    transform 360ms var(--ease),
    box-shadow 360ms var(--ease);
}

.glovo span,
.glovo strong {
  display: inline-block;
  font: 400 2.35rem/0.9 var(--display);
}

.glovo small {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 10, 3, 0.1);
  font: 900 1.5rem var(--condensed);
  transition: transform 260ms var(--ease);
}

.glovo:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 34px 92px rgba(246, 176, 33, 0.36);
}

.glovo:hover small {
  transform: translate(3px, -2px);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 242, 210, 0.18);
  border-top: 0;
  background: rgba(12, 9, 7, 0.82);
}

.contact-card {
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(255, 242, 210, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 176, 33, 0.08), transparent 42%),
    rgba(255, 242, 210, 0.025);
}

.contact-card strong {
  display: block;
  color: var(--yellow);
  font: 900 1.22rem var(--condensed);
  text-transform: uppercase;
}

.contact-card p {
  max-width: 25rem;
  margin: 12px 0 18px;
  color: #eadcc2;
  font-size: 1.06rem;
  line-height: 1.48;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff4dd;
  font: 900 1rem var(--condensed);
  text-transform: uppercase;
}

.contact-card a::after,
.footer-links a::after,
.footer-detail a::after {
  content: "→";
  color: var(--yellow);
  transition: transform 240ms var(--ease);
}

.contact-card a:hover::after,
.footer-links a:hover::after,
.footer-detail a:hover::after {
  transform: translateX(4px);
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(520px, 0.95fr);
  gap: 34px;
  align-items: stretch;
  overflow: hidden;
  padding: 54px 54px 42px;
  border: 1px solid rgba(255, 242, 210, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(157, 9, 11, 0.36), transparent 360px),
    radial-gradient(circle at 88% 84%, rgba(246, 176, 33, 0.13), transparent 420px),
    linear-gradient(135deg, rgba(15, 9, 7, 0.98), rgba(7, 5, 4, 0.92) 48%, rgba(89, 5, 7, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 210, 0.08),
    0 34px 86px rgba(0, 0, 0, 0.34);
}

.footer::before {
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: 0;
  content: "MIAZGA";
  color: rgba(255, 242, 210, 0.06);
  font: 400 15rem/0.8 var(--display);
  text-transform: uppercase;
  pointer-events: none;
}

.footer::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(255, 242, 210, 0.06) 52% 53%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(255, 242, 210, 0.045) 0 1px, transparent 1px 116px);
  opacity: 0.46;
}

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

.footer-brand {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 176, 33, 0.14), transparent 64%),
    rgba(7, 5, 4, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 242, 210, 0.13),
    0 26px 58px rgba(0, 0, 0, 0.46);
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.footer-mark:hover {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow:
    inset 0 0 0 1px rgba(246, 176, 33, 0.24),
    0 34px 76px rgba(0, 0, 0, 0.56);
}

.footer-mark img {
  width: 116px;
  border-radius: 50%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.footer-brand-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--cream);
  font: 400 7.6rem/0.82 var(--display);
  text-transform: uppercase;
  text-shadow:
    2px 0 0 rgba(113, 6, 7, 0.55),
    0 18px 32px rgba(0, 0, 0, 0.46);
}

.footer-brand-copy p:not(.eyebrow),
.footer-detail p,
.copy {
  margin: 0;
  color: #e5d6bd;
  font-size: 1rem;
  line-height: 1.55;
}

.footer-brand-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 18px;
  font-size: 1.08rem;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.footer-detail {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 242, 210, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 176, 33, 0.09), transparent 44%),
    rgba(255, 242, 210, 0.03);
}

.footer-detail span {
  display: block;
  color: var(--yellow);
  font: 900 1rem var(--condensed);
  text-transform: uppercase;
}

.footer-detail strong {
  display: block;
  margin-top: 16px;
  color: var(--cream);
  font: 400 3.2rem/0.86 var(--display);
  text-transform: uppercase;
}

.footer-detail p {
  margin-top: 14px;
}

.footer-detail a,
.footer-links a,
.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff4dd;
  font: 900 1rem var(--condensed);
  text-transform: uppercase;
  transition:
    color 240ms var(--ease),
    transform 240ms var(--ease);
}

.footer-detail a {
  width: max-content;
  margin-top: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 242, 210, 0.14);
}

.footer-links a {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 242, 210, 0.14);
  border-radius: 8px;
  background: rgba(7, 5, 4, 0.34);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-actions a {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 242, 210, 0.14);
  border-radius: 8px;
  background: rgba(7, 5, 4, 0.34);
}

.footer-cta {
  color: #170a03 !important;
  background: var(--yellow) !important;
  box-shadow: 0 20px 48px rgba(246, 176, 33, 0.22);
}

.footer-links a:hover,
.footer-detail a:hover,
.footer-actions a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.footer-cta:hover {
  color: #170a03 !important;
  transform: translateY(-3px);
}

.reveal {
  will-change: transform, opacity;
}

.performance-mode .reveal,
.performance-mode .display .char {
  will-change: auto;
}

.performance-mode.light-motion-pending :where(
  .reveal,
  .section-heading,
  .proof,
  .proof-item,
  .ingredients li,
  .location-facts article,
  .hours-board div,
  .reviews-score,
  .map-link,
  .order-copy,
  .fries-scene,
  .hero .hero-actions .btn,
  .location-actions .btn,
  .glovo,
  .contact-card,
  .footer-brand,
  .footer-detail,
  .footer-links a,
  .footer-actions a
) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
  transition-delay: var(--mobile-delay, 0ms);
}

.performance-mode.light-motion-pending .is-visible,
.performance-mode.light-motion-pending .hero .hero-actions .btn.is-visible,
.performance-mode.light-motion-pending .location-actions .btn.is-visible,
.performance-mode.light-motion-pending .footer-links a.is-visible,
.performance-mode.light-motion-pending .footer-actions a.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.performance-mode.motion-soft.light-motion-pending :where(
  .reveal,
  .section-heading,
  .proof,
  .proof-item,
  .ingredients li,
  .location-facts article,
  .hours-board div,
  .reviews-score,
  .map-link,
  .order-copy,
  .fries-scene,
  .hero .hero-actions .btn,
  .location-actions .btn,
  .glovo,
  .contact-card,
  .footer-brand,
  .footer-detail,
  .footer-links a,
  .footer-actions a
) {
  transform: translate3d(0, 10px, 0);
  transition-duration: 360ms;
}

@supports (content-visibility: auto) {
  .menu-section,
  .ingredients,
  .location-section,
  .reviews-section,
  .order {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

@media (max-width: 1180px) {
  .hero {
    padding: 26px 24px 36px;
  }

  .site-header {
    align-items: center;
  }

  .logo-link {
    width: 108px;
    height: 108px;
  }

  .nav-toggle {
    position: relative;
    z-index: 24;
    display: block;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #170a03;
    background: var(--yellow);
    box-shadow: 0 16px 36px rgba(246, 176, 33, 0.26);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -5px);
    transform-origin: 50% 50%;
    transition:
      transform 260ms var(--ease),
      opacity 260ms var(--ease);
  }

  .nav-toggle span:last-child {
    transform: translate(-50%, 5px);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 52% 58%, rgba(157, 9, 11, 0.2), transparent 280px),
      rgba(7, 5, 4, 0.96);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 280ms var(--ease),
      transform 280ms var(--ease);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 2.8rem;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 320ms var(--ease),
      transform 320ms var(--ease),
      color 260ms var(--ease);
  }

  body.nav-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .site-nav a:nth-child(1) {
    transition-delay: 70ms;
  }

  body.nav-open .site-nav a:nth-child(2) {
    transition-delay: 110ms;
  }

  body.nav-open .site-nav a:nth-child(3) {
    transition-delay: 150ms;
  }

  body.nav-open .site-nav a:nth-child(4) {
    transition-delay: 190ms;
  }

  body.nav-open .site-nav a:nth-child(5) {
    transition-delay: 230ms;
  }

  .nav-cta {
    min-width: 220px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 46px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .hero-product {
    min-height: 430px;
    margin-top: -28px;
  }

  .hero-flames {
    left: 0;
    right: 0;
    top: auto;
    bottom: -124px;
    width: 100%;
    height: 430px;
    opacity: 0.24;
    object-position: center bottom;
    transform: none;
  }

  .product-glow {
    inset: 6% 9% -4%;
    opacity: 0.86;
    filter: blur(18px);
    transform: translate3d(0, 5%, 0) scale(0.92);
  }

  .hero-product img {
    width: min(100%, 720px);
  }

  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-red);
  }

  .menu-section,
  .ingredients,
  .location-section,
  .reviews-section,
  .order {
    width: calc(100% - 28px);
  }

  .section-heading h2,
  .ingredients-copy h2,
  .location-copy h2,
  .reviews-intro h2,
  .order-copy h2 {
    font-size: 5.9rem;
  }

  .menu-board,
  .ingredients,
  .location-section,
  .reviews-section,
  .order-panel,
  .contact-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .menu-feature,
  .menu-feature-primary,
  .sides-panel {
    grid-column: auto;
    min-height: 580px;
  }

  .menu-feature-bacon img {
    left: -16px;
    width: min(112%, 560px);
  }

  .sides-panel {
    min-height: 520px;
  }

  .location-copy {
    min-height: 0;
    padding: 38px 34px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 520px;
  }

  .reviews-intro {
    min-height: 0;
  }

  .order-copy {
    padding: 44px 34px 0;
  }

  .order-panel {
    min-height: auto;
  }

  .fries-scene {
    min-height: 540px;
    margin-top: -28px;
  }

  .fries-scene img {
    right: -8%;
    bottom: -8%;
    width: min(116%, 860px);
    height: auto;
  }

  .glovo {
    right: 34px;
    bottom: 34px;
    min-width: 240px;
  }

  .footer {
    gap: 24px;
    padding: 44px 34px 38px;
  }

  .footer::before {
    font-size: 11rem;
  }

  .footer-brand {
    max-width: 680px;
  }

  .footer-brand-copy strong {
    font-size: 6.2rem;
  }

  .footer-details {
    max-width: 860px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  body::before {
    opacity: 0.08;
  }

  body::after {
    display: none;
  }

  .scroll-progress,
  .cursor-fire {
    display: none;
  }

  .loader-card {
    grid-template-columns: 82px 1fr;
    gap: 14px 16px;
    padding: 16px;
  }

  .loader-card img {
    width: 82px;
    height: 82px;
  }

  .loader-copy strong {
    font-size: 4rem;
  }

  .loader-copy span {
    font-size: 0.94rem;
  }

  .hero {
    min-height: auto;
    padding: 22px 18px 30px;
  }

  .logo-link {
    width: 88px;
    height: 88px;
  }

  .hero-grid {
    margin-top: 38px;
  }

  .hero-title {
    font-size: 4.8rem;
  }

  .hero-sub {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .btn {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .hero-product {
    min-height: 330px;
    margin: 8px 0 0;
  }

  .performance-mode.light-motion-pending .hero-title .char {
    opacity: 0;
    transform: translate3d(0, 22px, 0) rotate(1.5deg);
  }

  .performance-mode.motion-soft.light-motion-pending .hero-title .char {
    transform: translate3d(0, 10px, 0) rotate(0.75deg);
  }

  .performance-mode.light-motion-pending.light-motion-live .hero-title .char {
    animation: mobile-title-in 460ms var(--ease) forwards;
    animation-delay: calc(100ms + (var(--char-index) * 12ms));
  }

  .performance-mode.motion-soft.light-motion-pending.light-motion-live .hero-title .char {
    animation-duration: 340ms;
    animation-delay: calc(70ms + (var(--char-index) * 8ms));
  }

  .performance-mode.light-motion-pending .hero-product.is-visible img {
    animation: mobile-product-in 620ms var(--ease) 90ms both;
  }

  .performance-mode.motion-soft.light-motion-pending .hero-product.is-visible img {
    animation-duration: 420ms;
  }

  .performance-mode.light-motion-pending .hero .hero-actions .btn.is-visible,
  .performance-mode.light-motion-pending .location-actions .btn.is-visible,
  .performance-mode.light-motion-pending .glovo.is-visible,
  .performance-mode.light-motion-pending .footer-cta.is-visible {
    animation: mobile-cta-in 560ms var(--ease) both;
    animation-delay: var(--mobile-delay, 0ms);
  }

  .performance-mode.motion-soft.light-motion-pending .hero .hero-actions .btn.is-visible,
  .performance-mode.motion-soft.light-motion-pending .location-actions .btn.is-visible,
  .performance-mode.motion-soft.light-motion-pending .glovo.is-visible,
  .performance-mode.motion-soft.light-motion-pending .footer-cta.is-visible {
    animation-duration: 380ms;
  }

  .hero-product img {
    width: min(96%, 382px);
    filter: saturate(1.1) contrast(1.04) drop-shadow(0 24px 28px rgba(0, 0, 0, 0.38));
  }

  .price-burst {
    right: 16%;
    top: 2%;
    width: 96px;
    height: 96px;
    font-size: 1.6rem;
  }

  .hero-flames {
    left: 0;
    right: 0;
    top: auto;
    bottom: -96px;
    width: 100%;
    height: 330px;
    opacity: 0.2;
    object-position: center bottom;
    filter: saturate(1.02) contrast(1) brightness(0.78);
    transform: none;
    mix-blend-mode: normal;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.9) 100%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.9) 100%);
  }

  .product-glow {
    display: block;
    inset: 12% 12% 0;
    opacity: 0.5;
    filter: blur(14px);
    transform: translate3d(0, 7%, 0) scale(0.92);
  }

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

  .proof-item {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line-red);
  }

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

  .proof strong {
    font-size: 3.5rem;
  }

  .menu-section,
  .ingredients,
  .location-section,
  .reviews-section {
    padding: 56px 0;
  }

  .section-heading h2,
  .ingredients-copy h2,
  .location-copy h2,
  .reviews-intro h2,
  .order-copy h2 {
    font-size: 4.2rem;
  }

  .section-heading p:last-child,
  .ingredients-copy > p:not(.eyebrow),
  .location-copy > p:not(.eyebrow):not(.hours-note),
  .reviews-intro > p:not(.eyebrow),
  .order-copy > p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .menu-feature,
  .sides-panel {
    min-height: 0;
    padding: 26px 18px 22px;
  }

  .menu-feature h3 {
    font-size: 4.1rem;
  }

  .sides-panel h3 {
    font-size: 3.2rem;
  }

  .menu-feature img,
  .menu-feature-primary img,
  .menu-feature-bacon img,
  .sides-panel img {
    width: min(100%, 340px);
    max-width: 100%;
    filter: saturate(1.08) contrast(1.04) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.34));
  }

  .menu-feature-bacon img {
    left: -7px;
  }

  .price-list span {
    font-size: 3.3rem;
  }

  .ingredients {
    gap: 34px;
  }

  .ingredients ul {
    grid-template-columns: 1fr;
  }

  .location-copy {
    padding: 28px 18px 24px;
  }

  .location-copy::before {
    right: -26px;
    top: 18px;
    font-size: 6rem;
  }

  .location-facts {
    grid-template-columns: 1fr;
  }

  .location-facts article {
    min-height: 0;
  }

  .location-facts strong {
    font-size: 2.15rem;
  }

  .hours-board div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 10px 14px 12px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 430px;
  }

  .map-shell iframe {
    filter: none;
  }

  .map-shell::before {
    left: 14px;
    top: 14px;
    font-size: 0.82rem;
  }

  .map-link {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .location-actions {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .location-actions .btn {
    justify-content: center;
  }

  .reviews-intro {
    padding: 28px 18px 24px;
  }

  .reviews-intro::before {
    right: -18px;
    bottom: 18px;
    font-size: 6rem;
  }

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

  .review-card,
  .review-card-wide {
    min-height: 0;
    padding: 22px 18px;
  }

  .reviews-score {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .reviews-score > span {
    font-size: 4.1rem;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .review-stars {
    letter-spacing: 0.08em;
  }

  .review-card blockquote {
    margin-top: 24px;
    font-size: 0.99rem;
    line-height: 1.48;
  }

  .order-copy {
    z-index: 4;
    padding: 34px 22px 14px;
  }

  .fries-scene {
    min-height: 440px;
    margin-top: 8px;
  }

  .fries-scene img {
    right: -29%;
    bottom: -9%;
    width: 146%;
    height: auto;
    filter: saturate(1.08) contrast(1.03) drop-shadow(0 24px 28px rgba(0, 0, 0, 0.36));
  }

  .glovo {
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: auto;
    min-width: 0;
    min-height: 64px;
    padding: 0 12px 0 18px;
  }

  .glovo span,
  .glovo strong {
    font-size: 2rem;
  }

  .glovo small {
    width: 34px;
    height: 34px;
  }

  .contact-card {
    min-height: 0;
    padding: 26px 20px 30px;
  }

  .contact-strip {
    padding: 12px 12px 36px;
  }

  .footer {
    padding: 34px 22px;
  }

  .footer::before {
    right: -24px;
    bottom: -18px;
    font-size: 7.2rem;
  }

  .footer::after {
    opacity: 0.28;
  }

  .footer-brand {
    grid-template-columns: 86px 1fr;
    gap: 16px;
    max-width: none;
  }

  .footer-mark {
    width: 86px;
    height: 86px;
  }

  .footer-mark img,
  .footer-brand img {
    width: 72px;
  }

  .footer-brand-copy .eyebrow {
    font-size: 0.98rem;
  }

  .footer-brand-copy strong {
    margin-top: 8px;
    font-size: 4.3rem;
  }

  .footer-brand-copy p:not(.eyebrow) {
    grid-column: 1 / -1;
    margin-top: 16px;
    font-size: 1rem;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-detail {
    min-height: 0;
    padding: 22px 18px;
  }

  .footer-detail strong {
    font-size: 2.55rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links a {
    justify-content: center;
    padding: 0 12px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .footer-actions {
    justify-content: stretch;
  }

  .footer-actions a {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding: 0 14px;
  }

  .footer-cta {
    flex-basis: 100%;
  }

  .copy {
    font-size: 0.92rem;
  }

  @keyframes mobile-title-in {
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(0deg);
    }
  }

  @keyframes mobile-product-in {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0) scale(0.975);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes mobile-cta-in {
    0% {
      opacity: 0;
      transform: translate3d(0, 12px, 0) scale(0.98);
    }

    70% {
      opacity: 1;
      transform: translate3d(0, -2px, 0) scale(1.01);
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
}

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

  html:not(.performance-mode) *,
  html:not(.performance-mode) *::before,
  html:not(.performance-mode) *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .performance-mode .cursor-fire {
    display: none;
  }
}
