:root {
  --red: #d61712;
  --red-deep: #850906;
  --yellow: #f4b71a;
  --yellow-light: #ffd44d;
  --ink: #17110f;
  --paper: #fff7e6;
  --cream: #ffe8a9;
  --green: #55b848;
  --white: #fffaf0;
  --shadow: 0 28px 70px rgba(23, 17, 15, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 60px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 12px 0 16px;
  color: var(--white);
  background: rgba(23, 17, 15, 0.42);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-order {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(23, 17, 15, 0.12);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-hero {
  height: 355vh;
  min-height: 2100px;
  background: var(--red);
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(67, 8, 6, 0.86) 0%, rgba(114, 12, 9, 0.24) 32%, rgba(46, 6, 5, 0.74) 100%),
    radial-gradient(circle at 51% 38%, rgba(255, 214, 74, 0.16), transparent 32%),
    url("assets/hero-red-background.jpg") center / cover no-repeat,
    linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
}

.hero-smoke {
  position: absolute;
  inset: -20% -14%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  filter: blur(20px);
  mix-blend-mode: screen;
}

.hero-smoke::before,
.hero-smoke::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Warm plumes rising up the LEFT and RIGHT edges, matching the image glow */
.hero-smoke::before {
  background:
    radial-gradient(42% 62% at 9% 74%, rgba(255, 196, 116, 0.16), transparent 62%),
    radial-gradient(34% 52% at 17% 44%, rgba(255, 142, 70, 0.11), transparent 64%),
    radial-gradient(28% 44% at 7% 20%, rgba(255, 224, 156, 0.08), transparent 62%),
    radial-gradient(42% 62% at 91% 72%, rgba(255, 196, 116, 0.16), transparent 62%),
    radial-gradient(34% 52% at 83% 42%, rgba(255, 142, 70, 0.11), transparent 64%),
    radial-gradient(28% 44% at 93% 18%, rgba(255, 224, 156, 0.08), transparent 62%);
  transform: translate3d(-3%, 1%, 0) scale(1.1);
  animation: smokeDrift 20s ease-in-out infinite alternate;
}

/* Plume rising directly behind the burger */
.hero-smoke::after {
  background:
    radial-gradient(38% 62% at 50% 58%, rgba(255, 214, 150, 0.18), transparent 58%),
    radial-gradient(30% 50% at 55% 32%, rgba(255, 168, 92, 0.13), transparent 60%),
    radial-gradient(30% 48% at 45% 80%, rgba(255, 222, 160, 0.12), transparent 60%);
  opacity: 0.85;
  transform: translate3d(4%, -2%, 0) scale(1.18);
  animation: smokeRise 26s ease-in-out infinite alternate-reverse;
}

/* Image-sprite smoke that drifts up the left & right of the hero (JS-spawned) */
.hero-smoke-fx {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.smoke-puff {
  position: absolute;
  bottom: -170px;
  width: 240px;
  height: 240px;
  /* procedural warm smoke blob — no external image, always renders */
  background:
    radial-gradient(42% 46% at 44% 52%, rgba(255, 226, 182, 0.6), transparent 72%),
    radial-gradient(46% 42% at 60% 44%, rgba(255, 190, 122, 0.52), transparent 74%),
    radial-gradient(38% 44% at 50% 64%, rgba(255, 232, 198, 0.46), transparent 72%);
  pointer-events: none;
  opacity: 0;
  filter: blur(14px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: smokeRiseFx 9s linear forwards;
}

@keyframes smokeRiseFx {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.55) rotate(0deg);
  }

  12% {
    opacity: var(--smoke-opacity, 0.45);
  }

  68% {
    opacity: calc(var(--smoke-opacity, 0.45) * 0.55);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--smoke-drift, 30px), -640px, 0) scale(1.9)
      rotate(var(--smoke-spin, 40deg));
  }
}

.hero-canvas,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: saturate(1.08) contrast(1.03);
}

.hero-canvas {
  display: block;
}

.hero-fallback {
  opacity: 1;
}

.is-frame-ready .hero-fallback {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 17, 15, 0.72) 0%, rgba(23, 17, 15, 0.22) 34%, rgba(23, 17, 15, 0.06) 58%, rgba(23, 17, 15, 0.74) 100%),
    linear-gradient(180deg, rgba(23, 17, 15, 0.06) 0%, rgba(23, 17, 15, 0.04) 54%, rgba(23, 17, 15, 0.82) 100%);
}

