@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("assets/fonts/noto-serif-display-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --canvas: #f7f3ec;
  --surface: #fffcf7;
  --stone: #e8e0d6;
  --stone-deep: #d8cbbb;
  --ink: #17191d;
  --graphite: #5b5e66;
  --cobalt: #2447a7;
  --cobalt-dark: #1b3675;
  --cobalt-pressed: #14285a;
  --periwinkle: #6077c5;
  --focus: #365fd6;
  --success: #2e6b57;
  --font-display: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1280px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-color: var(--cobalt) var(--canvas);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.35rem, 6.8vw, 6.75rem);
  line-height: 0.96;
}

h2 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) auto minmax(170px, 0.8fr);
  align-items: center;
  width: min(calc(100% - 32px), 1360px);
  min-height: var(--header-height);
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(23, 25, 29, 0.13);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 48px rgba(27, 21, 14, 0.08);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.brand {
  display: block;
  width: 166px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 19px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms var(--ease-out);
}

.header-action:hover {
  background: var(--cobalt);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.screen-nav {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}

.screen-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(23, 25, 29, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--graphite);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.screen-nav a:hover,
.screen-nav a.is-active {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: #fff;
  transform: translateX(-4px);
}

.screen {
  position: relative;
  min-height: 100svh;
  padding: clamp(112px, 12vh, 148px) 0 clamp(64px, 8vh, 96px);
  overflow: hidden;
  scroll-snap-align: start;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.lead,
.product-intro {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.62;
}

.callout {
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms var(--ease-out);
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button:disabled:hover,
.button:disabled:active {
  background: var(--cobalt);
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.button-primary {
  background: var(--cobalt);
  color: #fff;
}

.button-primary:hover {
  background: var(--cobalt-dark);
}

.button-primary:active {
  background: var(--cobalt-pressed);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
}

.button-light:hover {
  background: var(--stone);
}

.hero {
  display: grid;
  align-items: stretch;
  padding: 0;
  background: #d9cdbc;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0.9) 26%, rgba(247, 243, 236, 0.28) 50%, rgba(247, 243, 236, 0) 70%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-caption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  padding: 8px 12px;
  background: rgba(255, 252, 247, 0.78);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 88px;
}

.hero-copy {
  width: min(50%, 640px);
}

.hero .lead {
  max-width: 560px;
  color: #45464b;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.scroll-cue i {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.scroll-cue:hover i {
  transform: scaleX(1.35);
}

.product-screen {
  display: grid;
  align-items: center;
}

.color-screen {
  background: var(--surface);
}

.jogger-screen {
  background: var(--stone);
}

.straight-screen {
  background: var(--canvas);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.product-layout-reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.06fr);
}

.product-layout-reverse .product-collage {
  grid-column: 2;
}

.product-layout-reverse .product-copy {
  grid-column: 1;
  grid-row: 1;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(76svh, 820px);
  border: 1px solid rgba(23, 25, 29, 0.1);
  background: #fff;
  overflow: hidden;
}

.product-stage::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  content: "";
  pointer-events: none;
}

.product-main-image {
  width: 100%;
  height: min(74svh, 790px);
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease;
}

.product-main-image.is-changing {
  opacity: 0.18;
}

.product-stage-number {
  position: absolute;
  z-index: 2;
  top: -26px;
  right: 12px;
  color: rgba(36, 71, 167, 0.08);
  font-family: var(--font-display);
  font-size: clamp(9rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.product-stage-number.product-stage-word {
  top: 24px;
  right: 22px;
  font-size: clamp(4.2rem, 7.2vw, 8.5rem);
  letter-spacing: -0.075em;
}

.product-stage-label {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--graphite);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-stage-label span:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-copy {
  max-width: 560px;
}

.color-control {
  margin: 28px 0 30px;
}

.color-control-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  font-size: 13px;
}

.color-control-head > span {
  color: var(--graphite);
}

.color-control-head strong {
  font-size: 15px;
  font-weight: 650;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.swatch {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 6px solid var(--surface);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(23, 25, 29, 0.2);
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms var(--ease-out);
}

.swatch:hover {
  transform: scale(1.08);
}

.swatch.is-active {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--cobalt);
}

.swatch-light {
  box-shadow: 0 0 0 1px var(--stone-deep);
}

.swatch span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.availability,
.stock {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 12px;
  font-weight: 650;
}

.availability {
  margin: 16px 0 0;
}

.availability i,
.stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.facts {
  margin: 0 0 26px;
  border-top: 1px solid var(--stone-deep);
}

.facts > div {
  display: grid;
  grid-template-columns: minmax(118px, 0.6fr) 1.4fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--stone-deep);
}

.facts dt {
  color: var(--graphite);
  font-size: 12px;
}

.facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.facts .fact-price {
  align-items: baseline;
}

.fact-price dd {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.facts-on-stone {
  border-color: #c5b7a5;
}

.facts-on-stone > div {
  border-color: #c5b7a5;
}

.size-control {
  margin: 0 0 22px;
}

.size-control-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
  color: var(--graphite);
  font-size: 13px;
}

.size-control-head strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.size-option {
  min-height: 42px;
  padding: 0 8px;
  border: 1px solid rgba(23, 25, 29, 0.22);
  border-radius: 2px;
  background: rgba(255, 252, 247, 0.48);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms var(--ease-out);
}

.size-option:hover {
  border-color: var(--cobalt);
  transform: translateY(-1px);
}

.size-option.is-active {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: #fff;
}

.size-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.single-color {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  padding: 16px;
  border: 1px solid rgba(23, 25, 29, 0.16);
  background: rgba(255, 252, 247, 0.45);
}

.single-color-chip {
  width: 42px;
  height: 42px;
  border: 5px solid rgba(255, 252, 247, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 25, 29, 0.2);
}

.single-color-dark {
  background: #32343b;
}

.single-color-light {
  background: #d9d8d3;
}

.single-color small,
.single-color strong {
  display: block;
}

.single-color small {
  margin-bottom: 1px;
  color: var(--graphite);
  font-size: 11px;
}

.single-color strong {
  font-size: 14px;
}

.product-collage {
  position: relative;
  min-height: min(75svh, 800px);
}

.product-collage figure {
  position: absolute;
  margin: 0;
  border: 10px solid rgba(255, 252, 247, 0.8);
  background: var(--surface);
  overflow: hidden;
}

.product-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.collage-main {
  top: 0;
  left: 0;
  width: 66%;
  height: 90%;
}

.collage-secondary {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 58%;
}

.collage-code {
  position: absolute;
  top: 20px;
  right: 18px;
  color: rgba(23, 25, 29, 0.14);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 1;
  writing-mode: vertical-rl;
}

.product-collage-light figure {
  border-color: rgba(255, 255, 255, 0.9);
}

.compare-screen {
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--surface);
}

.compare-screen .eyebrow {
  color: #aebcf1;
}

.compare-layout {
  position: relative;
  z-index: 2;
}

.compare-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  column-gap: 48px;
  align-items: end;
  margin-bottom: clamp(36px, 5vh, 58px);
}

