@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("fonts/ibm-plex-arabic-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("fonts/ibm-plex-arabic-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("fonts/ibm-plex-arabic-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  /* Brand-pinned: Racket Frame presents on the white canvas in every scheme. */
  color-scheme: light;
  --canvas: #e8eaed;
  --canvas-rgb: 232, 234, 237;
  --paper: #f4f5f6;
  --paper-rgb: 244, 245, 246;
  --surface: #dde1e5;
  --surface-deep: #cfd4da;
  --ink: #101318;
  --ink-rgb: 16, 19, 24;
  --muted: #5a626d;
  --soft: #737c87;
  --line: rgba(16, 19, 24, 0.12);
  --line-strong: rgba(16, 19, 24, 0.2);
  --accent: #2454d6;
  --accent-deep: #173da4;
  --accent-soft: rgba(36, 84, 214, 0.12);
  --clay: #85554a;
  --ash: #d2cec5;
  --brass: #9a835e;
  --court: #2f5143;
  --midnight: #20262d;
  --error: #a92d3a;
  --success: #2454d6;
  --radius-outer: 30px;
  --radius-inner: 24px;
  --radius-field: 14px;
  --radius-pill: 999px;
  --ease-heavy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1.35, 0.36, 1);
  --shadow-ambient: 0 34px 90px rgba(58, 68, 82, 0.17);
  --shadow-soft: 0 18px 54px rgba(58, 68, 82, 0.12);
  --page-gutter: clamp(20px, 4.2vw, 72px);
  --section-gap: clamp(112px, 13vw, 210px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--soft) var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 85% 4%, rgba(255, 255, 255, 0.55), transparent 25rem),
    var(--canvas);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", Avenir, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", "Geeza Pro", sans-serif;
}

body::after {
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  background: var(--accent);
  color: #f7f8fb;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 70;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 350ms var(--ease-heavy);
}

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

