/*
 * LOOP Food V3 — cinematic-world art direction override
 *
 * This file deliberately reconstructs only the transferable interaction grammar
 * observed in the Planetoño reference: one dominant object, solid-color worlds,
 * generous negative space, a persistent header, and scroll-led scene changes.
 * It does not copy source CSS, proprietary assets, typefaces, or brand identity.
 * Load after styles.css and sections.css.
 */

:root {
  --world-ink: #15130f;
  --world-cream: #f6efdf;
  --world-mustard: #e8ba3d;
  --world-coral: #d7633c;
  --world-blue: #8db6c3;
  --world-green: #a7bc62;
  --world-rule: 2px solid var(--world-ink);
  --world-shadow: 8px 8px 0 var(--world-ink);
  --world-gutter: clamp(1.25rem, 3vw, 3.5rem);
  --world-header-h: clamp(5rem, 12vh, 8.4375rem);
  --world-display: clamp(4.5rem, 7.3vw, 8.75rem);
  --world-heading: clamp(3.75rem, 6.2vw, 7.5rem);
  --world-speed: 720ms;
  color-scheme: light;
}

html {
  background: var(--world-mustard);
}

body {
  overflow-x: clip;
  background: var(--world-mustard);
  color: var(--world-ink);
}

main {
  overflow: clip;
}

::selection {
  color: var(--world-cream);
  background: var(--world-ink);
}

:focus-visible {
  outline: 3px solid var(--world-cream);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--world-ink);
}

.skip-link {
  z-index: 200;
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 4px 4px 0 var(--world-ink);
}

/* -------------------------------------------------------------------------- */
/* Persistent navigation — centered, finite, and visibly part of the scene.   */
/* -------------------------------------------------------------------------- */

.site-header.r-hero-navigation {
  position: fixed;
  inset: 0 auto auto 50%;
  z-index: 100;
  width: min(100% - 2 * var(--world-gutter), 92rem);
  height: var(--world-header-h);
  transform: translateX(-50%);
}

.site-header__bar {
  grid-template-columns: minmax(8rem, 1fr) auto minmax(8rem, 1fr);
  height: calc(var(--world-header-h) - clamp(1.25rem, 3vh, 2.25rem));
  min-height: 4.5rem;
  margin-top: clamp(0.75rem, 1.4vh, 1.25rem);
  padding-inline: clamp(1rem, 2vw, 2rem);
  border: var(--world-rule);
  border-radius: 1rem;
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 6px 6px 0 var(--world-ink);
}

.wordmark {
  color: var(--world-ink);
}

.wordmark__loop {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  letter-spacing: -0.055em;
}

.wordmark__loop::before {
  width: 0.8rem;
  height: 0.8rem;
  border-width: 2px;
  border-color: var(--world-coral);
  border-right-color: transparent;
}

.wordmark__food {
  color: var(--world-coral);
}

