:root {
  color-scheme: dark;
  --ink: #130b10;
  --counter: #211118;
  --counter-2: #321a25;
  --cream: #fff0d8;
  --paper: #fff8eb;
  --butter: #f2c65a;
  --rose: #ee5c88;
  --mint: #8bd0a5;
  --steel: #9eb8c7;
  --cocoa: #9b6449;
  --muted: rgba(255, 240, 216, 0.82);
  --faint: rgba(255, 240, 216, 0.12);
  --line: rgba(255, 240, 216, 0.18);
  --dark-line: rgba(19, 11, 16, 0.14);
  --shadow: rgba(4, 2, 4, 0.45);
  --aw-mx: 0;
  --aw-my: 0;
  --aw-vx: 0;
  --aw-vy: 0;
  --aw-pointer-speed: 0;
  --aw-page-progress: 0;
  --section-progress: 0;
  --kinetic-progress: 0;
  --rail-progress: 0;
  --rail-x: 0px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 240, 216, 0.035) 1px, transparent 1px) 0 0 / clamp(54px, 7.2vw, 112px) 100%,
    linear-gradient(180deg, #130b10 0%, #211118 42%, #150c11 100%);
  overflow-x: clip;
}

body::selection {
  background: var(--butter);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  background: var(--butter);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.counter-field,
.case-light {
  position: fixed;
  inset: -12vmax;
  pointer-events: none;
  z-index: -2;
}

.counter-field {
  opacity: 0.82;
  background:
    radial-gradient(ellipse at calc(54% + var(--aw-mx) * 26%) calc(38% + var(--aw-my) * 20%), rgba(238, 92, 136, 0.28), transparent 32rem),
    linear-gradient(115deg, rgba(242, 198, 90, 0.08), transparent 34%, rgba(158, 184, 199, 0.12) 70%, transparent);
  filter: hue-rotate(calc(var(--aw-mx) * 16deg)) saturate(calc(1 + var(--aw-pointer-speed) * 0.22));
  transform: translate3d(calc(var(--aw-vx) * 18px), calc(var(--aw-vy) * 18px), 0);
}

.case-light {
  z-index: -1;
  opacity: 0.62;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 240, 216, 0.06) 18%, transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 240, 216, 0.04) 0 1px, transparent 1px 26px);
  transform:
    translate3d(calc(var(--aw-mx) * 18px), calc(var(--aw-my) * 10px), 0)
    skewX(calc(var(--aw-mx) * 2deg));
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 240, 216, 0.08);
}

.page-progress span {
  display: block;
  width: calc(var(--aw-page-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--butter), var(--mint), var(--steel));
}

.shutter-grid {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
  animation: shutterGone 1ms linear 1400ms forwards;
}

.is-ready .shutter-grid {
  display: none;
}

.shutter-grid span {
  background: #070407;
  transform-origin: top;
  animation: shutterOpen 980ms cubic-bezier(.74, 0, .2, 1) forwards;
}

.shutter-grid span:nth-child(2n) {
  transform-origin: bottom;
}

.shutter-grid span:nth-child(1) { animation-delay: 40ms; }
.shutter-grid span:nth-child(2) { animation-delay: 90ms; }
.shutter-grid span:nth-child(3) { animation-delay: 130ms; }
.shutter-grid span:nth-child(4) { animation-delay: 70ms; }
.shutter-grid span:nth-child(5) { animation-delay: 180ms; }
.shutter-grid span:nth-child(6) { animation-delay: 120ms; }
.shutter-grid span:nth-child(7) { animation-delay: 220ms; }
.shutter-grid span:nth-child(8) { animation-delay: 160ms; }
.shutter-grid span:nth-child(9) { animation-delay: 260ms; }
.shutter-grid span:nth-child(10) { animation-delay: 210ms; }
.shutter-grid span:nth-child(11) { animation-delay: 300ms; }
.shutter-grid span:nth-child(12) { animation-delay: 240ms; }

@keyframes shutterOpen {
  to {
    transform: scaleY(0);
  }
}

