@import url("https://fonts.googleapis.com/css2?family=Modak&family=Mouse+Memoirs&display=swap");

:root {
  --red: #f91814;
  --beige: #f5e3cd;
  --yellow: #ffd750;
  --orange: #f4a804;
  --ink: #1b1b1b;
  --green: #60a905;
  --burgundy: #4c0016;
  --white: #ffffff;
  --display: "Mouse Memoirs", Impact, "Arial Narrow", sans-serif;
  --sticker: "Modak", "Cooper Black", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--beige);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--beige);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.1;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

::selection {
  color: var(--beige);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.section-beige {
  background: var(--beige);
}

.section-red {
  color: var(--beige);
  background: var(--red);
}

.section-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-180%);
  border-radius: 999px;
  color: var(--beige);
  background: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 14px 2.3vw;
  transition: transform 300ms var(--ease);
  pointer-events: none;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header a,
.site-header button {
  pointer-events: auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--red);
  font-family: var(--sticker);
  font-size: clamp(24px, 3.1vw, 48px);
  line-height: 0.63;
  text-decoration: none;
  transform: rotate(-2deg);
  filter: drop-shadow(0 2px 0 var(--beige));
}

body[data-route="contact"] .brand {
  color: var(--beige);
  filter: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-pill,
.menu-toggle {
  min-height: 46px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: color-mix(in srgb, var(--beige) 76%, transparent);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.header-pill {
  display: grid;
  place-items: center;
  padding: 0 24px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px 0 22px;
  cursor: pointer;
}

.header-pill:hover,
.menu-toggle:hover {
  color: var(--beige);
  background: var(--red);
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-icon i {
  display: block;
  height: 2px;
  background: currentColor;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px 3vw 34px;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background: var(--orange);
  clip-path: circle(0 at calc(100% - 52px) 45px);
  transition:
    clip-path 600ms var(--ease),
    visibility 600ms;
}

.menu-overlay.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 52px) 45px);
}

.menu-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu-kicker,
.overlay-note {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.menu-close:hover {
  color: var(--orange);
  background: var(--ink);
}

.overlay-nav {
  display: grid;
  align-self: center;
  width: min(1100px, 94vw);
  margin: 50px auto;
}

.overlay-nav a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  border-bottom: 2px solid color-mix(in srgb, var(--ink) 42%, transparent);
  text-decoration: none;
  text-transform: uppercase;
}

.overlay-nav small {
  font-size: 18px;
}

.overlay-nav span {
  font-family: var(--sticker);
  font-size: clamp(50px, 8vw, 118px);
  line-height: 0.9;
  transition: transform 250ms var(--ease);
}

.overlay-nav b {
  font-size: 40px;
  font-weight: 400;
}

.overlay-nav a:hover span,
.overlay-nav a:focus-visible span {
  transform: translateX(18px) rotate(-1deg);
}

.overlay-nav a[aria-current="page"] span {
  color: var(--red);
  -webkit-text-stroke: 1px var(--beige);
}

.wave {
  position: absolute;
  z-index: 5;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: clamp(64px, 9vw, 130px);
  overflow: hidden;
  pointer-events: none;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  fill: var(--wave-color);
}

.sticker {
  display: inline-block;
  padding: 0.3em 0.58em 0.18em;
  color: var(--ink);
  font-family: var(--sticker);
  font-size: clamp(18px, 2vw, 34px);
  line-height: 0.9;
  text-align: center;
  transform: rotate(-7deg);
}

.sticker-yellow {
  background: var(--yellow);
}

.sticker-red {
  color: var(--beige);
  background: var(--red);
}

.eyebrow {
  display: inline-block;
  font-size: clamp(16px, 1.6vw, 25px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 0 12px 0 24px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--beige);
  background: var(--red);
  font-size: 19px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 200ms,
    background 200ms,
    transform 200ms;
}

.pill-button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--red);
  background: var(--beige);
}

.pill-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home */

.home-hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-tilt: 0deg;






  position: relative;
  display: grid;
  place-items: center;
  min-height: max(720px, 100svh);
  overflow: hidden;
  padding: var(--header-height) 2vw 30px;
}

.hero-title {
  position: absolute;
  z-index: 1;
  top: 11%;
  left: 0;
  width: 100%;
  color: var(--red);
  font-size: clamp(116px, 20vw, 340px);
  font-weight: 400;
  line-height: 0.69;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(105%);
  transition: transform 950ms cubic-bezier(0.16, 1.32, 0.3, 1) 100ms;
  will-change: transform;
}

.hero-title span {
  display: block;
}

.home-hero.is-ready .hero-title {
  transform: translateY(0);
}