.hero-layout {
  width: min(1360px, calc(100% - 72px));
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(300px, 0.36fr);
  align-items: center;
  gap: clamp(38px, 6vw, 108px);
  padding: 116px 0 80px;
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  transform: translateX(-26px);
  animation: heroCopyIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both 160ms;
}

.script-line {
  margin: 0 0 4px;
  color: var(--yellow-light);
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 6px 18px rgba(23, 17, 15, 0.25);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(5.6rem, 11.4vw, 10.6rem);
  font-weight: 400;
  line-height: 0.79;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 5px 0 rgba(23, 17, 15, 0.92),
    0 22px 50px rgba(23, 17, 15, 0.38);
}

.hero-text {
  max-width: 500px;
  margin: 24px 0 0;
  min-height: calc(1.65em * 3); /* reserve ~3 lines so buttons don't jump while typing */
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 700;
  line-height: 1.65;
}

.hero-text.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: -0.16em;
  background: var(--yellow-light);
  animation: caretBlink 0.8s steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.menu-card button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 36px rgba(244, 183, 26, 0.38);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.32);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-notes {
  position: absolute;
  inset: 0;
  z-index: 2;
  font-family: "Caveat", cursive;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  pointer-events: none;
  text-shadow: 0 5px 16px rgba(23, 17, 15, 0.42);
}

.note {
  position: absolute;
  width: max-content;
  margin: 0;
  max-width: 240px;
  opacity: 0;
  animation: noteIn 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.note::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-right: 8px;
  width: 150px;
  height: 90px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 4px 10px rgba(23, 17, 15, 0.4));
}

/* Crispy sesame crown -> top bun (long line sweeping down onto the crown) */
.note-top {
  top: 24%;
  left: calc(50% + 238px);
  max-width: 220px;
  animation-delay: 520ms;
}

.note-top::before {
  width: 185px;
  height: 248px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185 248' fill='none'%3E%3Cpath d='M183,18 C118,6 44,128 12,234' stroke='%23fffaf0' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='236' r='3.8' fill='%23fffaf0'/%3E%3C/svg%3E");
}

/* Fresh vegetables -> veggie band (line sweeps down-left onto the greens) */
.note-mid {
  top: 45%;
  left: calc(50% + 285px);
  max-width: 200px;
  animation-delay: 680ms;
}

.note-mid::before {
  width: 175px;
  height: 208px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 175 208' fill='none'%3E%3Cpath d='M173,18 C112,8 50,118 12,194' stroke='%23fffaf0' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='196' r='3.8' fill='%23fffaf0'/%3E%3C/svg%3E");
}

/* Char-grilled steak patty -> patty (line sweeps down-left, well below the veg label) */
.note-bottom {
  top: 61%;
  left: calc(50% + 235px);
  max-width: 240px;
  animation-delay: 840ms;
}

.note-bottom::before {
  width: 165px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 165 120' fill='none'%3E%3Cpath d='M163,16 C104,10 48,66 12,106' stroke='%23fffaf0' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='108' r='3.8' fill='%23fffaf0'/%3E%3C/svg%3E");
}

.scroll-meter {
  position: fixed;
  z-index: 12;
  left: 24px;
  bottom: 24px;
  width: 160px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.24);
}

.scroll-meter span {
  display: block;
  width: calc(var(--scrub-progress, 0) * 100%);
  height: 100%;
  background: var(--yellow);
}

.order-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(32px, 6vw, 72px) max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: var(--yellow);
}

.order-strip h2,
.showcase h2,
.ingredients h2,
.visit h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-strip p {
  max-width: 580px;
  margin: 12px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.showcase {
  padding: clamp(72px, 10vw, 132px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, var(--paper), #fff1c9 52%, var(--paper)),
    var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading .script-line {
  max-width: 230px;
  color: var(--red);
  text-shadow: none;
}

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

.menu-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 17, 15, 0.08), rgba(23, 17, 15, 0.72)),
    var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card.hot {
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 212, 77, 0.68), transparent 26%),
    linear-gradient(180deg, #ef2e22, #82120d);
}

.menu-card.green {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 212, 77, 0.62), transparent 24%),
    linear-gradient(180deg, #55b848, #185a2d);
}

.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
}