@keyframes shutterGone {
  to {
    visibility: hidden;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 11, 16, 0.76);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 240, 216, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand-copy small,
.top-nav a,
.eyebrow,
.case-card span,
.decision-card span,
.console-top span,
.console-meta,
.desk-lines span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-copy small,
.top-nav a,
.console-meta,
.section-copy,
.hero-lede,
.case-card p,
.decision-card p,
.site-footer {
  color: var(--muted);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.top-nav a,
.site-footer a {
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--butter);
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 240, 216, 0.22);
  border-radius: 8px;
  background: rgba(255, 240, 216, 0.08);
  color: var(--cream);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    transform 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.button-primary {
  border-color: var(--butter);
  background: var(--butter);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(242, 198, 90, 0.18);
}

.button-ghost {
  background: rgba(255, 240, 216, 0.05);
}

.button-small {
  min-height: 42px;
  padding: 12px 15px;
}

.button:hover,
.button:focus-visible {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 18px 48px rgba(238, 92, 136, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.hero,
.decision-section,
.order-section {
  width: min(100% - 36px, 1240px);
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding-top: 116px;
  padding-bottom: 64px;
}

.hero-copy,
.decision-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
}

.hero-title,
.section-title,
.case-card h3,
.decision-card h3,
.order-desk h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 7.85rem);
  line-height: 0.86;
}

.mask-line {
  display: block;
  overflow: hidden;
}

.mask-line > span {
  display: block;
  transform: translateY(112%) rotate(2deg);
  transition: transform 900ms cubic-bezier(.2, .9, .18, 1);
}

.mask-title.is-visible .mask-line > span,
.hero-title .mask-line > span {
  transform: translateY(0) rotate(0deg);
}

.hero-title .mask-line:nth-child(2) > span {
  transition-delay: 110ms;
}

.hero-title .mask-line:nth-child(3) > span {
  transition-delay: 210ms;
}

.hero-lede,
.section-copy,
.case-card p,
.decision-card p,
.desk-lines,
.site-footer {
  font-size: clamp(1rem, 1.22vw, 1.13rem);
  line-height: 1.66;
}

.hero-lede {
  max-width: 600px;
  margin: 24px 0 0;
}

.hero .reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
}

.order-console,
.counter-slip,
.case-card,
.decision-card,
.order-desk {
  --card-x: 0px;
  --card-y: 0px;
  --card-rotate: var(--card-rest-rotate, 0deg);
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(var(--card-rotate));
  transition:
    transform 460ms cubic-bezier(.2, .9, .18, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease;
  will-change: transform;
}

.order-console {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 240, 216, 0.08) 1px, transparent 1px) 0 0 / 18px 100%,
    rgba(255, 240, 216, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.order-console:hover,
.case-card:hover,
.case-card:focus-within,
.decision-card:hover,
.decision-card:focus-visible,
.order-desk:hover {
  border-color: rgba(242, 198, 90, 0.55);
  box-shadow: 0 30px 90px rgba(238, 92, 136, 0.16);
  filter: saturate(1.08);
}

.console-top {
  display: grid;
  gap: 6px;
}

.console-top span,
.case-card span,
.decision-card span,
.desk-lines span {
  color: var(--rose);
}

.console-top strong {
  color: var(--cream);
}

.console-actions,
.desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.console-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.hero-stage {
  position: relative;
  min-height: min(72svh, 720px);
  transform-style: preserve-3d;
}

[data-pointer-reactive] {
  transform:
    translate3d(calc(var(--aw-mx) * var(--px, 14px)), calc(var(--aw-my) * var(--py, 12px)), 0)
    rotate(calc(var(--aw-mx) * var(--rotate, 1deg)));
  filter: hue-rotate(calc(var(--aw-mx) * 5deg)) saturate(calc(1 + var(--aw-pointer-speed) * 0.16));
  will-change: transform, filter;
}

.logo-stamp {
  position: absolute;
  top: 0;
  left: 5%;
  z-index: 2;
  width: min(240px, 40vw);
  padding: 14px;
  border: 1px solid rgba(19, 11, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.case-aperture {
  position: absolute;
  inset: 9% 0 5% 12%;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050305;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38);
  clip-path: inset(calc(7% - var(--section-progress) * 4%) calc(8% - var(--section-progress) * 5%) calc(11% - var(--section-progress) * 5%) calc(6% - var(--section-progress) * 3%) round 8px);
}

.case-aperture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:
    scale(calc(1.09 - var(--section-progress) * 0.04))
    translate3d(calc(var(--aw-mx) * -10px), calc(var(--aw-my) * 8px), 0);
}

.case-aperture figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(19, 11, 16, 0.78);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 850;
}