.compare-head .eyebrow {
  grid-column: 1 / -1;
}

.compare-head h2 {
  margin-bottom: 0;
}

.compare-head > p:last-child {
  margin-bottom: 8px;
  color: #bfc1c9;
  font-size: 15px;
}

.compare-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 17px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: middle;
}

.compare-table thead th {
  color: #989ba5;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-table tbody tr:last-child > * {
  border-bottom: 0;
}

.compare-table tbody th {
  min-width: 130px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.compare-table tbody th strong,
.compare-table tbody th small {
  display: block;
}

.compare-table tbody th small {
  margin-top: 3px;
  color: #989ba5;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.compare-table tbody td {
  color: #dedee2;
}

.compare-table tbody td strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.final-action {
  max-width: 680px;
  margin-top: 36px;
}

.final-action .callout {
  margin-bottom: 4px;
  color: #fff;
}

.final-action span {
  color: #999ca6;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(48px, 7vh, 76px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9ea0a8;
  font-size: 12px;
}

.site-footer img {
  width: 150px;
  height: auto;
  padding: 7px;
  background: var(--surface);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-underline-offset: 4px;
}

.compare-orbit {
  position: absolute;
  border: 1px solid rgba(96, 119, 197, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -28vw;
  right: -16vw;
  width: 65vw;
  height: 65vw;
}

.orbit-two {
  bottom: -28vw;
  left: -18vw;
  width: 48vw;
  height: 48vw;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 3px;
  width: min(360px, calc(100% - 32px));
  padding: 18px 20px;
  border-left: 4px solid var(--cobalt);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.toast[hidden] {
  display: none;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  font-size: 13px;
}

.toast span {
  color: var(--graphite);
  font-size: 12px;
}

.noscript-message {
  position: fixed;
  z-index: 250;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  margin: 0;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.motion-ready .reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.motion-ready .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .site-header {
    grid-template-columns: 150px auto 150px;
  }

  .brand {
    width: 146px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .product-layout,
  .product-layout-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
    gap: 48px;
  }

  .screen-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 48px), 760px);
  }

  .site-header {
    grid-template-columns: 46px 1fr auto;
    min-height: var(--header-height);
    padding: 7px 10px;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 142px;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    align-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    min-height: 100svh;
    padding: 110px 32px 48px;
    background: var(--surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms var(--ease-out);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 400;
  }

  .header-action {
    grid-column: 3;
    grid-row: 1;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .product-layout,
  .product-layout-reverse {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-layout-reverse .product-collage,
  .product-layout-reverse .product-copy {
    grid-column: 1;
  }

  .product-layout-reverse .product-collage {
    grid-row: 1;
  }

  .product-layout-reverse .product-copy {
    grid-row: 2;
  }

  .product-copy {
    max-width: none;
  }

  .product-stage,
  .product-collage {
    min-height: 680px;
  }

  .product-main-image {
    height: 650px;
  }

  .compare-head {
    grid-template-columns: 1fr;
  }

  .compare-head > p:last-child {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-snap-type: none;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    width: 118px;
  }

  .header-action {
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .header-action::before {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1.5px solid #fff;
    border-top: 0;
    color: #fff;
    content: "";
  }

  .header-action::after {
    position: absolute;
    top: 13px;
    width: 9px;
    height: 8px;
    border: 1.5px solid #fff;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    content: "";
  }

  .screen {
    min-height: 100svh;
    padding: 104px 0 64px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    background: var(--canvas);
  }

  .hero-media {
    position: relative;
    order: 1;
    height: 48svh;
    min-height: 360px;
    margin-top: 80px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(247, 243, 236, 0) 62%, var(--canvas) 100%);
  }

  .hero-media img {
    object-position: 61% center;
  }

  .photo-caption {
    right: 12px;
    bottom: 18px;
  }

  .hero-layout {
    order: 2;
    align-items: start;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .lead {
    font-size: 16px;
  }

  .scroll-cue {
    display: none;
  }

  .product-layout,
  .product-layout-reverse {
    gap: 38px;
  }

  .product-stage {
    min-height: 520px;
  }

  .product-main-image {
    height: 500px;
  }

  .product-stage::after {
    inset: 12px;
  }

  .product-stage-label {
    right: 22px;
    bottom: 22px;
  }

  .product-collage {
    min-height: 570px;
  }

  .product-collage figure {
    border-width: 6px;
  }

  .collage-main {
    width: 72%;
    height: 88%;
  }

  .collage-secondary {
    width: 49%;
    height: 52%;
  }

  .collage-code {
    top: 8px;
    right: 8px;
    font-size: 4.2rem;
  }

  .facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .single-color {
    grid-template-columns: 44px 1fr;
  }

  .single-color .stock {
    grid-column: 1 / -1;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .compare-head {
    margin-bottom: 32px;
  }

  .compare-table-wrap {
    margin-right: -16px;
    padding-right: 16px;
  }

  .compare-table {
    min-width: 820px;
  }

  .final-action {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer img {
    width: 132px;
  }

  .site-footer p {
    display: none;
  }

  .toast {
    right: 16px;
    bottom: 16px;
  }
}

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

  .motion-ready .reveal {
    transform: none;
    opacity: 1;
  }
}
