/*
Project customized and maintained by Deep Dey
Portfolio: https://deepdey.vercel.app
Instagram: https://www.instagram.com/deepdey.official/
GitHub: https://github.com/deepdeyiitgn
This project contains custom UI, content architecture, dynamic blog system, gallery system and integrations.
Please do not remove attribution without permission.
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --red: #8F1224; /* burgundy accent */
  --beige: #F7F0DD; /* warm cream */
  --yellow: #F4E7A8; /* soft yellow */
  --orange: #B8946D; /* retained subtle tone */
  --ink: #18221D; /* dark text */
  --green: #167A3A; /* deep green */
  --leaf-green: #3FAE3D; /* bright leaf green for highlights */
  --burgundy: #8F1224;
  --white: #ffffff;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sticker: "Manrope", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --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);
  /* layered subtle background: base color + soft ambient vignettes + delicate paper-like wash */
  background: var(--beige);
  background-image:
    radial-gradient(1200px 600px at 10% 10%, rgba(0,0,0,0.02), transparent 12%),
    radial-gradient(900px 500px at 90% 80%, rgba(255,255,255,0.02), transparent 14%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.01) 60%);
  background-blend-mode: normal, normal, overlay;
  font-family: var(--body);
  /* fluid base font-size for improved responsiveness */
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.12;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: relative; /* for subtle pseudo layering where needed */
}

body.menu-open {
  overflow: hidden;
}

/* Mobile readability improvements */
@media (max-width: 520px) {
  body {
    font-size: 18px; /* slightly more readable on phones */
    line-height: 1.26;
    letter-spacing: 0.0025em;
  }
}

/* Respect reduced-motion: do not apply micro-motions when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.hero-title,
.hero-word,
.centered-title h2,
.feel-good-heading h2,
.full-photo-copy strong,
.layer-line,
.journey-heading h2,
.feel-copy h2,
.route-hero h1,
.menu-heading h2,
.farm-title h2,
.ingredient-heading h2,
.contact-content h1,
.footer-word {
  font-family: var(--display);
}

img {
  display: block;
  max-width: 100%;
  transition: transform 280ms var(--ease), filter 280ms var(--ease), box-shadow 280ms var(--ease);
  will-change: transform, filter, box-shadow;
}

/* Subtle image depth and micro-interactions for premium feel */
.photo-card img,
.menu-image-wrap > img,
.feel-photo img,
.photo-collage img,
.gallery-preview img {
  box-shadow: 0 18px 42px rgba(18,18,18,0.10);
  filter: saturate(1.03) contrast(1.02) brightness(1.01);
  border-radius: 6px;
  backface-visibility: hidden;
}

.photo-card img:hover,
.menu-image-wrap > img:hover,
.photo-collage img:hover,
.gallery-preview img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 54px rgba(18,18,18,0.14);
}

/* Keep hover micro-effects off on touch devices to avoid accidental motion */
@media (hover: none) {
  .photo-card img:hover,
  .menu-image-wrap > img:hover,
  .photo-collage img:hover,
  .gallery-preview img:hover { transform: none; box-shadow: 0 18px 42px rgba(18,18,18,0.10); }
}

/* Slightly raise contrast and depth for inline hero/feature images */
.route-hero img,
.full-photo img,
.stacked-photo img {
  filter: saturate(1.02) contrast(1.03) brightness(1.01);
}

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;
}

/* Stronger stacking and larger card offset to prevent overlap with headline */
.feel-good-heading {
 position: absolute;
 z-index: 2147483647; /* top-most to guarantee visual precedence */
 top: 8%;
 left: 0;
 width: 100%;
 text-align: center;
 transform: translateZ(0); /* force its own stacking context */
 pointer-events: none; /* allow clicks through to CTA if any */
}

.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);
 margin: 0 auto;
}

.burger-stage {
 position: relative;
 z-index: 1; /* ensure it is under the headline */
 grid-column: 2;
 align-self: end;
 justify-self: center;
 width: min(36vw, 580px);
 margin-bottom: 6vw;
 /* Significantly move the card downward and reduce scale so it never covers letters */
 transform: translateY(calc(var(--parallax-y, 0px) + 380px)) scale(0.72) !important;
 transition: transform 320ms var(--ease);
 transform-origin: 50% 50%;
 will-change: transform;
}