.counter-slip {
  --card-rest-rotate: -4deg;
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 3;
  display: grid;
  width: min(300px, 48%);
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.counter-slip span,
.counter-slip small {
  color: rgba(19, 11, 16, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.counter-slip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.86;
}

.kinetic-band {
  min-height: 170svh;
  color: var(--ink);
}

.kinetic-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(19, 11, 16, 0.08) 1px, transparent 1px) 0 0 / clamp(54px, 8vw, 120px) 100%,
    linear-gradient(135deg, #fff2d9, #f1c45b 52%, #ee5c88);
}

.kinetic-pin .eyebrow {
  width: min(100% - 36px, 1240px);
  margin-inline: auto;
  color: rgba(19, 11, 16, 0.72);
}

.kinetic-copy {
  display: grid;
  gap: clamp(18px, 4vw, 34px);
  transform: rotate(calc(-5deg + var(--kinetic-progress) * 10deg));
}

.kinetic-line {
  width: max-content;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 13vw, 15rem);
  line-height: 0.76;
  white-space: nowrap;
  will-change: transform;
}

.kinetic-one {
  transform: translateX(calc(-56vw + var(--kinetic-progress) * 78vw));
}

.kinetic-two {
  color: rgba(19, 11, 16, 0.48);
  transform: translateX(calc(-88vw + var(--kinetic-progress) * 110vw)) rotate(calc(2deg - var(--kinetic-progress) * 4deg));
}

.case-rail {
  min-height: 230svh;
  scroll-margin-top: 92px;
}

.rail-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(26px, 5vw, 48px);
  overflow: hidden;
  padding: 108px 0 64px;
}

.rail-heading {
  width: min(100% - 36px, 960px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-left: max(18px, calc((100vw - 1240px) / 2 + 18px));
  margin-right: 18px;
}

.rail-heading .eyebrow {
  grid-column: auto;
}

.section-title {
  font-size: clamp(3rem, 7vw, 7.6rem);
  line-height: 0.88;
}

.section-copy {
  max-width: 430px;
  margin: 0;
}

.rail-heading .section-copy {
  max-width: 580px;
}

.rail-viewport {
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  overflow: hidden;
}

.case-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px max(18px, calc((100vw - 1240px) / 2 + 18px)) 22px;
  transform: translate3d(var(--rail-x), 0, 0);
  will-change: transform;
}

.case-card {
  flex: 0 0 clamp(330px, 32vw, 500px);
  min-height: 590px;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 240, 216, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.04 + var(--section-progress) * 0.04));
  transition: transform 700ms ease, filter 420ms ease;
}

.case-card:hover img {
  transform: scale(1.08);
  filter: hue-rotate(calc(var(--aw-mx) * 8deg)) saturate(1.12);
}

.case-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.case-card h3 {
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  line-height: 0.94;
}

.case-card strong {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--butter);
  color: var(--ink);
}

.case-card-order {
  grid-template-rows: 1fr;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(238, 92, 136, 0.22), rgba(139, 208, 165, 0.13)),
    rgba(255, 240, 216, 0.09);
}

.case-card-order div {
  align-content: end;
}

.decision-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(86px, 12vw, 150px) 0;
  scroll-margin-top: 92px;
}

.decision-cards {
  display: grid;
  gap: 16px;
}

.decision-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 216, 0.11), rgba(255, 240, 216, 0.04)),
    rgba(19, 11, 16, 0.42);
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.23);
}

.decision-card-alt {
  background:
    linear-gradient(135deg, rgba(238, 92, 136, 0.18), rgba(158, 184, 199, 0.12)),
    rgba(19, 11, 16, 0.5);
}

.decision-card h3 {
  font-size: clamp(1.9rem, 3.6vw, 4.1rem);
  line-height: 0.9;
}

.decision-card strong {
  color: var(--butter);
}

.order-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(88px, 12vw, 160px) 0;
  scroll-margin-top: 92px;
}

.order-desk {
  width: min(100%, 920px);
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 240, 216, 0.08) 1px, transparent 1px) 0 0 / 18px 100%,
    linear-gradient(180deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.05));
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.36);
}