.hero-burger-stage {
  position: relative;
  z-index: 3;
  width: min(50vw, 660px);
  opacity: 0;
  filter: drop-shadow(0 24px 18px rgb(27 27 27 / 14%));
  transform: translateY(64px) scale(0.78) rotate(-5deg);
  transition:
    opacity 500ms var(--ease) 300ms,
    filter 250ms ease,
    transform 850ms cubic-bezier(0.16, 1.35, 0.3, 1) 240ms;
  will-change: transform;
}

.hero-burger-stage::after {
  position: absolute;
  inset: 9%;
  z-index: -1;
  border: 4px solid var(--orange);
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
}

.home-hero.is-ready .hero-burger-stage {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-2deg);
}

.hero-burger-stage:hover {
  filter: drop-shadow(0 31px 20px rgb(27 27 27 / 19%));
}

.hero-burger-depth {
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotate(var(--hero-tilt));
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-burger-pop {
  transform-origin: 50% 60%;
}

.hero-burger-stage.is-popped .hero-burger-pop {
  animation: heroBurgerPop 680ms cubic-bezier(0.2, 1.45, 0.38, 1);
}

.hero-burger-stage.is-popped::after {
  animation: heroBurgerRipple 680ms ease-out;
}

.hero-burger {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.home-hero.is-ready .hero-burger {
  animation: heroBurgerFloat 3.4s ease-in-out 1.2s infinite;
}

.hero-word {
  position: absolute;
  z-index: 2;
  bottom: 8.5%;
  width: 100%;
  overflow: hidden;
  color: var(--orange);
  font-family: var(--sticker);
  font-size: clamp(80px, 15vw, 236px);
  line-height: 0.75;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: clamp(2px, 0.28vw, 5px) var(--beige);
  transform: translateY(110%);
  transition: transform 850ms cubic-bezier(0.16, 1.28, 0.3, 1) 500ms;
  will-change: transform;
}

.home-hero.is-ready .hero-word {
  transform: translateY(0);
}

.hero-kicker {
  position: absolute;
  z-index: 6;
  top: 14%;
  left: 7%;
}

.hero-sticker {
  position: absolute;
  z-index: 6;
  right: 7%;
  bottom: 21%;
  opacity: 0;
  transform: scale(0.6) rotate(12deg);
  transition:
    opacity 400ms var(--ease) 900ms,
    transform 500ms var(--ease) 900ms;
}

.home-hero.is-ready .hero-sticker {
  opacity: 1;
  transform: scale(1) rotate(8deg);
}

.hero-note {
  position: absolute;
  z-index: 7;
  bottom: 3%;
  font-size: clamp(14px, 1.35vw, 20px);
  letter-spacing: 0.06em;
}

.hero-note-left {
  left: 2.5vw;
}

.hero-note-right {
  right: 2.5vw;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 2%;
  left: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  animation: heroScrollBounce 1.55s cubic-bezier(0.3, 0.8, 0.35, 1) 1.4s infinite;
}

@keyframes heroBurgerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.6deg);
  }

  42% {
    transform: translateY(-16px) rotate(1deg);
  }

  64% {
    transform: translateY(-9px) rotate(0.35deg);
  }
}

@keyframes heroBurgerPop {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  28% {
    transform: scale(1.11, 0.9) rotate(-2deg);
  }

  52% {
    transform: scale(0.96, 1.09) rotate(1.5deg);
  }

  76% {
    transform: scale(1.035, 0.985) rotate(-0.5deg);
  }
}

@keyframes heroBurgerRipple {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes heroScrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  42% {
    transform: translateY(7px);
  }

  66% {
    transform: translateY(3px);
  }
}

.classic-section {
  position: relative;
  min-height: 1100px;
  padding: 10vw 4vw 12vw;
  overflow: hidden;
}

.centered-title {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.centered-title .eyebrow {
  color: var(--red);
}

.centered-title h2 {
  max-width: 1300px;
  color: var(--red);
  font-size: clamp(100px, 14.5vw, 232px);
  font-weight: 400;
  line-height: 0.73;
  text-transform: uppercase;
}

.centered-title p {
  width: min(510px, 88vw);
  margin: 30px auto 24px;
  font-size: clamp(20px, 2vw, 29px);
}

.photo-collage {
  position: relative;
  width: min(1080px, 90vw);
  height: min(52vw, 630px);
  margin: 80px auto 0;
}

.photo-card {
  position: absolute;
  width: 34%;
  padding: 10px 10px 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 50px rgb(27 27 27 / 15%);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 10px 3px 0;
  font-size: 18px;
  text-transform: uppercase;
}

.photo-card-a {
  top: 13%;
  left: 0;
  transform: rotate(-7deg);
}

.photo-card-b {
  z-index: 2;
  top: 0;
  left: 33%;
  transform: rotate(3deg);
}

.photo-card-c {
  top: 18%;
  right: 0;
  transform: rotate(8deg);
}

.photo-card.is-visible.photo-card-a {
  transform: translateY(0) rotate(-7deg);
}

.photo-card.is-visible.photo-card-b {
  transform: translateY(0) rotate(3deg);
}

.photo-card.is-visible.photo-card-c {
  transform: translateY(0) rotate(8deg);
}

.collage-sticker {
  position: absolute;
  z-index: 4;
  right: 14%;
  bottom: 8%;
}

.feel-good {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 48vw) 1fr;
  align-items: center;
  min-height: 1100px;
  padding: 8vw 3vw 13vw;
  overflow: hidden;
}