.burger-stage img {
 width: min(100%, 580px);
 height: auto;
 max-height: 520px;
 margin: 0 auto;
 object-fit: contain;
 filter: drop-shadow(0 28px 28px rgb(27 27 27 / 18%));
 transform: rotate(-2deg);
}

/* Step-down offsets for narrower viewports to keep composition natural */
@media (max-width: 1400px) {
 .burger-stage { transform: translateY(calc(var(--parallax-y, 0px) + 320px)) scale(0.74) !important; }
}

@media (max-width: 1100px) {
 .burger-stage { width: min(44vw, 540px); transform: translateY(calc(var(--parallax-y, 0px) + 240px)) scale(0.80) !important; }
}

@media (max-width: 900px) {
 .burger-stage { width: min(48vw, 480px); transform: translateY(calc(var(--parallax-y, 0px) + 160px)) scale(0.86) !important; }
}

@media (max-width: 520px) {
 .burger-stage { width: min(64vw, 360px); transform: translateY(calc(var(--parallax-y, 0px) + 40px)) scale(0.98) !important; margin-bottom: 8vw; }
}

.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-energy span {
  font-size: 50px;
}

.mascot-energy b {
  font-family: var(--sticker);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.75;
}

.site-footer {
  position: relative;
  min-height: 820px;
  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 signature and compact info */
.footer-signature {
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px 2vw 18px;
  margin-top: 18px;
}
.footer-signature .signature-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.signature-word {
  font-family: var(--sticker); /* Manrope-style geometric display */
  color: var(--ink);
  font-weight: 800; /* heavy presence */
  font-size: clamp(72px, 11.6vw, 220px); /* larger, visually dominant */
  line-height: 0.78;
  letter-spacing: -0.02em; /* slightly condensed */
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 8px;
  margin: 0;
  -webkit-text-stroke: 0.8px var(--beige);
  filter: drop-shadow(0 8px 0 rgba(0,0,0,0.06));
  transform: scaleX(0.96);
  text-align: center;
}
.signature-word .sig-first { display:inline-block; margin-right: 0.28em; }
.signature-word .sig-second { display:inline-block; margin-left: 0.28em; }

/* keep decorative group compact and off the letters */
.footer-decor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 6px;
}
.decor { width: 48px; height: 48px; display: block; opacity: 0.98; transform-origin: center; }

/* gentle bobbing animation */
@keyframes float-bob {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6%); }
  100% { transform: translateY(0); }
}
.footer-decor .decor:nth-child(1) { animation: float-bob 5s ease-in-out 0s infinite; }
.footer-decor .decor:nth-child(2) { animation: float-bob 4.6s ease-in-out 0.3s infinite; }
.footer-decor .decor:nth-child(3) { animation: float-bob 5.4s ease-in-out 0.6s infinite; }
.footer-decor .decor:nth-child(4) { animation: float-bob 4.8s ease-in-out 0.9s infinite; }

/* compact info block under signature for small screens */
.footer-compact-area { text-align: center; padding: 10px 2vw 36px; }
.footer-compact { font-size: clamp(14px, 2.4vw, 18px); color: var(--ink); margin: 0; }

/* ensure footer-top items remain visible and compact */
.footer-top { gap: 18px; align-items: center; }
.footer-top .footer-contact { font-size: 16px; line-height: 1.2; }
.footer-top .footer-contact .business-small { font-weight: 600; margin: 0 0 6px 0; }