.desk-logo {
  width: 170px;
  padding: 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(19, 11, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.order-desk h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  line-height: 0.88;
}

.desk-lines {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.desk-lines div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.desk-lines strong {
  text-align: right;
}

.desk-actions {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 54px) 104px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mobile-order-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 11, 16, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.mobile-order-bar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--butter);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.mobile-order-bar a + a {
  border: 1px solid var(--line);
  background: rgba(255, 240, 216, 0.08);
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 18% 0);
  transition: opacity 760ms ease, transform 760ms ease, clip-path 760ms ease;
}

.reveal.is-visible,
.mask-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .decision-section,
  .rail-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-stage {
    min-height: 52svh;
    order: -1;
  }

  .rail-heading .eyebrow {
    grid-column: auto;
  }

  .decision-section {
    min-height: auto;
  }

  .mobile-order-bar {
    display: grid;
  }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(90deg, rgba(255, 240, 216, 0.04) 1px, transparent 1px) 0 0 / 44px 100%,
      linear-gradient(180deg, #130b10 0%, #211118 50%, #150c11 100%);
  }

  .site-header {
    padding: 10px 14px;
  }

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

  .brand-copy small,
  .site-header .button {
    display: none;
  }

  .hero,
  .decision-section,
  .order-section {
    width: min(100% - 28px, 1240px);
  }

  .hero {
    gap: 26px;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .hero-title {
    font-size: clamp(3rem, 14.5vw, 4.15rem);
    line-height: 0.9;
  }

  .hero-lede {
    max-width: 34ch;
  }

  .order-console {
    padding: 14px;
  }

  .console-actions .button,
  .desk-actions .button {
    width: 100%;
  }

  .order-console .button-ghost {
    display: none;
  }

  .console-meta {
    display: none;
  }

  .hero-stage {
    min-height: 430px;
    order: initial;
  }

  .logo-stamp {
    left: 0;
    width: min(210px, 63vw);
  }

  .case-aperture {
    inset: 20% 0 4% 0;
  }

  .counter-slip {
    right: 0;
    bottom: 0;
    width: min(220px, 58%);
    padding: 14px;
  }

  .kinetic-band {
    min-height: 100svh;
  }

  .kinetic-pin {
    position: relative;
    min-height: 100svh;
  }

  .kinetic-line {
    font-size: clamp(3.4rem, 20vw, 6.3rem);
  }

  .kinetic-one {
    transform: translateX(calc(-78vw + var(--kinetic-progress) * 82vw));
  }

  .kinetic-two {
    transform: translateX(calc(-102vw + var(--kinetic-progress) * 96vw)) rotate(calc(2deg - var(--kinetic-progress) * 3deg));
  }

  .case-rail {
    min-height: auto;
  }

  .rail-pin {
    position: relative;
    min-height: auto;
    padding: 76px 0;
  }

  .rail-heading {
    width: min(100% - 28px, 1240px);
    margin-inline: auto;
  }

  .section-title {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    line-height: 0.92;
  }

  .rail-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rail-viewport::-webkit-scrollbar {
    display: none;
  }

  .case-track {
    width: max-content;
    padding-inline: 14px;
    transform: none !important;
  }

  .case-card {
    flex-basis: min(82vw, 360px);
    min-height: 500px;
    scroll-snap-align: center;
  }

  .case-card h3 {
    font-size: clamp(1.7rem, 9vw, 2.45rem);
  }

  .decision-section {
    gap: 30px;
    padding: 76px 0;
  }

  .decision-card {
    min-height: 220px;
  }

  .order-desk {
    padding: 22px;
  }

  .order-desk h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .desk-lines div {
    display: grid;
    gap: 6px;
  }

  .desk-lines strong {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 104px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.68rem, 13vw, 3.35rem);
  }

  .section-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .shutter-grid {
    display: none;
  }

  [data-pointer-reactive],
  [data-nudge-card],
  [data-magnetic],
  .case-track,
  .kinetic-copy,
  .kinetic-line,
  .case-aperture img,
  .counter-field,
  .case-light {
    transform: none !important;
    filter: none !important;
  }

  .case-aperture {
    clip-path: none;
  }

  .reveal,
  .mask-line > span {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