.menu-card h3 {
  margin: 90px 0 10px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0 0 22px;
  color: rgba(255, 250, 240, 0.86);
  font-weight: 700;
  line-height: 1.55;
}

.menu-card button {
  min-height: 44px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease;
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(72px, 10vw, 136px) max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--red-deep);
}

.ingredient-media {
  position: relative;
}

.ingredient-media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: 0;
  background: var(--yellow);
  border-radius: 8px;
}

.ingredient-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(23, 17, 15, 0.38);
}

.ingredient-copy .script-line {
  color: var(--yellow-light);
}

.ingredient-copy p {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.72;
}

.ingredient-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.ingredient-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  font-weight: 800;
  line-height: 1.45;
}

.ingredient-list span {
  color: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
}

.visit {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 32px;
  align-items: end;
  padding: clamp(76px, 10vw, 140px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.visit-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
}

.visit-panel {
  padding: 26px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

.visit-panel p,
.visit-panel span {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-panel strong {
  display: block;
  margin: 16px 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: #090606;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.spin-heading {
  perspective: 900px;
}

.spin-word {
  display: inline-block;
  opacity: 0;
  transform:
    translate3d(var(--spin-x, 0), var(--spin-y, 0), 0)
    rotate(var(--spin-angle, 360deg))
    scale(0.72);
  transform-origin: 50% 58%;
  filter: blur(1px);
  will-change: opacity, transform, filter;
}

.spin-heading.is-spun .spin-word {
  animation: headingSpinIn 430ms cubic-bezier(0.16, 0.9, 0.24, 1.18) both;
  animation-delay: var(--spin-delay, 0ms);
}

@keyframes smokeDrift {
  0% {
    transform: translate3d(-5%, 2%, 0) scale(1.08) rotate(-1deg);
  }

  50% {
    transform: translate3d(3%, -2%, 0) scale(1.16) rotate(1deg);
  }

  100% {
    transform: translate3d(7%, 1%, 0) scale(1.12) rotate(-0.5deg);
  }
}

@keyframes smokeRise {
  0% {
    transform: translate3d(2%, 5%, 0) scale(1.1);
  }

  50% {
    transform: translate3d(-2%, -4%, 0) scale(1.22);
  }

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

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(-26px, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-26px, 0, 0);
  }
}

@keyframes noteIn {
  from {
    opacity: 0;
    transform: translate3d(22px, 14px, 0) rotate(-1deg);
  }

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

@keyframes headingSpinIn {
  0% {
    opacity: 0;
    transform:
      translate3d(var(--spin-x, 0), var(--spin-y, 0), 0)
      rotate(var(--spin-angle, 360deg))
      scale(0.72);
    filter: blur(1.5px);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1.04);
    filter: blur(0);
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-order {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }

  .scroll-hero {
    height: 320vh;
  }

  .hero-canvas,
  .hero-fallback {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(23, 17, 15, 0.36) 0%, rgba(23, 17, 15, 0.16) 40%, rgba(23, 17, 15, 0.82) 100%);
  }

  .hero-layout {
    width: min(100% - 28px, 680px);
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 94px;
    padding-bottom: 58px;
  }

  .hero-copy {
    align-self: end;
    transform: none;
    animation-name: heroCopyInMobile;
  }

  h1 {
    font-size: clamp(4.4rem, 20vw, 7.4rem);
  }

  .hero-text {
    max-width: 560px;
    margin-top: 18px;
  }

  .hero-notes {
    display: none;
  }

  .scroll-meter {
    width: 110px;
    left: 16px;
    bottom: 16px;
  }

  .order-strip,
  .section-heading,
  .visit,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-strip {
    display: flex;
  }

  .menu-grid,
  .ingredients,
  .visit {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 270px;
  }

  .ingredients {
    padding-top: 84px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .order-strip h2,
  .showcase h2,
  .ingredients h2,
  .visit h2 {
    font-size: clamp(2.7rem, 17vw, 4.8rem);
  }
}

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

  .hero-smoke::before,
  .hero-smoke::after,
  .hero-copy,
  .note {
    animation: none;
  }

  .hero-smoke-fx {
    display: none;
  }

  .hero-copy,
  .note,
  .spin-word,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .button,
  .menu-card button,
  .reveal-on-scroll,
  .spin-heading.is-spun .spin-word {
    animation: none;
    transition: none;
  }
}

@keyframes heroCopyInMobile {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

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