/* small adjustments for very small screens */
@media (max-width: 520px) {
  .signature-word { font-size: clamp(34px, 12.6vw, 86px); transform: scaleX(0.98); }
  .decor { width: 34px; height: 34px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { order: 3; }
}


.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 */

/* Branding and mobile fixes (added) */
.brand-logo { max-height: 44px; display:inline-block; vertical-align:middle; }
.map-embed { width:100%; height:0; padding-bottom:56.25%; position:relative; overflow:hidden; border-radius:12px; }
.map-embed iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
.contact-form .field { display:block; margin-bottom:12px; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form textarea { width:100%; padding:12px 14px; border-radius:8px; border:1px solid rgba(0,0,0,0.06); font-family:var(--sticker); }
.contact-actions-cta { margin-top:14px; }
.pill-button.whatsapp-cta { background:var(--green); color:var(--white); padding:14px 20px; border-radius:12px; font-weight:700; }

/* Mobile responsiveness safeguards */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .menu-grid, .menu-card, .menu-image-wrap, .contact-content, .contact-map, .testimonial-list { max-width:100%; box-sizing:border-box; }
  .menu-card, .testimonial-card { width:100%; margin-left:0; margin-right:0; }
  h1, h2, h3 { word-break: normal; overflow-wrap: normal; hyphens: auto; }

/* Global text wrapping rules: prefer wrapping between words, avoid forced mid-word breaks */
body, p, li, a, button, input, textarea, span, h1, h2, h3, h4, h5, h6 {
  word-break: normal !important;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/* Prevent small isolated letters at line start/ends where possible by avoiding extreme letter-spacing on small screens */
@media (max-width: 520px) {
  h1, h2, h3, .hero-word, .feel-good-heading h2, .centered-title h2 {
    letter-spacing: 0.01em; /* reduce tracking to keep words together */
    word-spacing: normal;
    hyphens: auto;
  }
}
  .hero, .route-hero, .feel-photo img, .menu-image-wrap > img { max-width:100%; height:auto; }
  .hero-burger-stage, .mascot-energy, .burger-stage { transform:none; }
}


.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);

/* ===== MOBILE-ONLY LAYOUT FIXES (max-width: 768px) =====
   Purpose: Fix heading overflow, centering, overlaps and horizontal scrolling
   Rules below are intentionally scoped to mobile to preserve desktop/tablet layout
   Comments explain each change. */
@media (max-width: 768px) {
  /* 1) Prevent horizontal scrolling introduced by oversized elements */
  html, body, #app, main { overflow-x: hidden; }

  /* 2) Global heading scaling - keep editorial tone while preventing overflow
     Applies to large decorative headings and section titles */
  h1, h2, h3, .hero-title, .centered-title h2, .feel-good-heading h2, .menu-heading h2, .feel-copy h2, .signature-word, .hero-word, .journey-heading h2 {
    font-size: clamp(20px, 7.2vw, 56px) !important; /* fluid, never exceed viewport */
    line-height: 1.02 !important;
    letter-spacing: 0.002em !important;
    -webkit-text-stroke: 0 !important; /* stroke causes measurable overflow on small screens */
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: keep-all !important; /* avoid mid-word breaks where possible */
  }

  /* 3) Hero title specific: reduce size and ensure it wraps rather than overflows */
  .hero-title {
    font-size: clamp(28px, 9vw, 120px) !important;
    transform: translateY(0) !important;
    text-align: center !important;
    white-space: normal !important;
    max-width: calc(100% - 40px) !important;
    left: 50% !important; /* center anchor */
    transform-origin: center !important;
  }

  /* 4) Ensure body text and section containers are centered with consistent padding */
  .centered-title, .feel-copy, .feel-good-heading, .menu-heading, .centered-title p, .centered-title .eyebrow, .section { padding-left: 18px !important; padding-right: 18px !important; text-align: center !important; box-sizing: border-box !important; }

  /* 5) CTAs centered and constrained so they are never covered by images */
  .pill-button, .header-pill, .gallery-cta .pill-button { display: inline-block !important; margin: 14px auto !important; text-align: center !important; max-width: calc(100% - 64px) !important; width: auto !important; }

  /* 6) Decorative background words (hero-word/signature-word): reduce scale & remove strokes */
  .hero-word, .signature-word { font-size: clamp(28px, 10vw, 88px) !important; -webkit-text-stroke: 0 !important; opacity: 0.9; }

  /* 7) Remove floating decorative elements that collide with content on mobile */
  .float-food, .food-a, .food-b, .food-c, .food-d, .collage-sticker { display: none !important; }

  /* 8) Benefits section: stack layout vertically and increase spacing so metadata is visible
     Ensures practice card doesn't overlap text and bottom labels are not clipped */
  .feel-good { grid-template-columns: 1fr !important; padding-top: 6vw !important; padding-bottom: 14vw !important; min-height: auto !important; }
  .feel-good-heading { position: relative !important; top: 0 !important; left: 0 !important; margin-bottom: 18px !important; z-index: 5 !important; }
  .burger-stage { grid-column: 1 / -1 !important; align-self: center !important; justify-self: center !important; width: min(88vw, 420px) !important; transform: none !important; margin-top: 14px !important; margin-bottom: 28px !important; }
  .food-metadata, .food-metadata.meta-left, .food-metadata.meta-right { position: static !important; grid-column: 1 / -1 !important; display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; text-align: center !important; margin: 12px auto 28px auto !important; padding: 0 18px !important; border-bottom: none !important; }
  .food-metadata > span { display: none !important; }

  /* 9) Photo collage: switch to a mobile-safe stacked/flex layout to prevent overlap and large gaps
     Keeps the polaroid feel but avoids absolute positioning on phones */
  .photo-collage { position: relative !important; height: auto !important; width: 100% !important; display: flex !important; flex-wrap: wrap !important; gap: 10px !important; justify-content: center !important; align-items: flex-start !important; margin: 24px auto !important; padding-left: 12px !important; padding-right: 12px !important; }
  .photo-card { position: relative !important; width: calc(50% - 12px) !important; transform: none !important; top: auto !important; left: auto !important; right: auto !important; margin: 6px !important; box-shadow: 0 12px 28px rgba(18,18,18,0.10) !important; }
  .photo-card img { aspect-ratio: auto !important; height: auto !important; object-fit: cover !important; }
  .photo-card-a, .photo-card-b, .photo-card-c { position: relative !important; transform: none !important; top: auto !important; left: auto !important; right: auto !important; }
  .photo-card figcaption { font-size: 14px !important; padding-top: 8px !important; }

  /* 10) Gallery preview & hero images constrained to viewport to avoid horizontal overflow */
  .gallery-preview, .hero, .route-hero, .full-photo { padding-left: 12px !important; padding-right: 12px !important; }
  .gallery-preview img, .photo-card img, .menu-image-wrap > img { max-width: 100% !important; height: auto !important; }

  /* 11) Ensure no element accidentally expands past viewport width */
  * { max-width: 100vw; box-sizing: border-box; }

  /* 12) Header adjustments to avoid overlap with hero */
  .site-header { padding-left: 12px !important; padding-right: 12px !important; }
  .header-actions { gap: 8px !important; }

  /* 13) Prevent decorative background typography clipping by reducing scale on very small screens */
  @media (max-width: 420px) {
    h1, h2, h3, .hero-title, .centered-title h2, .feel-good-heading h2 { font-size: clamp(18px, 9.6vw, 46px) !important; line-height: 1.02 !important; }
    .pill-button { padding-left: 18px !important; padding-right: 18px !important; }
    .burger-stage { width: min(92vw, 360px) !important; margin-top: 18px !important; }
    .photo-card { width: calc(100% - 24px) !important; }
  }

  /* 14) Reduce motion for users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-word, .signature-word, .photo-card img { transition: none !important; animation: none !important; }
  }

  /* 15) Accessibility: avoid awkward hyphenation and mid-word breaks on mobile */
  body, h1, h2, h3, p, span, a { hyphens: none !important; word-break: keep-all !important; overflow-wrap: break-word !important; }
}
/* ===== END mobile-only fixes ===== */

/* Additional mobile-specific centering for the About section
   Purpose: Ensure the ABOUT US heading and paragraph sit centered and readable on narrow phones */
@media (max-width: 420px) {
  /* Make the about heading compact and centered inside the viewport */
/* Aggressive mobile About-section overrides to guarantee centered, readable headings on phones */
@media (max-width: 768px) {
  /* ensure layout uses safe box-sizing */
  section#about .centered-title, section#about .centered-title * { box-sizing: border-box; }

  /* Force the big decorative heading to fit the viewport on phones/tablets */
  section#about .centered-title h2 {
    font-size: clamp(20px, 6.8vw, 42px) !important;
    line-height: 1.02 !important;
    -webkit-text-stroke: 0 !important; /* remove stroke which inflates visual width */
    letter-spacing: 0 !important;
    text-align: center !important;
    margin: 0 auto 10px !important;
    max-width: calc(100% - 40px) !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    transform: none !important;
  }

  /* Center eyebrow, paragraph and CTA, with tighter readable sizes */
  section#about .centered-title .eyebrow,
  section#about .centered-title p,
  section#about .centered-title .pill-button {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  section#about .centered-title p {
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: calc(100% - 40px) !important;
  }

  /* Safety: remove any transforms that could cause overlap */
  section#about .centered-title h2,
  section#about .centered-title { transform: none !important; }

  /* Prevent horizontal overflow */
  section#about { overflow-x: hidden !important; padding-left: 12px !important; padding-right: 12px !important; }
}