.feel-good-heading {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 0;
  width: 100%;
  text-align: center;
}

.feel-good-heading h2 {
  font-size: clamp(110px, 15vw, 238px);
  font-weight: 400;
  line-height: 0.72;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--beige);
}

.burger-stage {
  position: relative;
  z-index: 3;
  grid-column: 2;
  align-self: end;
  justify-self: center;
  width: min(44vw, 680px);
  margin-bottom: 5vw;
  transform: translateY(var(--parallax-y, 0));
}

.burger-stage img {
  width: min(100%, 680px);
  height: auto;
  max-height: 620px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgb(27 27 27 / 18%));
  transform: rotate(-2deg);
}

.burger-sticker {
  position: absolute;
  right: -6%;
  bottom: 25%;
  transform: rotate(9deg);
}

.food-metadata {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-self: end;
  margin-bottom: 19vw;
  font-size: clamp(18px, 1.8vw, 28px);
  letter-spacing: 0.04em;
}

.food-metadata > span {
  color: var(--yellow);
}

.food-metadata p {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--beige);
}

.meta-left {
  grid-column: 1;
}

.meta-right {
  grid-column: 3;
}

.full-photo {
  position: relative;
  height: min(900px, 95svh);
  overflow: hidden;
  color: var(--beige);
  background: var(--ink);
}

.full-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02) brightness(0.72);
}

.full-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(27 27 27 / 70%), transparent 60%);
}

.full-photo-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}

.full-photo-copy.is-visible {
  transform: translateY(-50%);
}

.full-photo-copy span {
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}

.full-photo-copy strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(86px, 11vw, 176px);
  font-weight: 400;
  line-height: 0.75;
  text-transform: uppercase;
}

.layers-section {
  position: relative;
  min-height: 950px;
  padding: 9vw 4vw 14vw;
  overflow: hidden;
}

.layers-section > .eyebrow {
  color: var(--red);
}

.layers-lines {
  margin-top: 24px;
}

.layer-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: clamp(90px, 14.6vw, 230px);
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
}

.layer-line i {
  position: absolute;
  z-index: 2;
  right: 8%;
  font-size: clamp(68px, 9vw, 140px);
  font-style: normal;
  filter: drop-shadow(0 12px 10px rgb(27 27 27 / 15%));
  transform: rotate(10deg);
}

.layer-line:nth-child(2) i {
  right: auto;
  left: 13%;
  transform: rotate(-12deg);
}

.layer-line:nth-child(3) i {
  right: 19%;
}

.layer-line:nth-child(4) i {
  right: auto;
  left: 6%;
  transform: rotate(8deg);
}

.journey-section {
  position: relative;
  min-height: 2700px;
  padding: 9vw 3vw 12vw;
  overflow: hidden;
}

.journey-heading {
  position: relative;
  z-index: 3;
  width: min(1150px, 94vw);
  margin: 0 auto 100px;
}

.journey-heading h2 {
  color: var(--white);
  font-size: clamp(100px, 13vw, 210px);
  font-weight: 400;
  line-height: 0.75;
  text-transform: uppercase;
}

.journey-heading p {
  width: min(470px, 90vw);
  margin-top: 28px;
  font-size: 25px;
}

.journey-path {
  position: absolute;
  z-index: 1;
  top: 520px;
  bottom: 200px;
  left: 50%;
  width: min(1180px, 94vw);
  transform: translateX(-50%);
}

.journey-path > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-path > svg > path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-dasharray: 8 14;
  vector-effect: non-scaling-stroke;
}

.journey-plane {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(88px, 7vw, 108px);
  height: clamp(88px, 7vw, 108px);
  opacity: 0;
  filter: drop-shadow(0 12px 8px rgb(27 27 27 / 22%));
  pointer-events: none;
  transform-origin: center;
  transition: opacity 180ms ease;
  will-change: transform;
}

.journey-plane.is-active {
  opacity: 1;
}

.journey-plane svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: journeyPlaneBank 1.8s ease-in-out infinite;
}

.journey-plane .plane-body {
  fill: var(--beige);
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
}

.journey-plane .plane-fold {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes journeyPlaneBank {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}

.journey-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 110px;
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.journey-card {
  width: min(470px, 40vw);
  padding: 10px 10px 16px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 14px 0 var(--red);
}

.journey-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.journey-card figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
}