.page-shell {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.section-space {
  padding-block: var(--section-gap);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset-block-start: max(16px, env(safe-area-inset-top));
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  height: 62px;
  padding: 6px 7px 6px 18px;
  border: 1px solid rgba(var(--paper-rgb), 0.62);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(135deg, rgba(var(--paper-rgb), 0.86), rgba(var(--paper-rgb), 0.66)),
    rgba(var(--canvas-rgb), 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 15px 44px rgba(53, 61, 72, 0.13);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  transform: translateX(-50%);
}

html[dir="rtl"] .site-header {
  padding: 6px 18px 6px 7px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__monogram {
  display: grid;
  place-items: center;
  width: 39px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand__monogram span {
  color: var(--accent);
  font-weight: 500;
}

.brand__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.language-button,
.text-link,
.text-button {
  transition:
    color 450ms var(--ease-heavy),
    transform 450ms var(--ease-heavy);
}

.language-button:hover,
.text-link:hover,
.text-button:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.language-button,
.text-button {
  border: 0;
  background: none;
}

.language-button {
  min-height: 44px;
  padding-inline: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 54px;
  max-width: 100%;
  padding: 6px 7px 6px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 13px 36px rgba(36, 84, 214, 0.2);
  color: #f7f8fb;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 650ms var(--ease-spring),
    background-color 500ms var(--ease-heavy),
    box-shadow 500ms var(--ease-heavy);
}

html[dir="rtl"] .button {
  padding: 6px 22px 6px 7px;
}

.button:hover {
  background: var(--accent-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 42px rgba(36, 84, 214, 0.25);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button__orbit {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 248, 251, 0.17);
  font-size: 17px;
  transition: transform 650ms var(--ease-spring);
}

.button:hover .button__orbit {
  transform: translate(2px, -2px) scale(1.05);
}

html[dir="rtl"] .button:hover .button__orbit {
  transform: translate(-2px, -2px) scale(1.05);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding-inline: 6px;
  border-radius: var(--radius-pill);
  background: rgba(247, 248, 251, 0.24);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.button--compact {
  min-height: 48px;
  padding-inline-start: 18px;
}

.button--compact .button__orbit {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
}

.hero-scroll {
  /* Hero rides the brand canvas; the toned surface belongs to the colors phase. */
  --hero-bg: var(--canvas);
  --hero-ink: var(--ink);
  --hero-muted: var(--muted);
  --hero-line: var(--line);
  --hero-accent: var(--accent);
  --hero-cta: var(--accent);
  --hero-cta-hover: var(--accent-deep);
  --hero-cta-ink: #f7f8fb;
  --hero-scrim: rgba(16, 19, 24, 0.04);
  position: relative;
  height: 420dvh;
  background-color: var(--hero-bg);
  color: var(--hero-ink);
  transition:
    background-color 1100ms var(--ease-heavy),
    color 850ms var(--ease-heavy);
}

/* Anchor target for #finishes: lands the scroll at the start of the colors phase. */
.story-anchor {
  position: absolute;
  inset-block-start: 36%;
  inline-size: 1px;
  block-size: 1px;
}

.hero-scroll[data-story-phase="colors"][data-story-finish="clay"] {
  --hero-bg: #4a2925;
  --hero-ink: #f5f2ee;
  --hero-muted: rgba(245, 242, 238, 0.88);
  --hero-line: rgba(245, 242, 238, 0.23);
  --hero-accent: #a9bbff;
  --hero-cta: #f2f3f4;
  --hero-cta-hover: #ffffff;
  --hero-cta-ink: #171b20;
  --hero-scrim: rgba(0, 0, 0, 0.12);
}

.hero-scroll[data-story-phase="colors"][data-story-finish="ash"] {
  --hero-bg: #655f57;
  --hero-ink: #171b20;
  --hero-muted: rgba(23, 27, 32, 0.66);
  --hero-line: rgba(23, 27, 32, 0.18);
  --hero-accent: #2454d6;
  --hero-cta: #2454d6;
  --hero-cta-hover: #173da4;
  --hero-cta-ink: #f7f8fb;
}

.hero-scroll[data-story-phase="colors"][data-story-finish="brass"] {
  --hero-bg: #4d4030;
  --hero-ink: #17191c;
  --hero-muted: rgba(23, 25, 28, 0.68);
  --hero-line: rgba(23, 25, 28, 0.2);
  --hero-accent: #173da4;
  --hero-cta: #173da4;
  --hero-cta-hover: #102e82;
  --hero-cta-ink: #f7f8fb;
}

.hero-scroll[data-story-phase="colors"][data-story-finish="court"] {
  --hero-bg: #0d2b21;
  --hero-ink: #f1f4f0;
  --hero-muted: rgba(241, 244, 240, 0.7);
  --hero-line: rgba(241, 244, 240, 0.22);
  --hero-accent: #a9bbff;
  --hero-cta: #f1f4f0;
  --hero-cta-hover: #ffffff;
  --hero-cta-ink: #14211d;
}

.hero-scroll[data-story-phase="colors"][data-story-finish="midnight"] {
  --hero-bg: #070b11;
  --hero-ink: #f0f2f4;
  --hero-muted: rgba(240, 242, 244, 0.7);
  --hero-line: rgba(240, 242, 244, 0.2);
  --hero-accent: #91a8ff;
  --hero-cta: #eef1f5;
  --hero-cta-hover: #ffffff;
  --hero-cta-ink: #111820;
}

.hero-scroll:is([data-story-phase="handoff"], [data-story-phase="colors"])[data-story-tone="light"] {
  --hero-ink: #f5f2ee;
  --hero-muted: rgba(245, 242, 238, 0.88);
  --hero-line: rgba(245, 242, 238, 0.25);
  --hero-accent: #a9bbff;
  --hero-cta: #f2f3f4;
  --hero-cta-hover: #ffffff;
  --hero-cta-ink: #171b20;
  --hero-scrim: rgba(0, 0, 0, 0.12);
}

.hero-scroll:is([data-story-phase="handoff"], [data-story-phase="colors"])[data-story-tone="dark"] {
  --hero-ink: #15191e;
  --hero-muted: rgba(21, 25, 30, 0.84);
  --hero-line: rgba(21, 25, 30, 0.2);
  --hero-accent: #173da4;
  --hero-cta: #173da4;
  --hero-cta-hover: #102e82;
  --hero-cta-ink: #f7f8fb;
  --hero-scrim: rgba(255, 255, 255, 0.14);
}

.hero-scroll.story-surface-live,
.hero-scroll.story-surface-live .hero-pin {
  transition-property: color;
}

.hero-pin {
  position: sticky;
  inset-block-start: 0;
  display: grid;
  min-height: 100dvh;
  align-items: center;
  overflow: clip;
  padding-block: clamp(92px, 12vh, 124px) clamp(28px, 5vh, 56px);
  background:
    linear-gradient(90deg, var(--hero-scrim), transparent 48%),
    radial-gradient(circle at 74% 43%, rgba(255, 255, 255, 0.12), transparent 32vw),
    var(--hero-bg);
  transition:
    background-color 1100ms var(--ease-heavy),
    color 850ms var(--ease-heavy);
}

html[dir="rtl"] .hero-pin {
  background:
    linear-gradient(270deg, var(--hero-scrim), transparent 48%),
    radial-gradient(circle at 26% 43%, rgba(255, 255, 255, 0.12), transparent 32vw),
    var(--hero-bg);
}

.hero-grid {
  display: grid;
  position: relative;
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(8px, 2vw, 36px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  max-width: 630px;
  transition:
    opacity 560ms var(--ease-heavy),
    transform 560ms var(--ease-heavy),
    visibility 0s;
}

.hero-scroll[data-story-phase="handoff"] .hero-copy,
.hero-scroll[data-story-phase="colors"] .hero-copy {
  opacity: 0;
  transform: translateY(-24px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 560ms var(--ease-heavy),
    transform 560ms var(--ease-heavy),
    visibility 0s 560ms;
}

.model-story {
  display: contents;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(var(--paper-rgb), 0.46);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.hero-intro {
  margin-block-end: 24px;
}

.hero-scroll .eyebrow {
  border-color: var(--hero-line);
  background: transparent;
  color: var(--hero-muted);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: clamp(54px, 6.5vw, 100px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

html[dir="rtl"] h1 {
  max-width: 10ch;
  font-size: clamp(51px, 6vw, 90px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  html[dir="rtl"] .hero-scroll h1 {
    font-size: clamp(51px, 5.35vw, 80px);
  }
}

h1 span {
  display: block;
}

.h1-accent {
  color: var(--accent);
}

.hero-scroll .h1-accent {
  color: var(--hero-accent);
}

.hero-summary {
  max-width: 47ch;
  margin-block-start: 25px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.hero-scroll .hero-summary {
  color: var(--hero-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-block-start: 30px;
}

.text-link,
.text-button {
  position: relative;
  padding: 10px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link::after,
.text-button::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 500ms var(--ease-heavy);
}

html[dir="rtl"] .text-link::after,
html[dir="rtl"] .text-button::after {
  transform-origin: right;
}

.text-link:hover::after,
.text-button:hover::after {
  transform: scaleX(1);
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-block-start: 30px;
  color: var(--soft);
  font-size: 12px;
}

.hero-price strong {
  color: var(--ink);
  font-size: 17px;
}

.hero-scroll .text-link,
.hero-scroll .hero-price strong {
  color: var(--hero-ink);
}

.hero-scroll .hero-price {
  color: var(--hero-muted);
}

.hero-scroll .button {
  background: var(--hero-cta);
  box-shadow: 0 13px 34px rgba(10, 14, 18, 0.16);
  color: var(--hero-cta-ink);
}

.hero-scroll .button:hover {
  background: var(--hero-cta-hover);
  box-shadow: 0 17px 40px rgba(10, 14, 18, 0.2);
}

.media-shell,
.form-bezel {
  padding: 7px;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  border-radius: var(--radius-outer);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(var(--ink-rgb), 0.035)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    var(--shadow-ambient);
}

.media-core,
.order-form,
.order-success {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 0 0 1px rgba(var(--ink-rgb), 0.065);
}

.model-shell {
  position: relative;
  grid-area: 1 / 2;
  justify-self: end;
  width: min(62vw, 900px);
  height: min(78dvh, 780px);
  min-height: 560px;
  margin-inline-end: 0;
}

.model-core {
  position: relative;
  height: 100%;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

rf-frame-3d {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: drop-shadow(0 22px 28px rgba(8, 12, 18, 0.2));
  transition: opacity 900ms var(--ease-heavy);
}

.model-core.is-ready rf-frame-3d {
  opacity: 1;
}

.model-loader {
  position: absolute;
  z-index: 1;
  inset: 25% 42% 22%;
  border: 1px solid var(--hero-line);
  border-radius: var(--radius-pill);
  box-shadow: none;
  transition: opacity 600ms var(--ease-heavy);
}

.model-loader span {
  position: absolute;
  inset: 12%;
  border: 1px solid var(--hero-line);
  border-radius: inherit;
}

.model-core.is-ready .model-loader {
  opacity: 0;
}

.model-core.model-failed .model-loader,
.model-core.model-failed rf-frame-3d {
  display: none;
}

.model-core.model-failed .model-fallback {
  display: block;
}

.model-fallback {
  position: absolute;
  inset: 0;
  display: none;
  background:
    linear-gradient(rgba(var(--paper-rgb), 0.1), rgba(var(--paper-rgb), 0.1)),
    url("assets/quiet-mount.webp") center / cover no-repeat;
}

.model-caption {
  position: absolute;
  z-index: 3;
  inset-inline: 24px;
  inset-block-end: 21px;
  display: flex;
  justify-content: space-between;
  padding-block-start: 14px;
  border-block-start: 1px solid var(--hero-line);
  color: var(--hero-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-caption__phase {
  color: var(--hero-ink);
}

/* Colors review — takes over the copy column once the frame hands off. */
.colors-panel {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  align-self: center;
  max-width: 560px;
  color: var(--hero-ink);
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 620ms var(--ease-heavy),
    transform 620ms var(--ease-heavy),
    visibility 0s 620ms;
}

.hero-scroll[data-story-phase="colors"] .colors-panel {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 620ms var(--ease-heavy),
    transform 620ms var(--ease-heavy),
    visibility 0s;
}

.colors-title {
  max-width: 16ch;
  color: var(--hero-muted);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

html[dir="rtl"] .colors-title {
  letter-spacing: 0;
}

.colors-name {
  margin-block-start: clamp(16px, 2.6vh, 28px);
  font-size: clamp(52px, 5.4vw, 86px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

html[dir="rtl"] .colors-name {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.colors-copy {
  max-width: 38ch;
  margin-block-start: 14px;
  color: var(--hero-muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
}

.colors-buy {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block-start: clamp(20px, 3vh, 32px);
}

.colors-add {
  flex: none;
}

.colors-delivery {
  color: var(--hero-muted);
  font-size: 12px;
}

.colors-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: clamp(20px, 3vh, 34px);
}

.rail-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  padding-inline-start: 11px;
  border: 1px solid var(--hero-line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--hero-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 350ms var(--ease-heavy),
    border-color 350ms var(--ease-heavy),
    background-color 350ms var(--ease-heavy),
    transform 500ms var(--ease-spring);
}

.rail-option:hover {
  color: var(--hero-ink);
  border-color: var(--hero-ink);
  transform: translateY(-2px);
}

.rail-option.is-active {
  color: var(--hero-ink);
  border-color: var(--hero-ink);
  background: var(--hero-scrim);
}

.rail-option:focus-visible {
  outline: 2px solid var(--hero-accent);
  outline-offset: 3px;
}

.rail-option__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(8, 10, 13, 0.22);
}

html[dir="rtl"] .model-caption {
  letter-spacing: 0;
}

.lifestyle-section {
  padding-block-start: calc(var(--section-gap) * 0.72);
}

.lifestyle-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 56px;
  margin-block-end: clamp(42px, 6vw, 86px);
}

.lifestyle-heading h2,
.mount-copy h2,
.price-statement h2,
.questions-title h2,
.order-summary h2 {
  font-size: clamp(42px, 5.3vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

html[dir="rtl"] .lifestyle-heading h2,
html[dir="rtl"] .mount-copy h2,
html[dir="rtl"] .price-statement h2,
html[dir="rtl"] .questions-title h2,
html[dir="rtl"] .order-summary h2 {
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lifestyle-heading h2 {
  max-width: 16ch;
}

.lifestyle-heading p,
.questions-title p,
.order-summary > p {
  max-width: 40ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.lifestyle-media {
  width: 91%;
  margin-inline-start: auto;
}

.media-core {
  background: var(--surface-deep);
}

.media-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-media .media-core {
  aspect-ratio: 16 / 10;
}

.lifestyle-caption {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 6vw, 90px);
  width: 91%;
  margin: 20px 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

html[dir="rtl"] .lifestyle-media,
html[dir="rtl"] .lifestyle-caption {
  margin-inline: 0 auto;
}

.swatch--clay { background: var(--clay); }
.swatch--ash { background: var(--ash); }
.swatch--brass { background: var(--brass); }
.swatch--court { background: var(--court); }
.swatch--midnight { background: var(--midnight); }

.mounting-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
}

.mount-copy h2 {
  max-width: 10ch;
  margin-block-start: 24px;
}

.mount-intro {
  max-width: 42ch;
  margin-block-start: 24px;
  color: var(--muted);
}

.mount-steps {
  margin-block-start: 48px;
}

.mount-step {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 22px;
  width: 100%;
  min-height: 90px;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: var(--soft);
  text-align: start;
  transition:
    color 450ms var(--ease-heavy),
    transform 650ms var(--ease-spring);
}

.mount-step:hover {
  color: var(--ink);
  transform: translateX(5px);
}

html[dir="rtl"] .mount-step:hover {
  transform: translateX(-5px);
}

.mount-step__line {
  align-self: stretch;
  border-radius: 10px;
  background: var(--line);
  transform: scaleY(0.54);
  transition:
    background-color 450ms var(--ease-heavy),
    transform 650ms var(--ease-heavy);
}

.mount-step.is-active .mount-step__line {
  background: var(--accent);
  transform: scaleY(1);
}

.mount-step strong,
.mount-step small {
  display: block;
}

.mount-step strong {
  color: inherit;
  font-size: 17px;
  font-weight: 600;
}

.mount-step small {
  max-width: 39ch;
  margin-block-start: 5px;
  font-size: 13px;
  line-height: 1.55;
}

.mount-step.is-active {
  color: var(--ink);
}

.mount-media {
  width: 88%;
  margin-inline-start: auto;
}

.mount-media .media-core {
  aspect-ratio: 4 / 5;
}

.mount-media img {
  transform: scale(1.04);
  transition: transform 900ms var(--ease-heavy);
}

.mount-media[data-step="fix"] img { transform: scale(1.14) translate3d(-2%, 2%, 0); }
.mount-media[data-step="play"] img { transform: scale(1.08) translate3d(2%, -2%, 0); }

html[dir="rtl"] .mount-media {
  margin-inline: auto 0;
}

.price-section {
  padding-block-start: calc(var(--section-gap) * 0.72);
}

.price-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  overflow: hidden;
  border-radius: var(--radius-outer);
  background: var(--ink);
  box-shadow: var(--shadow-ambient);
  color: var(--paper);
}

.price-statement {
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: clamp(38px, 6vw, 82px);
  background:
    radial-gradient(circle at 18% 88%, rgba(36, 84, 214, 0.7), transparent 31%),
    var(--ink);
}

.price-statement h2 {
  max-width: 11ch;
  color: var(--paper);
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-figure strong {
  font-size: clamp(62px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.price-figure span {
  color: rgba(var(--paper-rgb), 0.62);
  font-size: 12px;
}

.included-list {
  display: grid;
  align-content: center;
  padding: clamp(38px, 6vw, 82px);
  background: rgba(var(--paper-rgb), 0.055);
}

.included-list > div {
  padding-block: 30px;
  border-block-end: 1px solid rgba(var(--paper-rgb), 0.13);
}

.included-list > div:last-child {
  border-block-end: 0;
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list strong {
  font-size: 16px;
  font-weight: 600;
}

.included-list span {
  margin-block-start: 6px;
  color: rgba(var(--paper-rgb), 0.62);
  font-size: 13px;
}

.questions-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.questions-title {
  position: sticky;
  inset-block-start: 120px;
}

.questions-title h2 {
  max-width: 9ch;
}

.questions-title p {
  margin-block-start: 24px;
}

.faq {
  border-block-start: 1px solid var(--line-strong);
}

.faq details {
  border-block-end: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding-block: 18px;
  list-style: none;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span:last-child {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition:
    background-color 450ms var(--ease-heavy),
    transform 650ms var(--ease-heavy);
}

.faq summary > span:last-child::before,
.faq summary > span:last-child::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 550ms var(--ease-heavy);
}

.faq summary > span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary > span:last-child {
  background: var(--accent-soft);
  transform: rotate(90deg);
}

.faq details[open] summary > span:last-child::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq details p {
  max-width: 58ch;
  padding: 0 60px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

html[dir="rtl"] .faq details p {
  padding: 0 0 30px 60px;
}

.order-section {
  padding-block-end: calc(var(--section-gap) * 0.72);
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
}

.order-summary {
  padding-inline-start: clamp(0px, 2vw, 24px);
}

.order-kicker {
  display: block;
  margin-block-end: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.order-summary h2 {
  max-width: 10ch;
}

.order-summary > p {
  margin-block-start: 24px;
}

.cart {
  margin-block-start: 40px;
}

.cart-line {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-block-start: 1px solid var(--line);
}

.cart-line:last-of-type {
  border-block-end: 1px solid var(--line);
}

.cart-line__swatch {
  display: inline-block;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(31, 39, 50, 0.12);
}

.cart-line__info strong {
  display: block;
  font-size: 14px;
}

.cart-line__info span {
  display: block;
  margin-block-start: 2px;
  color: var(--muted);
  font-size: 12px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.qty__btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  transition: background-color 300ms var(--ease-heavy), color 300ms var(--ease-heavy);
}

.qty__btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.qty__n {
  min-width: 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.cart-line__sum {
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.cart-line__remove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--soft);
  font-size: 16px;
  transition: background-color 300ms var(--ease-heavy), color 300ms var(--ease-heavy);
}

.cart-line__remove:hover {
  background: rgba(169, 45, 58, 0.1);
  color: var(--error);
}

.cart-empty {
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.cart-empty p {
  margin-block-end: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 16px;
}

.cart-total span {
  color: var(--muted);
  font-size: 13px;
}

.cart-total strong {
  font-size: 20px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.payment-note {
  margin-block-start: 16px !important;
  font-size: 12px !important;
}

.form-bezel {
  min-height: 655px;
}

.order-form,
.order-success {
  min-height: 639px;
  padding: clamp(28px, 4vw, 52px);
}

.payset {
  margin: 0;
  padding: 0;
  border: 0;
}

.payset legend {
  padding: 0;
  margin-block-end: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payset__options {
  display: flex;
  gap: 10px;
}

.payopt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 300ms var(--ease-heavy),
    background-color 300ms var(--ease-heavy),
    color 300ms var(--ease-heavy);
}

.payopt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payopt:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.payopt:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.order-review {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 639px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-inner);
  background: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 0 0 1px rgba(var(--ink-rgb), 0.065);
}

.order-review h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.review-lines {
  margin-block-start: 8px;
}

.review-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  border-block-start: 1px solid var(--line);
  font-size: 14px;
}

.review-line:last-of-type {
  border-block-end: 1px solid var(--line);
}

.review-line .cart-line__swatch {
  width: 22px;
  height: 22px;
  margin-inline-end: 9px;
  vertical-align: -6px;
}

.review-line strong {
  font-variant-numeric: tabular-nums;
}

.order-review .cart-total {
  padding-block: 4px 0;
}

.review-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 8px 0 0;
  font-size: 13px;
}

.review-details dt {
  color: var(--muted);
}

.review-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.order-review .order-submit {
  margin-block-start: auto;
}

.review-back {
  align-self: center;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-grid + .field-grid {
  margin-block-start: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-field);
  outline: 0;
  background: rgba(var(--canvas-rgb), 0.5);
  color: var(--ink);
  transition:
    border-color 450ms var(--ease-heavy),
    background-color 450ms var(--ease-heavy),
    box-shadow 450ms var(--ease-heavy),
    transform 450ms var(--ease-heavy);
}

.field input,
.field select {
  height: 54px;
  padding-inline: 15px;
}

.field textarea {
  min-height: 92px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--soft);
  opacity: 0.86;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error);
}

.field-error {
  min-height: 16px;
  color: var(--error);
  font-size: 10px;
}

.gift-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 11px;
  margin-block: 24px 20px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.gift-check input {
  position: absolute;
  opacity: 0;
}

.gift-check__box {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(var(--canvas-rgb), 0.5);
  transition:
    background-color 400ms var(--ease-heavy),
    border-color 400ms var(--ease-heavy),
    transform 550ms var(--ease-spring);
}

.gift-check__box::after {
  position: absolute;
  inset: 4px 7px 6px;
  border: solid #f7f8fb;
  border-width: 0 2px 2px 0;
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(0.45);
  transition:
    opacity 350ms var(--ease-heavy),
    transform 550ms var(--ease-spring);
}

.gift-check input:checked + .gift-check__box {
  border-color: var(--accent);
  background: var(--accent);
}

.gift-check input:checked + .gift-check__box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.gift-check input:focus-visible + .gift-check__box {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.gift-note {
  margin-block-end: 20px;
}

.turnstile-slot {
  margin-block-end: 18px;
}

.form-message {
  min-height: 18px;
  margin-block: 2px 12px;
  color: var(--error);
  font-size: 11px;
}

.order-submit {
  width: 100%;
}

.order-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.privacy-note {
  margin-block-start: 12px;
  color: var(--soft);
  font-size: 10px;
  text-align: center;
}

.order-success {
  display: grid;
  align-content: center;
  justify-items: start;
}

.order-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-block-end: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
}

.order-success h3 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

html[dir="rtl"] .order-success h3 {
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.order-success p {
  max-width: 38ch;
  margin-block: 18px 30px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 50px;
  padding-block: 60px max(60px, env(safe-area-inset-bottom));
  border-block-start: 1px solid var(--line);
}

.brand--footer {
  align-self: center;
}

.site-footer > p {
  max-width: 35ch;
  color: var(--muted);
  font-size: 12px;
}

.footer-meta {
  display: flex;
  gap: 20px;
  color: var(--soft);
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease-heavy) var(--delay, 0ms),
    transform 900ms var(--ease-heavy) var(--delay, 0ms);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes model-arrive {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-intro,
  .hero-copy h1,
  .hero-summary,
  .hero-actions,
  .hero-price {
    animation: hero-arrive 900ms var(--ease-heavy) both;
  }

  .hero-copy h1 { animation-delay: 80ms; }
  .hero-summary { animation-delay: 150ms; }
  .hero-actions { animation-delay: 220ms; }
  .hero-price { animation-delay: 290ms; }

  .model-shell {
    animation: model-arrive 1100ms var(--ease-heavy) 120ms both;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 38px;
  }

  h1 {
    font-size: clamp(54px, 7vw, 78px);
  }

  .model-shell {
    min-height: 470px;
  }

  .mounting-section {
    gap: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --page-gutter: 24px;
    --section-gap: 112px;
  }

  .hero-scroll {
    height: auto;
  }

  .hero-pin {
    position: relative;
    display: block;
    min-height: 0;
    overflow: visible;
    padding-block: 112px 54px;
  }

  .hero-grid {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    max-width: 720px;
    margin-block-end: 44px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(58px, 10vw, 86px);
  }

  .model-story {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 300dvh;
    width: calc(100% + (var(--page-gutter) * 2));
    margin-inline: calc(var(--page-gutter) * -1);
  }

  .model-shell {
    position: sticky;
    inset-block-start: 92px;
    width: 100%;
    height: calc(100dvh - 116px);
    min-height: 0;
    max-height: 780px;
    margin: 0;
  }

  /* The static hero copy sits above the scene on mobile; never phase it out. */
  .hero-scroll[data-story-phase] .hero-copy {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .model-caption {
    display: none;
  }

  /* The colors panel rides the bottom of the viewport through the scene. */
  .colors-panel {
    position: sticky;
    z-index: 5;
    inset-block-end: 16px;
    align-self: stretch;
    max-width: none;
    margin-block-start: auto;
    margin-inline: 14px;
    padding: 16px 16px 14px;
    border: 1px solid var(--hero-line);
    border-radius: var(--radius-inner);
    background: color-mix(in srgb, var(--hero-bg) 78%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .colors-title {
    display: none;
  }

  .colors-name {
    margin: 0;
    font-size: clamp(26px, 6.4vw, 34px);
    letter-spacing: -0.04em;
    line-height: 1.05;
  }

  .colors-copy {
    max-width: none;
    margin-block-start: 6px;
    font-size: 13px;
    line-height: 1.5;
  }

  .colors-buy {
    margin-block-start: 12px;
    gap: 12px;
  }

  .colors-delivery {
    display: none;
  }

  .colors-add {
    flex: 1;
    justify-content: space-between;
  }

  .colors-rail {
    flex-wrap: nowrap;
    gap: 8px;
    margin-block-start: 12px;
    overflow-x: auto;
    padding-block-end: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .rail-option {
    flex: none;
    scroll-snap-align: start;
  }

  .lifestyle-heading,
  .mounting-section,
  .questions-section,
  .order-shell {
    grid-template-columns: 1fr;
  }

  .lifestyle-heading {
    align-items: start;
    gap: 24px;
  }

  .lifestyle-heading p {
    max-width: 50ch;
  }

  .mounting-section {
    gap: 52px;
  }

  .mount-copy {
    max-width: 680px;
  }

  .mount-media {
    width: 78%;
  }

  .questions-title {
    position: static;
  }

  .questions-title h2 {
    max-width: 12ch;
  }

  .order-shell {
    gap: 54px;
  }

  .order-summary {
    max-width: 700px;
    padding-inline-start: 0;
  }

  .order-summary h2 {
    max-width: 13ch;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 18px;
    --section-gap: 96px;
    --radius-outer: 24px;
    --radius-inner: 18px;
  }

  body {
    background: var(--canvas);
  }

  .site-header {
    width: calc(100% - 20px);
    inset-block-start: max(10px, env(safe-area-inset-top));
    height: 58px;
    padding-inline-start: 14px;
  }

  html[dir="rtl"] .site-header {
    padding-inline: 14px 7px;
  }

  .brand__name {
    display: none;
  }

  .brand__monogram {
    width: 37px;
  }

  .language-button {
    padding-inline: 9px;
  }

  .hero-pin {
    display: block;
    min-height: 0;
    padding-block: 103px 40px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-scroll {
    height: auto;
  }

  .hero-copy {
    margin-block-end: 36px;
  }

  .hero-intro {
    margin-block-end: 18px;
  }

  h1,
  html[dir="rtl"] h1 {
    max-width: 11ch;
    font-size: clamp(48px, 14.4vw, 70px);
  }

  .hero-summary {
    margin-block-start: 20px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-block-start: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-price {
    margin-block-start: 18px;
  }

  .model-shell {
    inset-block-start: 78px;
    width: 100%;
    height: calc(100dvh - 96px);
    min-height: 0;
    max-height: 720px;
    margin: 0;
  }

  .lifestyle-section {
    padding-block-start: 84px;
  }

  .lifestyle-heading {
    margin-block-end: 36px;
  }

  .lifestyle-heading h2,
  .mount-copy h2,
  .price-statement h2,
  .questions-title h2,
  .order-summary h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .lifestyle-media,
  .lifestyle-caption,
  .mount-media,
  html[dir="rtl"] .lifestyle-media,
  html[dir="rtl"] .lifestyle-caption,
  html[dir="rtl"] .mount-media {
    width: 100%;
    margin-inline: 0;
  }

  .lifestyle-media .media-core {
    aspect-ratio: 4 / 5;
  }

  .lifestyle-caption {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .lifestyle-caption span {
    min-width: max-content;
  }

  .mount-copy h2 {
    margin-block-start: 20px;
  }

  .mount-steps {
    margin-block-start: 34px;
  }

  .mount-media .media-core {
    aspect-ratio: 4 / 5;
  }

  .price-section {
    padding-block-start: 68px;
  }

  .price-composition {
    grid-template-columns: 1fr;
  }

  .price-statement {
    min-height: 450px;
    padding: 34px 27px;
  }

  .price-statement h2 {
    max-width: 12ch;
  }

  .price-figure strong {
    font-size: clamp(62px, 20vw, 92px);
  }

  .included-list {
    padding: 14px 27px 28px;
  }

  .included-list > div {
    padding-block: 22px;
  }

  .questions-section {
    gap: 42px;
  }

  .faq summary {
    min-height: 78px;
    font-size: 16px;
  }

  .faq details p,
  html[dir="rtl"] .faq details p {
    padding: 0 0 24px;
  }

  .order-section {
    padding-block-end: 80px;
  }

  .cart {
    margin-block-start: 28px;
  }

  .cart-line {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    grid-template-areas:
      "swatch info remove"
      "swatch qty sum";
    row-gap: 10px;
  }

  .cart-line__swatch { grid-area: swatch; width: 32px; height: 32px; }
  .cart-line__info { grid-area: info; }
  .cart-line .qty { grid-area: qty; justify-self: start; }
  .cart-line__sum { grid-area: sum; justify-self: end; }
  .cart-line__remove { grid-area: remove; justify-self: end; }

  .form-bezel {
    min-height: auto;
  }

  .order-form,
  .order-review,
  .order-success {
    min-height: 0;
    padding: 28px 20px;
  }

  .payset__options {
    flex-direction: column;
  }

  .payopt {
    justify-content: center;
  }

  .order-success {
    min-height: 560px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field-grid + .field-grid {
    margin-block-start: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .brand--footer .brand__name {
    display: block;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .hero-pin {
    padding-block: 92px 24px;
  }

  .hero-grid {
    gap: 36px;
  }

  h1 {
    font-size: clamp(52px, 5.5vw, 76px);
  }

  .hero-summary {
    margin-block-start: 18px;
  }

  .hero-actions,
  .hero-price {
    margin-block-start: 20px;
  }

  .model-shell {
    height: 68dvh;
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scroll {
    height: auto;
  }

  .hero-pin {
    position: relative;
    min-height: 100dvh;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    min-height: 0;
  }

  .model-shell {
    position: relative;
    inset-block-start: auto;
    justify-self: auto;
    width: 100%;
  }

  .model-story {
    height: auto;
  }

  /* No scroll timeline: show the hero and the colors review as plain sections,
     with the rail acting as a direct picker. */
  .hero-scroll[data-story-phase] .hero-copy,
  .colors-panel {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .colors-panel {
    align-self: flex-start;
    margin: 0;
  }

  .colors-title {
    display: block;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .order-section {
    display: none !important;
  }

  .hero-scroll {
    height: auto;
  }

  .hero-pin,
  .questions-title {
    position: static;
  }
}