@media (max-width: 420px) {
  /* On the smallest phones use a slightly smaller clamp to keep lines to 2-3 rows */
  section#about .centered-title h2 { font-size: clamp(18px, 8.5vw, 38px) !important; line-height: 1.04 !important; }
  section#about .centered-title p { font-size: 14px !important; }
}
}

  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);
  pointer-events: none;
}

/* Timeline nodes (small editorial markers) */
.ingredient-line .timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--beige);
  box-shadow: 0 6px 18px rgb(27 27 27 / 10%);
  border: 1.5px solid var(--ink);
  z-index: 6;
}

/* Gallery preview safety and CTA - tightened composition, hover polish, mobile-first */
.gallery-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0; /* cards overlap naturally */
  padding: 8px 4vw 110px; /* reserve space for CTA */
  min-height: 180px;
  overflow: visible; /* allow decorative overlap but keep within container bounds */
}

.gallery-preview .photo-card {
  width: 180px;
  flex: 0 0 180px;
  position: relative;
  margin-left: -64px; /* create overlap between items */
  transition: transform 260ms var(--ease), box-shadow 200ms;
  will-change: transform;
  z-index: 2;
  cursor: pointer;
}

/* first item shouldn't be offset left */
.gallery-preview .photo-card:first-child { margin-left: 0; }