.journey-card strong {
  color: var(--red);
  font-size: 34px;
  font-weight: 400;
}

.journey-card span {
  font-size: 18px;
}

.journey-left {
  justify-self: start;
  transform: rotate(-2deg);
}

.journey-right {
  justify-self: end;
  transform: rotate(2deg);
}

.journey-left.is-visible {
  transform: translateY(0) rotate(-2deg);
}

.journey-right.is-visible {
  transform: translateY(0) rotate(2deg);
}

/* Shared CTA and footer */

.feel-change {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 6vw;
  min-height: 880px;
  padding: 9vw 5vw;
  overflow: hidden;
}

.feel-copy h2 {
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(100px, 12vw, 194px);
  font-weight: 400;
  line-height: 0.7;
  text-transform: uppercase;
}

.feel-copy p {
  max-width: 500px;
  margin: 28px 0 24px;
  font-size: 24px;
}

.feel-photo {
  position: relative;
}

.feel-photo > img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border-radius: 46% 54% 52% 48% / 57% 41% 59% 43%;
  object-fit: cover;
}

.mascot-burger {
  position: absolute;
  right: -3%;
  bottom: -6%;
  display: grid;
  place-items: center;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  border: 10px solid var(--beige);
  border-radius: 50%;
  color: var(--beige);
  background: var(--red);
  text-align: center;
  transform: rotate(9deg);
}

.mascot-burger span {
  font-size: 50px;
}

.mascot-burger b {
  font-family: var(--sticker);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.75;
}

.site-footer {
  position: relative;
  min-height: 680px;
  padding: 50px 3vw 18px;
  overflow: hidden;
  color: var(--ink);
  background: var(--beige);
}

.footer-top {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.footer-top a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-word {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 2vw;
  color: var(--red);
  font-family: var(--sticker);
  font-size: clamp(140px, 25vw, 390px);
  line-height: 0.7;
  white-space: nowrap;
  -webkit-text-stroke: clamp(3px, 0.5vw, 8px) var(--beige);
  filter: drop-shadow(0 8px 0 var(--red));
}

.float-food {
  position: absolute;
  z-index: 3;
  font-family: sans-serif;
  font-size: clamp(62px, 9vw, 140px);
  font-style: normal;
  -webkit-text-stroke: 0;
  filter: drop-shadow(0 12px 8px rgb(27 27 27 / 20%));
  animation: floatFood 5s ease-in-out infinite alternate;
}

.food-a {
  top: -40%;
  left: 8%;
  animation-duration: 4.5s;
}

.food-b {
  top: -8%;
  left: 37%;
  animation-duration: 6.2s;
}

.food-c {
  top: -36%;
  right: 27%;
  animation-duration: 5.6s;
}

.food-d {
  top: -4%;
  right: 5%;
  animation-duration: 4.8s;
}

@keyframes floatFood {
  from {
    transform: translate3d(0, -14px, 0) rotate(-10deg);
  }
  to {
    transform: translate3d(14px, 24px, 0) rotate(14deg);
  }
}

/* Route heroes */

.route-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: min(900px, 94svh);
  min-height: 640px;
  overflow: hidden;
  color: var(--beige);
  background: var(--ink);
}

.route-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 800ms var(--ease) 200ms,
    transform 1200ms var(--ease) 200ms;
}

.page-ready .route-hero-image {
  opacity: 1;
  transform: scale(1.02);
}

.route-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgb(27 27 27 / 45%), rgb(27 27 27 / 55%)),
    radial-gradient(circle at center, transparent, rgb(27 27 27 / 55%));
}

.route-hero h1 {
  position: relative;
  z-index: 3;
  width: 96%;
  font-size: clamp(100px, 14vw, 230px);
  font-weight: 400;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
}

.route-hero h1 span {
  display: block;
  clip-path: inset(100% 0 0);
  transform: translateY(100%);
  transition:
    clip-path 700ms var(--ease) 450ms,
    transform 700ms var(--ease) 450ms;
}

.route-hero h1 span:nth-child(2) {
  transition-delay: 540ms;
}

.page-ready .route-hero h1 span {
  clip-path: inset(0);
  transform: translateY(0);
}

.route-sticker {
  position: absolute;
  z-index: 4;
  top: 19%;
  transform: rotate(-8deg);
}

.spices-route-hero p {
  position: absolute;
  z-index: 4;
  bottom: 17%;
  width: min(580px, 84vw);
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
}

/* Menu */

.menu-section {
  padding: 9vw 3vw 11vw;
}

.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.menu-heading h2 {
  color: var(--red);
  font-size: clamp(100px, 12vw, 190px);
  font-weight: 400;
  line-height: 0.72;
  text-transform: uppercase;
}