.primary-nav a,
.text-link {
  color: var(--world-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-nav a[aria-current="location"] {
  color: var(--world-coral);
}

.header-cta {
  min-height: 3rem;
  border: 2px solid var(--world-ink);
  border-radius: 999px;
  color: var(--world-cream);
  background: var(--world-ink);
  transition: color 180ms ease, background-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--world-ink);
  background: var(--world-mustard);
}

.menu-toggle {
  border: 2px solid var(--world-ink);
  border-radius: 999px;
  color: var(--world-ink);
}

/* -------------------------------------------------------------------------- */
/* World 01 — hero slider. Copy is right; operational controller is left.     */
/* -------------------------------------------------------------------------- */

.hero.comp-frame {
  --hero-world: var(--world-mustard);
  --hero-accent: var(--world-coral);
  --hero-world-ink: var(--world-ink);
  height: 100svh;
  min-height: 45rem;
  aspect-ratio: auto;
  color: var(--hero-world-ink);
  background: var(--hero-world);
  transition: background-color var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    color var(--world-speed) ease;
}

.hero[data-hero-state="0"] {
  --hero-world: var(--world-mustard);
  --hero-accent: var(--world-coral);
}

.hero[data-hero-state="1"] {
  --hero-world: var(--world-coral);
  --hero-accent: var(--world-cream);
}

.hero[data-hero-state="2"] {
  --hero-world: var(--world-blue);
  --hero-accent: var(--world-mustard);
}

.hero::before {
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.26em;
  color: transparent;
  font-size: clamp(18rem, 38vw, 46rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.8;
  content: "01";
  -webkit-text-stroke: 2px rgba(21, 19, 15, 0.16);
  pointer-events: none;
  transition: opacity 400ms ease;
}

.hero[data-hero-state="1"]::before { content: "02"; }
.hero[data-hero-state="2"]::before { content: "03"; }

.hero::after {
  position: absolute;
  z-index: 1;
  top: 14%;
  left: 25%;
  width: min(48vw, 46rem);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.42);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transition: left var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    width var(--world-speed) cubic-bezier(.22, .8, .2, 1);
}

.hero[data-hero-state="1"]::after {
  left: 20%;
  width: min(54vw, 52rem);
}

.hero[data-hero-state="2"]::after {
  left: 29%;
  width: min(43vw, 42rem);
}

.hero__charcoal.r-hero-charcoal-field {
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: var(--hero-world);
  transition: background-color var(--world-speed) ease;
}

.hero__kitchen.r-kitchen-pass-background {
  z-index: -1;
  top: 13%;
  left: 17%;
  width: 52%;
  height: 82%;
  overflow: hidden;
  border: 2px solid rgba(21, 19, 15, 0.44);
  border-radius: 50%;
  background: transparent;
  opacity: 0.28;
  transition: opacity var(--world-speed) ease, left var(--world-speed) ease;
}

.hero[data-hero-state="1"] .hero__kitchen {
  left: 13%;
  opacity: 0.38;
}

.hero[data-hero-state="2"] .hero__kitchen {
  left: 23%;
  opacity: 0.2;
}

.hero__kitchen img {
  opacity: 0.72;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
}

.hero__division {
  display: none;
}

.hero__copy.r-hero-copy {
  z-index: 20;
  top: 17%;
  right: var(--world-gutter);
  left: auto;
  width: min(40vw, 42rem);
  height: 65%;
  padding: 0;
  justify-content: center;
  color: var(--hero-world-ink);
}

.hero .eyebrow {
  max-width: 30rem;
  margin-bottom: clamp(1rem, 2vh, 1.75rem);
  color: currentColor;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero .eyebrow span {
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: currentColor;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: 8.5ch;
  color: currentColor;
  font-size: clamp(4rem, 7vw, 8.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em {
  color: currentColor;
  font-style: normal;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  max-width: 31rem;
  color: currentColor;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero__actions.r-hero-actions {
  z-index: 25;
  top: 21%;
  left: var(--world-gutter);
  width: clamp(17rem, 21vw, 22rem);
  height: auto;
  padding: clamp(1.15rem, 1.7vw, 1.75rem);
  border: var(--world-rule);
  border-radius: 1rem;
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: var(--world-shadow);
}

.hero__state {
  order: -1;
  display: block;
  width: 100%;
  margin: 0 0 1.2rem;
  padding: 0 0 1.15rem;
  border-top: 0;
  border-bottom: 2px solid var(--world-ink);
}

.hero__state-count {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--world-ink);
  font-size: clamp(2.75rem, 4.2vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero__state ol {
  display: grid;
  gap: 0.25rem;
  color: #756e63;
  font-size: 0.72rem;
}

.hero__state button {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(21, 19, 15, 0.22);
  color: inherit;
  text-align: left;
}

.hero__state button[aria-current="true"],
.hero__state button[aria-current="step"] {
  color: var(--world-coral);
  font-weight: 800;
}

.hero__state button[aria-current="true"]::before,
.hero__state button[aria-current="step"]::before {
  content: "●";
  margin-right: 0.55rem;
  font-size: 0.6rem;
}

.hero__cta-row {
  display: grid;
  gap: 0.55rem;
}

.primary-cta {
  min-height: 3.6rem;
  border: 2px solid var(--world-ink);
  border-radius: 999px;
  color: var(--world-cream);
  background: var(--world-ink);
}

.hero .text-link {
  justify-self: start;
  color: var(--world-ink);
}

.hero__robot.r-robot-reference-zone {
  z-index: 12;
  top: 10%;
  left: 26%;
  width: 34%;
  height: 88%;
  padding: 0;
  place-items: end center;
  transition: left var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    width var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    opacity 420ms ease;
}

.hero[data-hero-state="1"] .hero__robot {
  left: 21%;
  width: 31%;
  opacity: 0.82;
}

.hero[data-hero-state="2"] .hero__robot {
  left: 30%;
  width: 36%;
}

.robot-rig {
  height: calc(100% - 4.5rem);
  max-width: 100%;
}

.hero__robot-shadow {
  height: 2.2%;
  border: 2px solid rgba(21, 19, 15, 0.5);
  background: rgba(21, 19, 15, 0.18);
}

.hero__pizza.r-hero-pizza {
  z-index: 15;
  top: 63%;
  left: 42%;
  width: 28%;
  height: 34%;
  transition: left var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    width var(--world-speed) cubic-bezier(.22, .8, .2, 1),
    opacity 420ms ease;
}

.hero[data-hero-state="0"] .hero__pizza {
  left: 44%;
  width: 22%;
  opacity: 0.76;
}

.hero[data-hero-state="1"] .hero__pizza {
  left: 37%;
  width: 34%;
  opacity: 1;
}

.hero[data-hero-state="2"] .hero__pizza {
  left: 46%;
  width: 25%;
  opacity: 0.88;
}

.hero__pizza img {
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 100%;
}

.hero__pizza-shadow {
  right: 8%;
  bottom: 4%;
  width: 84%;
  height: 10%;
  border: 2px solid rgba(21, 19, 15, 0.38);
  background: rgba(21, 19, 15, 0.16);
}

.hero__rail.r-order-ticket-rail {
  z-index: 4;
  top: 7%;
  left: 18%;
  width: 52%;
  height: 48%;
  opacity: 0.32;
  mix-blend-mode: multiply;
}

.hero__rail img {
  height: 100%;
}

.hero__tickets {
  z-index: 18;
  top: 19%;
  left: 20%;
  width: 49%;
  height: 28%;
}

.ticket {
  width: clamp(5.75rem, 7vw, 7.5rem);
  min-height: clamp(6.5rem, 8.5vw, 8.75rem);
  border: 2px solid var(--world-ink);
  border-top: 0.45rem solid var(--hero-accent);
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 5px 5px 0 rgba(21, 19, 15, 0.9);
  opacity: 0.28;
  transition: opacity 300ms ease, top var(--world-speed) cubic-bezier(.22, .8, .2, 1);
}

.ticket.is-active,
.ticket[data-hero-active="true"] {
  z-index: 2;
  opacity: 1;
}

.ticket::before {
  border: 2px solid var(--world-ink);
  background: var(--world-ink);
}

.ticket--capacity { top: 12%; left: 3%; }
.ticket--flow { top: -2%; left: 43%; }
.ticket--return { top: 16%; right: 1%; }

/* -------------------------------------------------------------------------- */
/* World 02 — thesis, pinned method, and food payoff.                          */
/* -------------------------------------------------------------------------- */

.scene-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(32rem, 1.16fr);
  grid-template-rows: auto auto auto auto;
  align-content: center;
  column-gap: clamp(2rem, 5vw, 6.5rem);
  row-gap: clamp(0.8rem, 1.5vw, 1.4rem);
  min-height: 100svh;
  padding: calc(var(--world-header-h) + 3rem) var(--world-gutter) 5rem;
  overflow: hidden;
  border: 0;
  color: var(--world-ink);
  background: var(--world-coral);
}

.scene-intro::before {
  position: absolute;
  top: 50%;
  right: calc(var(--world-gutter) * 0.45);
  width: min(48vw, 47rem);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.38);
  border-radius: 50%;
  content: "";
  transform: translateY(-47%);
}

.scene-intro .section-kicker {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  color: currentColor;
}

.scene-intro h2 {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  max-width: 8.2ch;
  font-size: clamp(4.25rem, 6.35vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.scene-intro h2 em {
  color: currentColor;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.scene-intro > p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  max-width: 34rem;
  margin-top: 0.3rem;
  color: var(--world-ink);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
}

.scene-intro .chapter-link {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border: var(--world-rule);
  border-radius: 999px;
  background: var(--world-cream);
  font-weight: 700;
  text-decoration: none;
}

.scene-intro__demand {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 5;
  align-self: center;
  width: 100%;
  height: min(74vh, 46rem);
  min-height: 34rem;
  margin: 0;
  isolation: isolate;
}

.scene-intro__demand::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(91%, 42rem);
  aspect-ratio: 1;
  border: var(--world-rule);
  border-radius: 50%;
  background: var(--world-cream);
  box-shadow: 1rem 1rem 0 rgba(21, 19, 15, 0.14);
  content: "";
  transform: translate(-50%, -50%);
}

.scene-intro__orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(94%, 43rem);
  aspect-ratio: 1;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.scene-intro__orbit::before,
.scene-intro__orbit::after {
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--world-mustard);
  content: "";
  transform: translateY(-50%);
}

.scene-intro__orbit::before { left: -0.45rem; }
.scene-intro__orbit::after { right: -0.45rem; }

.scene-intro__demand img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(1rem 1.35rem 0 rgba(21, 19, 15, 0.18));
  transform: translate(-54%, -50%) rotate(-2deg) scale(1);
  transform-origin: center;
  transition: opacity 700ms ease, transform 1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.scene-intro__demand figcaption {
  position: absolute;
  z-index: 4;
  bottom: 4%;
  left: 2%;
  display: grid;
  gap: 0.2rem;
  max-width: 15rem;
  padding: 0.8rem 0.95rem;
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-mustard);
  box-shadow: 0.4rem 0.4rem 0 var(--world-ink);
  transform: rotate(-2deg);
}

.scene-intro__demand figcaption span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scene-intro__demand figcaption strong {
  font-size: 1rem;
  line-height: 1.05;
}

.scene-intro__signals {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -1rem;
  width: min(13.5rem, 34%);
  margin: 0;
  padding: 0;
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-cream);
  list-style: none;
  transform: translateY(-50%) rotate(1.5deg);
}

.scene-intro__signals li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.15rem 0.55rem;
  padding: 0.8rem 0.75rem;
  border-bottom: 1px solid rgba(21, 19, 15, 0.34);
}

.scene-intro__signals li:last-child { border-bottom: 0; }

.scene-intro__signals span {
  grid-row: 1 / 3;
  color: #aa4f2c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.scene-intro__signals strong {
  font-size: 0.9rem;
  line-height: 1;
}

.scene-intro__signals small {
  color: rgba(21, 19, 15, 0.72);
  font-size: 0.7rem;
  line-height: 1.25;
}

.method-section {
  --method-world: var(--world-mustard);
  color: var(--world-ink);
  background: var(--method-world);
  transition: background-color var(--world-speed) ease;
}

.method-section[data-method-stage="0"] { --method-world: var(--world-mustard); }
.method-section[data-method-stage="1"] { --method-world: var(--world-blue); }
.method-section[data-method-stage="2"] { --method-world: var(--world-green); }
.method-section[data-method-stage="3"] { --method-world: var(--world-coral); }

.motion-ready .method-section {
  height: 520svh;
}

.method-stage {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: calc(var(--world-header-h) + 1.5rem) var(--world-gutter) 2rem;
  overflow: hidden;
  background: var(--method-world);
  transition: background-color var(--world-speed) ease;
}

.motion-ready .method-stage {
  height: 100svh;
  min-height: 43rem;
  padding: calc(var(--world-header-h) + 1.5rem) var(--world-gutter) 2rem;
}

.method-stage::before {
  position: absolute;
  top: 51%;
  left: 50%;
  width: min(68vh, 52vw);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.4);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.method-stage::after {
  position: absolute;
  right: var(--world-gutter);
  bottom: 2.6rem;
  width: clamp(4rem, 8vw, 9rem);
  height: clamp(4rem, 8vw, 9rem);
  border: var(--world-rule);
  background: var(--world-cream);
  box-shadow: 5px 5px 0 var(--world-ink);
  content: "";
  transform: rotate(calc(var(--method-progress, 0) * 135deg));
}

.method-topline {
  position: absolute;
  z-index: 12;
  top: calc(var(--world-header-h) + 1rem);
  right: var(--world-gutter);
  left: var(--world-gutter);
  display: flex;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(21, 19, 15, 0.5);
}

.method-topline .section-kicker,
.method-topline > span {
  color: var(--world-ink);
  font-weight: 700;
}

.method-copy {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: block;
  pointer-events: none;
}

.method-beat {
  position: absolute;
  inset: 0;
  padding: 0;
}

.motion-ready .method-beat {
  position: absolute;
  inset: 0;
  padding: 0;
}

.method-beat__index {
  position: absolute;
  left: var(--world-gutter);
  bottom: clamp(13.25rem, 24vh, 16.5rem);
  margin: 0;
  color: var(--world-ink);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-beat h3 {
  position: absolute;
  z-index: 3;
  bottom: clamp(5.8rem, 9vh, 7rem);
  left: var(--world-gutter);
  max-width: 8.8ch;
  margin: 0;
  color: var(--world-ink);
  font-size: clamp(4rem, 6.8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.method-beat h3 em {
  color: currentColor;
  font-style: normal;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.method-beat > p:not(.method-beat__index) {
  position: absolute;
  z-index: 4;
  right: var(--world-gutter);
  bottom: clamp(10rem, 18vh, 13rem);
  width: min(27vw, 27rem);
  margin: 0;
  color: var(--world-ink);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
}

.method-beat__note {
  position: absolute;
  z-index: 4;
  right: var(--world-gutter);
  bottom: clamp(7.5rem, 13vh, 9.5rem);
  width: min(27vw, 27rem);
  color: var(--world-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pizza-stage,
.motion-ready .pizza-stage {
  position: absolute;
  z-index: 5;
  top: 49%;
  left: 52%;
  width: min(57vh, 43vw);
  margin: 0;
  transform: translate(-50%, -50%);
}

.pizza-stage__orbit {
  inset: -7%;
  border: 2px solid rgba(21, 19, 15, 0.55);
}

.pizza-stage__orbit::after {
  inset: 7%;
  border: 2px solid rgba(21, 19, 15, 0.25);
}

.pizza-stage__caption {
  position: absolute;
  right: -9%;
  bottom: 7%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: var(--world-rule);
  border-radius: 999px;
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 4px 4px 0 var(--world-ink);
  font-weight: 700;
}

.status-dot {
  border: 1px solid var(--world-ink);
  background: var(--world-coral);
}

.method-nav {
  position: absolute;
  z-index: 15;
  right: auto;
  bottom: 1.25rem;
  left: var(--world-gutter);
  width: min(44rem, 59vw);
  margin: 0;
}

.method-nav ol {
  border-top: 2px solid rgba(21, 19, 15, 0.5);
}

.method-nav a {
  min-height: 3.6rem;
  padding: 0.8rem 0.25rem;
  color: #15130f;
  font-weight: 700;
}

.method-nav a[aria-current="step"] {
  color: var(--world-ink);
}

.method-nav a[aria-current="step"] strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.method-progress {
  height: 4px;
}

.method-progress span {
  background: var(--world-ink);
}

.food-film {
  min-height: 100svh;
  border-top: var(--world-rule);
  border-bottom: var(--world-rule);
  background: var(--world-ink);
}

.food-film::after {
  position: absolute;
  inset: var(--world-gutter);
  z-index: 0;
  border: 2px solid rgba(246, 239, 223, 0.45);
  content: "";
  pointer-events: none;
}

.food-film__media {
  z-index: -1;
}

.food-film video {
  filter: saturate(0.9) contrast(1.08);
}

.food-film__copy {
  position: relative;
  z-index: 2;
  width: min(48rem, calc(100% - 2 * var(--world-gutter)));
  margin: var(--world-gutter);
  padding: clamp(1.5rem, 3vw, 3rem);
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: var(--world-shadow);
}

.food-film__copy .section-kicker,
.food-film__copy > p:not(.section-kicker),
.food-film__copy > span {
  color: var(--world-ink);
}

.food-film__copy h2 {
  color: var(--world-ink);
  font-size: var(--world-heading);
  font-weight: 800;
}

.food-film__copy h2 em {
  color: var(--world-coral);
}

/* -------------------------------------------------------------------------- */
/* World 03 — one continuous operational world: ticket, channels, maps.       */
/* -------------------------------------------------------------------------- */

.journey-section,
.channels-section,
.operations-section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--world-header-h) + 2rem) var(--world-gutter) 5rem;
  overflow: hidden;
  color: var(--world-ink);
}

.journey-section {
  background: var(--world-blue);
}

.journey-section::before,
.channels-section::before,
.operations-section::before {
  position: absolute;
  width: min(55vw, 55rem);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.35);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.journey-section::before {
  top: 20%;
  left: 27%;
}

.journey-heading,
.channels-heading,
.operations-heading {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: 1rem 5vw;
  max-width: none;
  margin: 0;
}

.journey-heading .section-kicker,
.channels-heading .section-kicker,
.operations-heading .section-kicker {
  grid-column: 1 / -1;
  color: var(--world-ink);
}

.journey-heading h2,
.channels-heading h2,
.operations-heading h2 {
  max-width: 10ch;
  color: var(--world-ink);
  font-size: var(--world-heading);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.journey-heading h2 em,
.channels-heading h2 em,
.operations-heading h2 em {
  color: currentColor;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.journey-heading > p:last-child,
.channels-heading > p:last-child,
.operations-heading > p:last-child {
  align-self: end;
  max-width: 29rem;
  color: var(--world-ink);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
}

.journey-theatre {
  position: relative;
  z-index: 5;
  min-height: 43vh;
  padding-top: 2.5rem;
}

.journey-ticket {
  position: absolute;
  top: 47%;
  left: 50%;
  width: clamp(10rem, 13vw, 14rem);
  min-height: clamp(13rem, 18vw, 18rem);
  margin: 0;
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: var(--world-shadow);
  transform: translate3d(calc(-50% + var(--ticket-x, 0px)), -50%, 0)
    rotate(var(--ticket-rotation, -4deg));
}

.journey-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 2px solid rgba(21, 19, 15, 0.55);
}

.journey-rail li {
  min-height: 9rem;
  padding: 1.5rem 1rem 0;
  border-right: 1px solid rgba(21, 19, 15, 0.28);
  opacity: 0.44;
  transition: opacity 260ms ease;
}

.journey-rail li.is-active {
  opacity: 1;
}

.journey-stop {
  top: -0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid var(--world-ink);
  color: var(--world-ink);
  background: var(--world-blue);
}

.journey-rail li.is-active .journey-stop {
  border-color: var(--world-ink);
  color: var(--world-cream);
  background: var(--world-ink);
}

.journey-rail h3,
.journey-rail p,
.journey-section .scene-footnote {
  color: var(--world-ink);
}

.journey-section .scene-footnote {
  position: absolute;
  right: var(--world-gutter);
  bottom: 1rem;
  left: var(--world-gutter);
  z-index: 7;
  margin: 0;
  opacity: 0.7;
}

.channels-section {
  min-height: 125svh;
  color: var(--world-ink);
  background: var(--world-cream);
}

.channels-section::before {
  top: 5%;
  right: -13%;
}

.channel-list {
  position: relative;
  z-index: 5;
  margin-top: clamp(4rem, 9vh, 8rem);
  border-bottom: 2px solid var(--world-ink);
}

.channel {
  border-top: 2px solid var(--world-ink);
  border-bottom: 0;
  background: transparent;
}

.channel:last-child {
  border-bottom: 0;
}

.channel summary {
  grid-template-columns: 4rem minmax(0, 1fr) 10rem 2.5rem;
  gap: clamp(1rem, 2vw, 2.5rem);
  min-height: clamp(6rem, 10vw, 10rem);
  padding: 1rem 0;
}

.channel__number {
  color: var(--world-ink);
  font-weight: 800;
}

.channel h3 {
  color: var(--world-ink);
  font-size: clamp(2.6rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.channel h3 span,
.channel__type {
  color: rgba(21, 19, 15, 0.55);
}

.channel__type {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.channel__toggle {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--world-ink);
  border-radius: 50%;
}

.channel__toggle::before,
.channel__toggle::after {
  right: 0.35rem;
  left: 0.35rem;
  width: auto;
}

.channel[open] {
  background: var(--world-mustard);
}

.channel[open] h3 {
  color: var(--world-ink);
}

.channel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
  gap: 2rem;
  max-width: none;
  padding: 0 4.5rem 2.5rem;
}

.channel__body p,
.channel__body .channel__condition,
.channels-section .scene-footnote {
  color: var(--world-ink);
}

.channels-section .scene-footnote {
  margin-top: 2rem;
}

.operations-section {
  min-height: 125svh;
  color: var(--world-cream);
  background: var(--world-ink);
}

.operations-section::before {
  top: 14%;
  left: -10%;
  border-color: rgba(246, 239, 223, 0.24);
}

.operations-heading .section-kicker,
.operations-heading h2,
.operations-heading > p:last-child {
  color: var(--world-cream);
}

.system-maps {
  position: relative;
  z-index: 5;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  margin-top: clamp(4rem, 8vh, 7rem);
}

.system-map {
  position: relative;
  min-height: 41rem;
  padding: 2rem;
  overflow: hidden;
  border: 2px solid var(--world-cream);
  border-radius: 50%;
}

.system-map__title {
  position: relative;
  z-index: 3;
  color: var(--world-cream);
}

.system-map__title > span {
  color: var(--world-cream);
}

.system-map__title h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
}

.system-map__hub {
  width: 11rem;
  height: 11rem;
  margin: 2rem auto;
  border: 2px solid var(--world-cream);
  color: var(--world-cream);
}

.system-map__hub::before,
.system-map__hub::after {
  display: none;
}

.system-map__hub > span {
  font-size: 2.2rem;
  font-weight: 800;
}

.system-map__hub small {
  color: var(--world-cream);
}

.system-map--outside {
  color: var(--world-ink);
  background: var(--world-coral);
}

.system-map--outside .system-map__title,
.system-map--outside .system-map__title > span {
  color: var(--world-ink);
}

.system-map--outside .system-map__hub {
  border-color: var(--world-ink);
  color: var(--world-cream);
  background: var(--world-ink);
}

.system-map__nodes {
  border-top: 2px solid currentColor;
}

.system-node {
  border-bottom: 1px solid currentColor;
}

.system-node summary {
  min-height: 3.5rem;
  padding: 0.9rem 0;
  color: inherit;
  font-weight: 700;
}

.system-node[open] summary {
  color: var(--world-mustard);
}

.system-map--outside .system-node[open] summary {
  color: var(--world-cream);
}

.system-node p {
  color: inherit;
  opacity: 0.75;
}

/* -------------------------------------------------------------------------- */
/* World 04 — quiet return, then decisive conversion.                          */
/* -------------------------------------------------------------------------- */

.return-section {
  position: relative;
  min-height: 82svh;
  padding: calc(var(--world-header-h) + 2rem) var(--world-gutter) 5rem;
  overflow: hidden;
  border: 0;
  color: var(--world-ink);
  background: var(--world-green);
  text-align: left;
}

.return-section::before {
  position: absolute;
  top: 50%;
  right: -10%;
  width: min(60vw, 56rem);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.32);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.return-section .section-kicker {
  position: relative;
  z-index: 2;
  color: var(--world-ink);
}

.return-section h2 {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  color: var(--world-ink);
  font-size: var(--world-heading);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.return-section h2 em {
  color: currentColor;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.return-loop {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 64rem;
  margin: clamp(3rem, 8vh, 7rem) 0 0;
  padding: 1.5rem 0;
  border-color: var(--world-ink);
}

.return-loop span {
  font-size: clamp(0.9rem, 1.35vw, 1.25rem);
  font-weight: 700;
}

.return-loop i {
  color: var(--world-ink);
}

.return-section > p:last-child {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--world-ink);
  font-weight: 600;
}

.diagnostic-section {
  position: relative;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  min-height: 100svh;
  padding: calc(var(--world-header-h) + 1rem) var(--world-gutter) 2rem;
  overflow: hidden;
  color: var(--world-ink);
  background: var(--world-coral);
}

.diagnostic-section::before {
  position: absolute;
  top: 11%;
  left: -8%;
  width: min(58vw, 55rem);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 19, 15, 0.36);
  border-radius: 50%;
  content: "";
}

.diagnostic-copy {
  position: relative;
  z-index: 5;
  grid-column: 2;
  align-self: center;
}

.diagnostic-copy .section-kicker {
  color: var(--world-ink);
}

.diagnostic-copy h2 {
  max-width: 8ch;
  color: var(--world-ink);
  font-size: clamp(4rem, 7vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.diagnostic-copy h2 em {
  color: currentColor;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

.diagnostic-copy > p:not(.section-kicker) {
  color: var(--world-ink);
  font-weight: 600;
}

.diagnostic-brief summary {
  min-height: 4rem;
  border: var(--world-rule);
  border-radius: 999px;
  color: var(--world-cream);
  background: var(--world-ink);
}

.diagnostic-brief > div {
  margin-top: 0.6rem;
  border: var(--world-rule);
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 5px 5px 0 var(--world-ink);
}

.diagnostic-robot {
  position: relative;
  z-index: 3;
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  width: min(100%, 38rem);
  margin: 0;
}

.diagnostic-robot img {
  width: 100%;
  max-height: calc(100svh - var(--world-header-h));
}

.diagnostic-robot figcaption {
  position: absolute;
  right: 0;
  bottom: 8%;
  padding: 0.7rem 0.9rem;
  border: var(--world-rule);
  border-radius: 999px;
  color: var(--world-ink);
  background: var(--world-cream);
  box-shadow: 4px 4px 0 var(--world-ink);
  font-weight: 700;
}

.site-footer {
  min-height: 18rem;
  padding: 4rem var(--world-gutter);
  border-top: 2px solid var(--world-cream);
  color: var(--world-cream);
  background: var(--world-ink);
}

.site-footer .wordmark {
  color: var(--world-cream);
}

/* -------------------------------------------------------------------------- */
/* Responsive recomposition — not a desktop crop.                             */
/* -------------------------------------------------------------------------- */

@media (max-width: 68rem) {
  :root {
    --world-header-h: 5.75rem;
  }

  .site-header__bar {
    grid-template-columns: 1fr auto auto;
    height: 4.4rem;
  }

  .primary-nav.is-open {
    top: 5.4rem;
    right: var(--world-gutter);
    left: var(--world-gutter);
    border: var(--world-rule);
    border-radius: 1rem;
    color: var(--world-ink);
    background: var(--world-cream);
    box-shadow: var(--world-shadow);
  }

  .primary-nav.is-open a {
    border-color: rgba(21, 19, 15, 0.22);
    color: var(--world-ink);
  }

  .hero__copy.r-hero-copy {
    right: var(--world-gutter);
    width: 42%;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 5.75rem);
  }

  .hero__actions.r-hero-actions {
    top: 19%;
    width: clamp(15rem, 23vw, 18rem);
  }

  .hero__robot.r-robot-reference-zone {
    left: 25%;
    width: 36%;
  }

  .journey-rail h3 {
    font-size: 0.9rem;
  }

  .journey-rail p {
    font-size: 0.75rem;
  }

  .system-map {
    min-height: 34rem;
  }
}

@media (max-width: 48rem) {
  :root {
    --world-gutter: clamp(1rem, 5vw, 1.5rem);
    --world-header-h: 5.25rem;
  }

  .site-header.r-hero-navigation {
    width: calc(100% - 2rem);
  }

  .site-header__bar {
    height: 4rem;
    margin-top: 0.65rem;
    padding-inline: 0.85rem;
    border-radius: 0.8rem;
    box-shadow: 4px 4px 0 var(--world-ink);
  }

  .header-cta {
    min-height: 2.65rem;
  }

  .hero.comp-frame {
    min-height: 49rem;
  }

  .hero::before {
    right: -0.12em;
    bottom: 0.03em;
    font-size: 75vw;
  }

  .hero::after {
    top: 44%;
    left: 14%;
    width: 90vw;
  }

  .hero__kitchen.r-kitchen-pass-background {
    top: 43%;
    left: 9%;
    width: 92%;
    height: 55%;
  }

  .hero__copy.r-hero-copy {
    top: 12%;
    right: var(--world-gutter);
    left: var(--world-gutter);
    width: auto;
    height: 31%;
    justify-content: flex-start;
  }

  .hero .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.58rem;
  }

  .hero .eyebrow span {
    padding: 0.35rem 0.5rem;
  }

  .hero h1 {
    max-width: 8.5ch;
    font-size: clamp(3.2rem, 14vw, 4.6rem);
    line-height: 0.84;
  }

  .hero__lede {
    max-width: 24rem;
    margin-top: 0.85rem;
    font-size: 0.86rem;
  }

  .hero__actions.r-hero-actions {
    top: auto;
    bottom: 1.2rem;
    left: var(--world-gutter);
    width: calc(100% - 2 * var(--world-gutter));
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero__state {
    display: none;
  }

  .hero__cta-row {
    display: flex;
  }

  .hero .text-link {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
  }

  .hero__robot.r-robot-reference-zone,
  .hero[data-hero-state="1"] .hero__robot,
  .hero[data-hero-state="2"] .hero__robot {
    top: 41%;
    left: 34%;
    width: 62%;
    height: 50%;
  }

  .hero__pizza.r-hero-pizza,
  .hero[data-hero-state="0"] .hero__pizza,
  .hero[data-hero-state="1"] .hero__pizza,
  .hero[data-hero-state="2"] .hero__pizza {
    top: 67%;
    left: 1%;
    width: 49%;
    height: 24%;
  }

  .hero__rail.r-order-ticket-rail {
    top: 42%;
    left: 5%;
    width: 90%;
    height: 24%;
  }

  .hero__tickets {
    top: 46%;
    left: 4%;
    width: 92%;
    height: 18%;
  }

  .ticket {
    width: 4.4rem;
    min-height: 5.4rem;
    padding: 0.5rem;
    box-shadow: 3px 3px 0 var(--world-ink);
  }

  .ticket--flow { left: 37%; }

  .scene-intro,
  .journey-heading,
  .channels-heading,
  .operations-heading {
    grid-template-columns: 1fr;
  }

  .scene-intro {
    grid-template-rows: auto auto minmax(20rem, 42vh) auto auto;
    align-content: start;
    min-height: auto;
    padding: calc(var(--world-header-h) + 2rem) var(--world-gutter) 4rem;
    row-gap: 1rem;
  }

  .scene-intro::before { display: none; }

  .scene-intro .section-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  .scene-intro h2,
  .journey-heading h2,
  .channels-heading h2,
  .operations-heading h2,
  .return-section h2 {
    font-size: clamp(3.4rem, 14vw, 5.25rem);
  }

  .scene-intro h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 9ch;
  }

  .scene-intro > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0.5rem;
  }

  .scene-intro .chapter-link {
    grid-column: 1;
    grid-row: 5;
  }

  .scene-intro__demand {
    grid-column: 1;
    grid-row: 3;
    width: calc(100% + var(--world-gutter) * 2);
    height: 100%;
    min-height: 20rem;
    margin-left: calc(var(--world-gutter) * -1);
  }

  .scene-intro__demand::before {
    width: min(82vw, 26rem);
    box-shadow: 0.65rem 0.65rem 0 rgba(21, 19, 15, 0.14);
  }

  .scene-intro__orbit {
    width: min(86vw, 27rem);
  }

  .scene-intro__demand img {
    width: 115%;
    height: 108%;
    transform: translate(-53%, -50%) rotate(-2deg) scale(1);
  }

  .scene-intro__demand figcaption {
    top: 5%;
    bottom: auto;
    left: var(--world-gutter);
    max-width: 11.5rem;
    padding: 0.58rem 0.68rem;
  }

  .scene-intro__demand figcaption strong { font-size: 0.82rem; }

  .scene-intro__signals {
    top: auto;
    right: var(--world-gutter);
    bottom: 1%;
    left: var(--world-gutter);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    transform: none;
  }

  .scene-intro__signals li {
    grid-template-columns: 1.25rem minmax(0, 1fr);
    padding: 0.6rem 0.45rem;
    border-right: 1px solid rgba(21, 19, 15, 0.34);
    border-bottom: 0;
  }

  .scene-intro__signals li:last-child { border-right: 0; }
  .scene-intro__signals small { display: none; }
  .scene-intro__signals span { grid-row: auto; }
  .scene-intro__signals strong { font-size: clamp(0.68rem, 2.9vw, 0.82rem); }

  .motion-ready .method-section {
    height: 460svh;
  }

  .method-stage,
  .motion-ready .method-stage {
    min-height: 42rem;
    padding: calc(var(--world-header-h) + 1rem) var(--world-gutter) 1rem;
  }

  .method-stage::before {
    top: 49%;
    width: min(88vw, 28rem);
  }

  .method-stage::after {
    display: none;
  }

  .method-topline {
    top: calc(var(--world-header-h) + 0.5rem);
  }

  .method-beat__index {
    bottom: 12.5rem;
  }

  .method-beat h3 {
    bottom: 6.7rem;
    max-width: 9ch;
    font-size: clamp(3rem, 12.5vw, 4.7rem);
  }

  .method-beat h3 br {
    display: block;
  }

  .method-beat > p:not(.method-beat__index) {
    top: calc(var(--world-header-h) + 4.25rem);
    right: var(--world-gutter);
    bottom: auto;
    left: var(--world-gutter);
    width: auto;
    max-width: 28rem;
    font-size: 0.92rem;
  }

  .method-beat__note {
    display: none;
  }

  .pizza-stage,
  .motion-ready .pizza-stage {
    top: 49%;
    left: 50%;
    width: min(76vw, 36vh);
  }

  .pizza-stage__caption {
    right: -7%;
    bottom: 2%;
    font-size: 0.62rem;
  }

  .method-nav {
    right: var(--world-gutter);
    bottom: 0.8rem;
    left: var(--world-gutter);
    width: auto;
  }

  .method-nav a {
    min-height: 3.2rem;
    font-size: 0.65rem;
  }

  .food-film__copy {
    margin: var(--world-gutter);
    box-shadow: 5px 5px 0 var(--world-ink);
  }

  .journey-section,
  .channels-section,
  .operations-section,
  .return-section,
  .diagnostic-section {
    padding: calc(var(--world-header-h) + 1.25rem) var(--world-gutter) 4rem;
  }

  .journey-heading > p:last-child,
  .channels-heading > p:last-child,
  .operations-heading > p:last-child {
    margin-top: 1.5rem;
  }

  .journey-theatre {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1.5rem;
    min-height: 33rem;
    padding-top: 3rem;
  }

  .journey-ticket {
    position: sticky;
    top: calc(var(--world-header-h) + 1rem);
    left: auto;
    width: 7rem;
    min-height: 11rem;
    transform: rotate(-4deg);
  }

  .journey-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    border-top: 0;
    border-left: 2px solid rgba(21, 19, 15, 0.55);
    padding-left: 1rem;
  }

  .journey-rail li {
    min-height: 5rem;
    padding: 0 0 1.25rem 0.75rem;
    border-right: 0;
  }

  .journey-stop {
    top: 0;
    left: -1.95rem;
  }

  .journey-section .scene-footnote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 2rem;
  }

  .channels-section {
    min-height: 100svh;
  }

  .channel summary {
    grid-template-columns: 1.75rem minmax(0, 1fr) 2rem;
    min-height: 6rem;
  }

  .channel h3 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .channel__type {
    display: none;
  }

  .channel__body {
    display: block;
    padding: 0 0 1.5rem 2.75rem;
  }

  .channel__body p + p {
    margin-top: 1rem;
  }

  .operations-section {
    min-height: 100svh;
  }

  .system-maps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .system-map {
    min-height: 32rem;
    padding: 1.5rem;
    border-radius: 14rem;
  }

  .return-section {
    min-height: 100svh;
  }

  .return-loop {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .return-loop i {
    transform: rotate(90deg);
  }

  .diagnostic-section {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .diagnostic-copy {
    grid-row: 1;
    grid-column: 1;
  }

  .diagnostic-copy h2 {
    font-size: clamp(3.7rem, 14vw, 5.75rem);
  }

  .diagnostic-robot {
    grid-row: 2;
    grid-column: 1;
    width: min(88vw, 28rem);
    margin: 1rem auto -2rem;
  }

  .diagnostic-robot img {
    max-height: 48rem;
  }

  .site-footer {
    min-height: 20rem;
  }
}

@media (max-height: 42rem) and (min-width: 48.01rem) {
  .scene-intro {
    grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
    align-content: start;
    column-gap: 1rem;
    min-height: 36rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .scene-intro h2 {
    font-size: clamp(3.35rem, 6vw, 4.8rem);
  }

  .scene-intro__demand {
    height: 31rem;
    min-height: 0;
  }
}

@media (max-height: 42rem) and (min-width: 49rem) {
  :root {
    --world-header-h: 4.8rem;
  }

  .site-header__bar {
    height: 3.75rem;
    margin-top: 0.5rem;
  }

  .hero.comp-frame {
    min-height: 36rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6.2vw, 5.2rem);
  }

  .hero__copy.r-hero-copy {
    top: 14%;
    height: 61%;
  }

  .hero__actions.r-hero-actions {
    top: 18%;
  }

  .method-section,
  .motion-ready .method-section {
    height: auto;
  }

  .method-stage,
  .motion-ready .method-stage {
    position: relative;
    height: auto;
    min-height: 38rem;
    overflow: visible;
  }

  .method-copy,
  .motion-ready .method-copy {
    position: relative;
    inset: auto;
    display: block;
  }

  .method-beat,
  .motion-ready .method-beat {
    position: relative;
    inset: auto;
    display: block;
    min-height: 32rem;
    opacity: 1;
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 0px) {
  .hero,
  .hero::after,
  .hero__kitchen,
  .hero__robot,
  .hero__pizza,
  .ticket,
  .method-section,
  .method-stage,
  .journey-rail li {
    transition: none !important;
  }

  .hero::before {
    content: "01";
  }

  .method-section,
  .motion-ready .method-section {
    height: auto;
  }

  .method-stage,
  .motion-ready .method-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    column-gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: 4rem;
  }

  .method-stage::before,
  .method-stage::after,
  .method-nav {
    display: none;
  }

  .method-copy,
  .motion-ready .method-copy {
    position: relative;
    inset: auto;
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .method-beat,
  .motion-ready .method-beat {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr);
    gap: 1rem 3rem;
    min-height: 26rem;
    padding: 4rem 0;
    border-bottom: 2px solid rgba(21, 19, 15, 0.35);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .method-beat__index,
  .method-beat h3,
  .method-beat > p:not(.method-beat__index),
  .method-beat__note {
    position: static;
    width: auto;
  }

  .method-beat h3 {
    font-size: clamp(3.4rem, 7vw, 6.5rem);
  }

  .pizza-stage,
  .motion-ready .pizza-stage {
    position: sticky;
    top: calc(var(--world-header-h) + 2rem);
    left: auto;
    grid-column: 2;
    grid-row: 1;
    width: min(28rem, 80vw);
    margin: 4rem auto 0;
    transform: none;
  }

  .food-film video {
    display: none;
  }

  .food-film__media {
    background: var(--world-ink) url("./assets/food/v3/pizza-method-04.webp") center / contain no-repeat;
  }
}

@media (max-width: 0px) and (prefers-reduced-motion: reduce) {
  .method-stage,
  .motion-ready .method-stage {
    display: block;
  }

  .pizza-stage,
  .motion-ready .pizza-stage {
    position: relative;
    top: auto;
    width: min(24rem, 86vw);
    margin-top: 2rem;
  }
}

@media (forced-colors: active) {
  .hero h1 em,
  .scene-intro h2 em,
  .method-beat h3 em,
  .journey-heading h2 em,
  .channels-heading h2 em,
  .operations-heading h2 em,
  .return-section h2 em,
  .diagnostic-copy h2 em {
    -webkit-text-fill-color: currentColor;
  }

  .hero::before,
  .hero::after,
  .scene-intro::before,
  .method-stage::before,
  .method-stage::after,
  .journey-section::before,
  .channels-section::before,
  .operations-section::before,
  .return-section::before,
  .diagnostic-section::before {
    display: none;
  }
}