.gallery-preview .photo-card img { display: block; width:100%; height:auto; border-radius:8px; box-shadow: 0 12px 28px rgba(18,18,18,0.12); }

/* Polaroid caption */
.gallery-preview .photo-card figcaption { text-align:center; font-size:12px; margin-top:8px; color:var(--ink); }

/* Use CSS variables so hover can preserve horizontal offsets while moving up */
.photo-card-a { --tx:-64px; --ty:-8px; --rot:-6deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:6; }
.photo-card-b { --tx:-36px; --ty:-6px; --rot:4deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:7; }
.photo-card-c { --tx:-12px; --ty:-10px; --rot:-2deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:8; }
.photo-card-d { --tx:12px; --ty:-4px; --rot:6deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:7; }
.photo-card-e { --tx:36px; --ty:-8px; --rot:-8deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:6; }
.photo-card-f { --tx:64px; --ty:-2px; --rot:2deg; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); z-index:5; }

/* Hover: move up, slightly scale, soften rotate to 0 for clarity, preserve horizontal offset using vars */
.gallery-preview .photo-card:hover {
  transform: translate(var(--tx), calc(var(--ty) - 16px)) rotate(0deg) scale(1.06);
  box-shadow: 0 20px 42px rgba(18,18,18,0.18);
  z-index: 20;
}

/* CTA below preview */
.gallery-cta { text-align: center; margin-top: 6px; position: relative; z-index: 30; }
.gallery-cta .pill-button { transition: transform 160ms ease, box-shadow 160ms ease; }
.gallery-cta .pill-button:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(18,18,18,0.12); }
.gallery-cta .pill-button { z-index: 40; position: relative; }