.menu-heading strong {
  display: grid;
  place-items: center;
  width: 140px;
  aspect-ratio: 1;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--sticker);
  font-size: 32px;
  font-weight: 400;
  line-height: 0.8;
  text-align: center;
  transform: rotate(8deg);
}

.menu-help {
  max-width: 1500px;
  margin: 28px auto 44px;
  font-size: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 30px;
  background: color-mix(in srgb, var(--white) 72%, var(--beige));
  box-shadow: 0 14px 0 var(--red);
  transform: translateY(50px);
}

.menu-card.is-visible {
  transform: translateY(0);
}

.checker {
  height: 22px;
  background:
    conic-gradient(
        from 90deg at 50% 50%,
        var(--red) 0 25%,
        var(--beige) 0 50%,
        var(--red) 0 75%,
        var(--beige) 0
      )
      0 0 / 22px 22px;
}

.menu-card > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 14px;
}

.menu-card header span {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card h3 {
  color: var(--red);
  font-family: var(--sticker);
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 400;
  line-height: 0.78;
}

.menu-image-wrap {
  position: relative;
  height: 230px;
  margin: 0 20px 18px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
}

.menu-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 250ms,
    transform 250ms,
    filter 250ms;
}

.menu-detail {
  position: absolute;
  inset: 14px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border: 2px solid var(--red);
  border-radius: 16px;
  opacity: 0;
  color: var(--ink);
  background: color-mix(in srgb, var(--beige) 94%, transparent);
  transform: scale(0.9);
  transition:
    opacity 250ms var(--ease),
    transform 250ms var(--ease);
}

.menu-detail span {
  margin-bottom: 5px;
  color: var(--red);
  letter-spacing: 0.1em;
}

.menu-detail p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
}

.menu-detail p::before {
  content: "●";
  color: var(--red);
  font-size: 9px;
}

.menu-card:hover .menu-detail,
.menu-card:focus .menu-detail,
.menu-card:focus-within .menu-detail {
  opacity: 1;
  transform: scale(1);
}

.menu-card:hover .menu-image-wrap > img,
.menu-card:focus .menu-image-wrap > img,
.menu-card:focus-within .menu-image-wrap > img {
  opacity: 0.24;
  filter: saturate(0.5);
  transform: scale(1.06);
}

.menu-items {
  padding: 0 24px 26px;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--red) 28%, transparent);
  font-size: 19px;
}

.menu-row strong {
  color: var(--red);
  font-weight: 400;
  white-space: nowrap;
}

/* Ingredients */

.farm-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  align-items: center;
  gap: 4vw;
  min-height: 1050px;
  padding: 8vw 4vw 13vw;
  overflow: hidden;
}

.farm-title h2 {
  color: var(--beige);
  font-size: clamp(100px, 12vw, 190px);
  font-weight: 400;
  line-height: 0.7;
  text-transform: uppercase;
}

.farm-stack {
  position: relative;
  transform: translateY(var(--parallax-y, 0));
}

.farm-stack img {
  width: 100%;
  border: 10px solid var(--beige);
  border-radius: 48% 52% 45% 55%;
  mix-blend-mode: multiply;
  transform: rotate(3deg);
}

.farm-burst {
  position: absolute;
  top: -7%;
  right: -8%;
  display: grid;
  place-items: center;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--sticker);
  font-size: 30px;
  font-style: normal;
  line-height: 0.8;
  text-align: center;
  transform: rotate(12deg);
}

.farm-copy p {
  margin-bottom: 28px;
  font-size: clamp(22px, 2.2vw, 32px);
}

.pill-outline {
  border-color: var(--beige);
  color: var(--beige);
  background: transparent;
}

.ingredient-story {
  position: relative;
  min-height: 3400px;
  padding: 9vw 4vw 14vw;
  overflow: hidden;
}

.ingredient-heading {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto 180px;
}

.ingredient-heading h2 {
  color: var(--white);
  font-size: clamp(100px, 13vw, 205px);
  font-weight: 400;
  line-height: 0.74;
  text-transform: uppercase;
}

.ingredient-heading p {
  margin-top: 24px;
  font-size: 28px;
}

.ingredient-line {
  position: absolute;
  top: 640px;
  bottom: 280px;
  left: 50%;
  border-left: 4px dashed var(--ink);
}

.ingredient-stops {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 220px;
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.ingredient-stop {
  display: grid;
  grid-template-columns: minmax(250px, 430px) minmax(250px, 380px);
  align-items: center;
  gap: 60px;
  width: 84%;
}

.stop-left {
  justify-self: start;
}

.stop-right {
  justify-self: end;
}

.stop-right .ingredient-photo {
  order: 2;
}

.ingredient-photo {
  position: relative;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 24px 50px rgb(27 27 27 / 15%);
  transform: rotate(-5deg);
}

.stop-right .ingredient-photo {
  transform: rotate(5deg);
}

.ingredient-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ingredient-photo i {
  position: absolute;
  right: -12%;
  bottom: -12%;
  font-size: 100px;
  font-style: normal;
  filter: drop-shadow(0 10px 8px rgb(27 27 27 / 20%));
}

.stop-right .ingredient-photo i {
  right: auto;
  left: -12%;
}

.ingredient-copy span {
  color: var(--red);
  font-size: 24px;
}

.ingredient-copy h3 {
  margin: 8px 0 12px;
  color: var(--red);
  font-family: var(--sticker);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.8;
}

.ingredient-copy p {
  font-size: 24px;
}

/* Contact */

.contact-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 1000px;
  padding: 130px 16vw 100px;
  overflow: hidden;
}

.contact-content {
  position: relative;
  z-index: 3;
  width: min(1000px, 80vw);
}

.contact-sticker {
  margin-left: 8%;
}

.contact-content h1 {
  margin-top: 16px;
  color: var(--beige);
  font-size: clamp(100px, 12vw, 190px);
  font-weight: 400;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
}

.contact-content h1 span {
  display: block;
}

.contact-content > p {
  width: min(600px, 90%);
  margin: 30px auto 50px;
  font-size: 25px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 3px solid var(--beige);
}

.field-line span {
  font-size: 30px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 3px solid var(--beige);
  border-radius: 0;
  outline: none;
  color: var(--beige);
  background: transparent;
  font-size: clamp(26px, 3vw, 42px);
}

.field-line input {
  border: 0;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--beige) 56%, transparent);
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--yellow);
}

.was-validated :invalid {
  border-color: var(--yellow);
}

.contact-form > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px 0 34px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 28px;
  cursor: pointer;
  transition:
    color 200ms,
    background 200ms,
    transform 200ms;
}

.contact-form > button:hover {
  color: var(--beige);
  background: var(--ink);
  transform: scale(1.01);
}

.form-status {
  min-height: 24px;
  color: var(--yellow);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--beige);
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  letter-spacing: 0.1em;
}

.contact-mascot {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: clamp(90px, 13vw, 190px);
  filter: drop-shadow(0 18px 12px rgb(27 27 27 / 22%));
}

.contact-mascot span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--sticker);
  font-size: 26px;
}

.contact-fries {
  bottom: 21%;
  left: 1%;
  transform: rotate(-10deg);
}

.contact-burger {
  right: 1%;
  bottom: 14%;
  transform: rotate(10deg);
}

.contact-fries.is-visible {
  transform: translateY(0) rotate(-10deg);
}

.contact-burger.is-visible {
  transform: translateY(0) rotate(10deg);
}

/* Cursor, route curtain, feedback */

.cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
}

.cursor-trail.is-active {
  opacity: 1;
}

.cursor-trail svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cursor-trail polyline {
  fill: none;
  stroke: rgb(255 255 255 / 75%);
  stroke-width: 1.5;
}

.cursor-trail i {
  position: absolute;
  top: -9px;
  left: -9px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
}

.cursor-trail i:nth-of-type(2) {
  width: 14px;
  height: 14px;
  background: var(--yellow);
}

.cursor-trail i:nth-of-type(3) {
  width: 11px;
  height: 11px;
  background: var(--green);
}