/* Responsive adjustments - mobile-first */
@media (max-width: 1100px) {
  .gallery-preview .photo-card { width: 160px; flex: 0 0 160px; margin-left: -56px; }
  .photo-card-a { --tx:-56px; }
  .photo-card-b { --tx:-32px; }
  .photo-card-c { --tx:-8px; }
  .photo-card-d { --tx:8px; }
  .photo-card-e { --tx:32px; }
  .photo-card-f { --tx:56px; }
}
@media (max-width: 800px) {
  .gallery-preview { padding-bottom: 96px; min-height: 160px; }
  .gallery-preview .photo-card { width: 140px; flex: 0 0 140px; margin-left: -48px; }
  .photo-card-a { --tx:-48px; }
  .photo-card-b { --tx:-28px; }
  .photo-card-c { --tx:-8px; }
  .photo-card-d { --tx:8px; }
  .photo-card-e { --tx:28px; }
  .photo-card-f { --tx:48px; }
}
@media (max-width: 520px) {
  /* On small screens keep DOM light and stack clean - transforms disabled to avoid layout shifts */
  .gallery-preview { gap: 6px; padding-bottom: 84px; min-height: 140px; overflow: hidden; }
  .gallery-preview .photo-card { width: 120px; flex: 0 0 120px; margin-left: -32px; transition: transform 220ms var(--ease); }
  .photo-card-a, .photo-card-b, .photo-card-c, .photo-card-d, .photo-card-e, .photo-card-f { transform: none !important; }
  .gallery-preview .photo-card:hover { transform: translateY(-10px) scale(1.03) !important; }
}

.ingredient-line .timeline-node svg { display:block; width:18px; height:18px; }

/* Active small indicator that follows scroll progress */
.ingredient-line .timeline-active {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf-green);
  box-shadow: 0 6px 18px rgb(27 27 27 / 12%);
  z-index: 7;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  will-change: transform;
  transform-origin: center;
}

/* Make nodes subtle on desktop (thin strokes); colors drawn from palette */
.ingredient-line .timeline-node circle { stroke-width: 1.4px; }

/* Hide timeline on small screens (mobile) */
@media (max-width: 720px) {
  .ingredient-line,
  .ingredient-line .timeline-node,
  .ingredient-line .timeline-active,
  .journey-plane { display: none !important; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ingredient-line .timeline-active { transition: none; }
}

.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);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 30px;
}

.contact-actions .pill-button {
  min-width: 210px;
}

.contact-map {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  padding: 18px;
  border: 2px solid color-mix(in srgb, var(--beige) 68%, transparent);
  border-radius: 34px;
  background: color-mix(in srgb, var(--white) 10%, transparent);
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map-header strong {
  color: var(--yellow);
  font-family: var(--sticker);
  font-size: 22px;
  font-weight: 700;
}

.contact-map-preview {
  overflow: hidden;
  border-radius: 24px;
  background: color-mix(in srgb, var(--beige) 88%, var(--white));
}

.contact-map-preview img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-map-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.contact-map-footer a {
  color: var(--yellow);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* 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;
  }

  /* Increased spacing so instructor image doesn't overlap heading */
  .feel-photo {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensure heading block stays visually above image */
  .feel-copy { z-index: 3; margin-bottom: 18px; }

  @media (min-width: 1100px) {
    .feel-photo { margin-top: 96px; }
    .feel-photo > img { transform: translateY(8%); }
    .feel-copy { margin-bottom: 36px; }
  }

  @media (max-width: 520px) {
    /* keep mobile compact and avoid overlap by reducing vertical shifts */
    .feel-photo { margin-top: 22px; }
    .feel-photo > img { transform: none; }
    .feel-copy { margin-bottom: 12px; }
  }

  .mascot-energy {
    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="programs"] .feel-photo {
    width: min(82vw, 360px);
    margin: 36px auto 0;
  }

  body[data-route="home"] .feel-photo > img,
  body[data-route="programs"] .feel-photo > img {
    display: block;
    width: 100%;
    height: auto;
  }

  body[data-route="home"] .feel-photo .mascot-burger,
  body[data-route="programs"] .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;
  }
}