.cursor-trail i:nth-of-type(4) {
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.route-transition {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}

.curtain {
  position: absolute;
  right: -10%;
  bottom: -10%;
  left: -10%;
  height: 125%;
  border-radius: 50% 50% 0 0 / 16% 16% 0 0;
  transform: translateY(110%);
  transition: transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
}

.curtain-red {
  background: var(--red);
}

.curtain-orange {
  background: var(--orange);
  transition-delay: 70ms;
}

.curtain-yellow {
  background: var(--yellow);
  transition-delay: 140ms;
}

.route-transition strong {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  opacity: 0;
  font-size: clamp(60px, 10vw, 150px);
  font-weight: 400;
  transform: translate(-50%, -50%);
  transition: opacity 200ms 430ms;
}

.route-transition.is-active {
  visibility: visible;
}

.route-transition.is-active .curtain {
  transform: translateY(0);
}

.route-transition.is-active strong {
  opacity: 1;
}

.route-transition.is-revealing .curtain {
  transform: translateY(-110%);
}

.route-transition.is-revealing strong {
  opacity: 0;
  transition-delay: 0ms;
}

@media (max-width: 1000px) {
  :root {
    --header-height: 74px;
  }

  .hero-title {
    top: 19%;
    font-size: 21vw;
  }

  .hero-burger-stage {
    width: min(68vw, 620px);
  }

  .hero-word {
    bottom: 15%;
  }

  .classic-section {
    min-height: 960px;
  }

  .feel-good {
    grid-template-columns: 1fr minmax(340px, 55vw) 1fr;
    min-height: 960px;
  }

  .food-metadata {
    margin-bottom: 13vw;
    font-size: 18px;
  }

  .journey-section,
  .ingredient-story {
    min-height: auto;
  }

  .journey-path {
    display: none;
  }

  .journey-cards {
    gap: 110px;
  }

  .feel-change {
    min-height: 700px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .farm-section {
    grid-template-columns: 1fr 1fr;
    min-height: 950px;
  }

  .farm-copy {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .ingredient-line {
    display: none;
  }

  .ingredient-stops {
    gap: 130px;
  }

  .ingredient-stop {
    width: 100%;
  }

  .contact-page {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 18px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    font-size: 28px;
  }

  .header-pill {
    display: none;
  }

  .menu-toggle {
    min-height: 48px;
    padding: 0 14px 0 18px;
    font-size: 16px;
  }

  .menu-overlay {
    padding: 18px;
  }

  .overlay-nav {
    margin: 34px auto;
  }

  .overlay-nav a {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    min-height: 82px;
  }

  .overlay-nav small {
    font-size: 14px;
  }

  .overlay-nav span {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .overlay-nav b {
    font-size: 25px;
  }

  .home-hero {
    min-height: max(680px, 100svh);
    padding-bottom: 90px;
  }

  .hero-title {
    top: 19%;
    font-size: 23vw;
  }

  .hero-burger-stage {
    width: 92vw;
  }

  .hero-burger {
    max-height: 48vh;
  }

  .hero-word {
    bottom: 17%;
    font-size: 18vw;
  }

  .hero-kicker {
    top: 13%;
    left: 4%;
  }

  .hero-sticker {
    right: 3%;
    bottom: 27%;
  }

  .hero-note {
    bottom: 4%;
    max-width: 40%;
    font-size: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .classic-section {
    min-height: 900px;
    padding: 105px 18px 120px;
  }

  .centered-title h2 {
    font-size: 25vw;
  }

  .centered-title p {
    margin-top: 20px;
    font-size: 20px;
  }

  .photo-collage {
    width: 100%;
    height: 470px;
    margin-top: 60px;
  }

  .photo-card {
    width: 58%;
  }

  .photo-card-a {
    top: 0;
    left: -9%;
  }

  .photo-card-b {
    top: 95px;
    left: 23%;
  }

  .photo-card-c {
    top: 185px;
    right: -8%;
  }

  .photo-card figcaption {
    font-size: 13px;
  }

  .collage-sticker {
    right: 0;
    bottom: 0;
  }

  .feel-good {
    display: block;
    min-height: 920px;
    padding: 100px 18px 120px;
  }

  .feel-good-heading {
    position: relative;
    top: auto;
  }

  .feel-good-heading h2 {
    font-size: 25vw;
  }

  .burger-stage {
    width: 88vw;
    margin: 25px auto 0;
  }

  .food-metadata {
    position: absolute;
    bottom: 120px;
    margin: 0;
    font-size: 14px;
  }

  .meta-left {
    left: 18px;
  }

  .meta-right {
    right: 18px;
  }

  .burger-sticker {
    right: 0;
  }

  .full-photo {
    height: 78svh;
  }

  .full-photo > img {
    object-position: center;
  }

  .full-photo-copy {
    right: 18px;
    left: 18px;
  }

  .full-photo-copy strong {
    font-size: 20vw;
  }

  .layers-section {
    min-height: 680px;
    padding: 100px 14px 120px;
  }

  .layer-line {
    justify-content: start;
    font-size: 21vw;
  }

  .layer-line i {
    right: 0;
    font-size: 17vw;
  }

  .journey-section {
    padding: 100px 18px 150px;
  }

  .journey-heading {
    margin-bottom: 90px;
  }

  .journey-heading h2 {
    font-size: 22vw;
  }

  .journey-heading p {
    font-size: 20px;
  }

  .journey-cards {
    gap: 52px;
    width: 100%;
  }

  .journey-card {
    width: 100%;
    max-width: 520px;
  }

  .feel-change {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 18px;
  }

  .feel-copy h2 {
    font-size: 24vw;
  }

  .feel-copy p {
    font-size: 20px;
  }

  .feel-photo {
    margin-top: 30px;
  }

  .mascot-burger {
    right: -1%;
    width: 145px;
    border-width: 6px;
  }

  .site-footer {
    min-height: 470px;
    padding: 38px 18px 12px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    font-size: 15px;
  }

  .footer-top > p {
    grid-column: 1 / -1;
  }

  .footer-top nav {
    display: grid;
    gap: 10px;
  }

  .footer-word {
    bottom: 8px;
    display: block;
    font-size: 29vw;
    line-height: 0.55;
    text-align: center;
    white-space: normal;
  }

  .footer-word > span {
    display: block;
  }

  .float-food {
    font-size: 65px;
  }

  .route-hero {
    min-height: 650px;
    height: 88svh;
  }

  .route-hero h1 {
    font-size: 22vw;
  }

  .route-sticker {
    top: 19%;
  }

  .spices-route-hero p {
    bottom: 18%;
    font-size: 18px;
  }

  .menu-section {
    padding: 100px 14px;
  }

  .menu-heading {
    align-items: start;
  }

  .menu-heading h2 {
    font-size: 22vw;
  }

  .menu-heading strong {
    width: 88px;
    font-size: 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    border-radius: 24px;
  }

  .menu-image-wrap {
    height: 240px;
  }

  .farm-section {
    display: block;
    min-height: auto;
    padding: 100px 18px 140px;
  }

  .farm-title h2 {
    font-size: 24vw;
  }

  .farm-stack {
    width: 82vw;
    margin: 50px auto;
  }

  .farm-copy {
    text-align: left;
  }

  .farm-copy p {
    font-size: 22px;
  }

  .ingredient-story {
    padding: 100px 18px 150px;
  }

  .ingredient-heading {
    margin-bottom: 100px;
  }

  .ingredient-heading h2 {
    font-size: 23vw;
  }

  .ingredient-heading p {
    font-size: 20px;
  }

  .ingredient-stops {
    gap: 100px;
    width: 100%;
  }

  .ingredient-stop {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stop-right .ingredient-photo {
    order: initial;
  }

  .ingredient-photo {
    width: 82vw;
    max-width: 420px;
  }

  .stop-right .ingredient-photo {
    justify-self: end;
  }

  .ingredient-photo i {
    font-size: 76px;
  }

  .ingredient-copy h3 {
    font-size: 15vw;
  }

  .ingredient-copy p {
    font-size: 20px;
  }

  .contact-page {
    min-height: 980px;
    padding: 120px 18px 80px;
  }

  .contact-content {
    width: 100%;
  }

  .contact-content h1 {
    font-size: 22vw;
  }

  .contact-content > p {
    margin: 24px auto 38px;
    font-size: 20px;
  }

  .contact-form > button {
    min-height: 62px;
    font-size: 22px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-mascot {
    display: none;
  }

  .cursor-trail {
    display: none;
  }
}

/* Ingredients page media correction */

body[data-route="spices"] .farm-stack {
  width: min(430px, 100%);
  justify-self: center;
  transform: translateY(52px);
}

body[data-route="spices"] .farm-stack.reveal.is-visible {
  transform: translateY(0);
}

body[data-route="spices"] .farm-stack-media {
  position: relative;
  transform: translateY(var(--parallax-y, 0));
}

body[data-route="spices"] .farm-stack img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 30px 26px rgb(27 27 27 / 22%));
}

body[data-route="spices"] .ingredient-stops {
  gap: 160px;
}

body[data-route="spices"] .ingredient-photo {
  aspect-ratio: 4 / 3;
}

body[data-route="spices"] .ingredient-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

body[data-route="spices"] .ingredient-photo-cutout {
  background: var(--red);
}

body[data-route="spices"] .ingredient-photo-cutout img {
  padding: clamp(10px, 2vw, 24px);
  object-fit: contain;
}

body[data-route="spices"] .feel-photo > img {
  display: block;
  height: auto;
}

@media (max-width: 1000px) {
  body[data-route="spices"] .farm-stack-media {
    transform: none;
  }

  body[data-route="spices"] .ingredient-stops {
    gap: 110px;
  }
}

@media (max-width: 720px) {
  body[data-route="spices"] .farm-stack {
    width: min(88vw, 430px);
  }

  body[data-route="spices"] .ingredient-stops {
    gap: 80px;
  }

  body[data-route="spices"] .ingredient-photo {
    width: min(88vw, 460px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-route="spices"] .farm-stack-media {
    transform: none !important;
  }
}

/* Mobile Feel the Change correction */

@media (max-width: 720px) {
  body[data-route="home"] .feel-photo,
  body[data-route="menu"] .feel-photo {
    width: min(82vw, 360px);
    margin: 36px auto 0;
  }

  body[data-route="home"] .feel-photo > img,
  body[data-route="menu"] .feel-photo > img {
    display: block;
    width: 100%;
    height: auto;
  }

  body[data-route="home"] .feel-photo .mascot-burger,
  body[data-route="menu"] .feel-photo .mascot-burger {
    right: -3%;
    width: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .cursor-trail,
  .journey-path span {
    display: none;
  }

  .reveal,
  .hero-title,
  .hero-burger-stage,
  .hero-burger-depth,
  .hero-burger-pop,
  .hero-burger,
  .hero-word,
  .route-hero-image,
  .route-hero h1 span {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
