:root {
  --bg: #080808;
  --surface: #111111;
  --surface-raised: #181818;
  --paper: #ecebe7;
  --paper-deep: #d9d8d4;
  --text: #f5f3ef;
  --text-dark: #111111;
  --muted: #a8a8a8;
  --muted-dark: #616161;
  --burgundy: #7e2632;
  --burgundy-bright: #aa3b49;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 17, 17, 0.16);
  --header-height: 64px;
  --section-nav-height: 54px;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--section-nav-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.8rem, 8.5vw, 7.6rem);
}

h2 {
  font-size: clamp(3rem, 6.4vw, 6.5rem);
}

h3 {
  font-size: clamp(1.65rem, 3vw, 3.2rem);
}

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

:focus-visible {
  outline: 2px solid var(--burgundy-bright);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

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

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper);
  color: var(--text-dark);
}

.eyebrow,
.story-label,
.card-index {
  color: var(--burgundy-bright);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-solid {
  background: var(--burgundy);
  color: var(--text);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--burgundy-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  border-color: rgba(17, 17, 17, 0.42);
  color: var(--text-dark);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--text-dark);
  background: rgba(17, 17, 17, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--burgundy-bright);
  text-underline-offset: 6px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 8, 0.42);
  transition: background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.brand-name {
  overflow: hidden;
  font-size: 0.93rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(245, 243, 239, 0.72);
  font-size: 0.82rem;
}

.primary-nav > a:not(.nav-cta) {
  padding: 9px 0;
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta):focus-visible {
  color: var(--text);
}

.nav-cta,
.section-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 4px;
  background: var(--burgundy);
  color: var(--text);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.section-nav {
  position: sticky;
  z-index: 25;
  top: var(--header-height);
  height: var(--section-nav-height);
  margin-top: var(--header-height);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(18px);
}

.section-nav-inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  gap: 20px;
}

.section-nav-title {
  font-size: 0.91rem;
  font-weight: 700;
}

.section-nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 26px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section-nav-links a {
  position: relative;
  display: grid;
  place-items: center;
  white-space: nowrap;
}

.section-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--burgundy-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-nav-links a.is-active,
.section-nav-links a:hover,
.section-nav-links a:focus-visible {
  color: var(--text);
}

.section-nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-nav-cta {
  justify-self: end;
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.76rem;
}

.cinematic-hero {
  position: relative;
  height: 118svh;
  background: var(--bg);
}

.hero-sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--section-nav-height));
  height: calc(100svh - var(--header-height) - var(--section-nav-height));
  min-height: 560px;
  overflow: clip;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #0b0b0c;
}

.hero-backdrop::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.88) 44%, rgba(8, 8, 8, 0.12) 76%);
  content: "";
}

.hero-product {
  position: absolute;
  z-index: -1;
  right: 2vw;
  bottom: -18%;
  width: min(57vw, 770px);
  height: 125%;
  opacity: calc(1 - var(--hero-progress, 0) * 0.36);
  transform: translate3d(0, calc(var(--hero-progress, 0) * -2%), 0) scale(calc(1 - var(--hero-progress, 0) * 0.025));
  transform-origin: center bottom;
  animation: hero-product-in 1100ms var(--ease) both;
  will-change: transform, opacity;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) brightness(0.86);
}

.hero-content {
  display: grid;
  position: relative;
  z-index: 2;
  align-content: center;
  height: 100%;
  padding-bottom: 3vh;
  gap: 24px;
  opacity: calc(1 - var(--hero-progress, 0) * 1.25);
  transform: translate3d(0, calc(var(--hero-progress, 0) * -34px), 0);
  will-change: transform, opacity;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-lead,
.hero-content .button-row {
  animation: hero-copy-in 780ms var(--ease) both;
}

.hero-content h1 {
  width: min(790px, 62vw);
  font-size: clamp(3.4rem, 6.4vw, 6.25rem);
}

.hero-content h1 {
  animation-delay: 100ms;
}

.hero-lead {
  width: min(610px, 52vw);
  color: rgba(245, 243, 239, 0.72);
  font-size: clamp(1.06rem, 1.6vw, 1.34rem);
}

.hero-content .button-row {
  margin-top: 8px;
  animation-delay: 190ms;
}

.hero-year {
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

@keyframes hero-product-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-space {
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-intro {
  display: grid;
  max-width: 900px;
  gap: 20px;
  margin-bottom: 64px;
}

.highlights {
  overflow: clip;
  background: var(--surface);
}

.highlight-track {
  display: grid;
  grid-auto-columns: minmax(390px, 530px);
  grid-auto-flow: column;
  gap: 18px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--burgundy) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.highlight-card {
  position: relative;
  height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0c0c;
  scroll-snap-align: start;
}

.highlight-card-wide {
  grid-column: span 1;
}

.highlight-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.88) 100%);
  content: "";
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.78);
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.highlight-card:nth-child(2) img {
  object-position: 61% center;
}

.highlight-card:hover img {
  filter: saturate(0.88) brightness(0.86);
  transform: scale(1.025);
}

.highlight-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: grid;
  gap: 13px;
}

.highlight-copy h3 {
  max-width: 430px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.highlight-copy > p:last-child {
  max-width: 440px;
  color: rgba(245, 243, 239, 0.7);
}

.suit-rotation {
  position: relative;
  overflow: clip;
  padding: 120px 0;
  background: #090909;
}

.story-sticky {
  position: relative;
}

.rotation-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
}

.rotation-stage {
  position: relative;
  height: min(78svh, 800px);
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  background: #0d0d0e;
}

.rotation-stage::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 2px;
  background: var(--burgundy);
  content: "";
  transform: scaleX(calc(0.18 + var(--story-progress, 0) * 0.82));
  transform-origin: right;
}

.rotation-fallback,
.rotation-frames {
  position: absolute;
  inset: 0;
}

.rotation-fallback img,
.story-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: brightness(0.9) contrast(1.04) saturate(0.82);
  transform: translate3d(var(--frame-shift, 0), 0, 0) scale(var(--frame-scale, 1));
  will-change: transform, opacity;
}

.rotation-frames {
  display: none;
  background: #0d0d0e;
}

.js-enabled .rotation-frames {
  display: block;
}

.story-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 760ms ease, transform 900ms var(--ease);
}

.story-frame.is-active {
  z-index: 1;
  opacity: 1;
}

.rotation-stage figcaption {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 14px;
  left: 18px;
  color: rgba(245, 243, 239, 0.4);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.rotation-content {
  position: relative;
  min-width: 0;
}

.story-label {
  margin-bottom: 28px;
}

.story-progress,
.detail-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-progress {
  margin-bottom: 38px;
}

.story-progress span,
.detail-progress span {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 300ms var(--ease), background-color 300ms ease;
}

.story-progress span.is-active,
.detail-progress span.is-active {
  width: 48px;
  background: var(--burgundy-bright);
}

.story-steps {
  display: grid;
  gap: 56px;
}

.story-step {
  display: grid;
  gap: 20px;
}

.story-step h2,
.story-step h3 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.story-step > p:last-child {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.js-enabled .suit-rotation {
  min-height: 500svh;
  padding: 0;
}

.js-enabled .story-sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--section-nav-height));
  height: calc(100svh - var(--header-height) - var(--section-nav-height));
  min-height: 600px;
}

.js-enabled .rotation-layout {
  height: 100%;
}

.js-enabled .story-steps {
  position: relative;
  display: block;
  min-height: 430px;
}

.js-enabled .story-step {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-50% + 30px), 0);
  transition: opacity 430ms ease, transform 620ms var(--ease);
}

.js-enabled .story-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.fit-section {
  position: relative;
  min-height: 120svh;
  overflow: clip;
  background: var(--paper);
  color: var(--text-dark);
}

.fit-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 53%;
  overflow: hidden;
}

.fit-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) contrast(1.03);
  transform: translate3d(0, calc(var(--parallax-progress, 0) * -7%), 0) scale(1.04);
  will-change: transform;
}

.fit-content {
  display: grid;
  align-content: center;
  min-height: 120svh;
  padding: 110px 56% 110px 0;
  gap: 26px;
}

.fit-content h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.fit-content > p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.fit-statements {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.fit-statements span {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 700;
}

.sizes-section {
  position: relative;
  display: grid;
  min-height: 125svh;
  overflow: clip;
  background: #141011;
  isolation: isolate;
}

.sizes-image,
.sizes-shade,
.sizes-content {
  grid-area: 1 / 1;
}

.sizes-image {
  z-index: -2;
  align-self: end;
  justify-self: end;
  width: min(58vw, 780px);
  height: 112svh;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(0.72) saturate(0.72);
}

.sizes-shade {
  z-index: -1;
  background: linear-gradient(90deg, #120d0e 0%, rgba(18, 13, 14, 0.96) 42%, rgba(18, 13, 14, 0.22) 78%);
}

.sizes-content {
  display: grid;
  align-content: center;
  max-width: 740px;
  min-height: 125svh;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 110px 0;
  gap: 28px;
}

.sizes-content h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.sizes-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(245, 243, 239, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.sizes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  max-width: 620px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.sizes-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.sizes-content .text-link {
  justify-self: start;
}

.detail-story {
  position: relative;
  overflow: clip;
  padding: 120px 0;
  background: #080808;
}

.detail-sticky {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.detail-frames,
.detail-shade,
.detail-content {
  position: absolute;
  inset: 0;
}

.detail-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.72) saturate(0.78);
  transform: scale(1.025);
  transition: opacity 800ms ease, transform 1300ms var(--ease);
  will-change: transform, opacity;
}

.detail-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.detail-lapel {
  object-position: center 32%;
}

.detail-shoulder {
  object-position: 64% 17%;
  transform-origin: 70% 22%;
}

.detail-pocket {
  object-position: 62% 76%;
  transform-origin: 62% 72%;
}

.detail-buttons {
  object-position: 68% 79%;
  transform-origin: 70% 76%;
}

.detail-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.12) 100%);
}

.detail-content {
  z-index: 2;
  display: grid;
  align-content: end;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.detail-content .story-label {
  margin: 0 0 28px;
}

.detail-steps {
  position: relative;
  min-height: clamp(320px, 36vh, 380px);
}

.detail-step {
  display: grid;
  gap: 18px;
}

.detail-step h2,
.detail-step h3 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.js-enabled .detail-story {
  min-height: 400svh;
  padding: 0;
}

.js-enabled .detail-sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--section-nav-height));
  height: calc(100svh - var(--header-height) - var(--section-nav-height));
  min-height: 600px;
}

.js-enabled .detail-step {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 28px, 0);
  transition: opacity 430ms ease, transform 620ms var(--ease);
}

.js-enabled .detail-step.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.detail-progress {
  margin-top: 34px;
}

.occasions {
  background: var(--paper);
  color: var(--text-dark);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 22px;
}

.occasion {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  border-radius: 4px;
  background: #161616;
  color: var(--text);
}

.occasion::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.86));
  content: "";
}

.occasion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.78);
  transition: transform 800ms var(--ease);
}

.occasion:hover img {
  transform: scale(1.025);
}

.occasion:focus-visible {
  outline: 2px solid var(--burgundy-bright);
  outline-offset: 4px;
}

.occasion > div {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  gap: 10px;
}

.occasion h3 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.occasion p {
  color: rgba(245, 243, 239, 0.7);
}

.occasion-business {
  grid-column: 1 / span 7;
  min-height: 680px;
}

.occasion-business img {
  object-position: 60% center;
}

.occasion-wedding {
  grid-column: 8 / span 5;
  min-height: 520px;
  margin-top: 90px;
}

.occasion-evening {
  grid-column: 1 / span 5;
  min-height: 510px;
}

.occasion-classic {
  grid-column: 6 / span 7;
  min-height: 640px;
  margin-top: -55px;
}

.heritage-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: clip;
  background: #101010;
}

.heritage-year {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(12rem, 32vw, 34rem);
  font-weight: 800;
  line-height: 0.8;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.heritage-content {
  display: grid;
  position: relative;
  z-index: 1;
  place-content: center;
  gap: 26px;
  max-width: 960px;
  text-align: center;
}

.heritage-content p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.consultation-section {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--paper);
  color: var(--text-dark);
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.consultation-copy {
  display: grid;
  gap: 26px;
}

.consultation-copy h2 {
  font-size: clamp(3rem, 5.8vw, 6rem);
}

.consultation-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.consultation-copy .button-row {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  font-style: normal;
}

.contact-panel > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-panel span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-panel a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: 105svh;
  overflow: clip;
  background: #080808;
  isolation: isolate;
}

.closing-cta > img,
.closing-shade,
.closing-content {
  grid-area: 1 / 1;
}

.closing-cta > img {
  z-index: -2;
  align-self: end;
  justify-self: end;
  width: min(58vw, 760px);
  height: 102svh;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(0.6) saturate(0.72);
}

.closing-shade {
  z-index: -1;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.94) 45%, rgba(8, 8, 8, 0.18) 82%);
}

.closing-content {
  display: grid;
  align-content: center;
  max-width: 760px;
  gap: 28px;
}

.closing-content p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.site-footer {
  padding: 68px 0 26px;
  border-top: 1px solid var(--line);
  background: #070707;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-grid > div:first-child {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand {
  color: var(--text);
}

.footer-grid address {
  font-style: normal;
}

.footer-grid address a,
.footer-links a {
  color: var(--text);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.footer-partner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-partner-logo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.footer-partner-logo:hover,
.footer-partner-logo:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-partner-copy {
  display: grid;
  gap: 0;
  color: #c9a98d;
  font-size: 0.62rem;
  line-height: 1.18;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 141, 0.78);
  text-underline-offset: 2px;
  transition: color 180ms ease;
}

.footer-partner-copy:hover,
.footer-partner-copy:focus-visible {
  color: var(--text);
}

.primary-nav a[aria-current="page"] {
  color: var(--text);
}

.primary-nav a[aria-current="page"]:not(.nav-cta) {
  border-bottom: 1px solid var(--burgundy-bright);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  padding-top: var(--header-height);
  overflow: clip;
  background: #0a0a0a;
  color: var(--text);
  isolation: isolate;
}

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

.page-hero-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-media.position-right {
  object-position: 68% center;
}

.page-hero-media.position-left {
  object-position: 32% center;
}

.page-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.74) 46%, rgba(8, 8, 8, 0.18) 82%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  min-height: calc(82svh - var(--header-height));
  max-width: 940px;
  padding-top: 120px;
  padding-bottom: 86px;
  gap: 24px;
}

.page-hero h1 {
  max-width: 920px;
  overflow-wrap: anywhere;
  hyphens: auto;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.98;
}

.page-hero-content > * {
  min-width: 0;
}

.page-hero-lead {
  max-width: 680px;
  color: rgba(245, 243, 239, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(245, 243, 239, 0.68);
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 243, 239, 0.34);
  text-underline-offset: 4px;
}

.content-page {
  background: var(--paper);
  color: var(--text-dark);
}

.content-band {
  padding: 118px 0;
}

.content-band-dark {
  background: var(--surface);
  color: var(--text);
}

.content-band-muted {
  background: var(--paper-deep);
}

.content-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.content-intro > * {
  min-width: 0;
}

.content-page h2,
.legal-page h1 {
  max-width: 780px;
  overflow-wrap: anywhere;
  hyphens: auto;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 1;
}

.content-intro h2 {
  font-size: 4rem;
}

.content-page h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  line-height: 1.08;
}

.content-page .eyebrow {
  margin-bottom: 18px;
}

.prose {
  display: grid;
  max-width: 720px;
  gap: 22px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.content-band-dark .prose {
  color: var(--muted);
}

.prose strong {
  color: currentColor;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 78px;
  border-top: 1px solid var(--line-dark);
}

.content-band-dark .fact-list {
  border-color: var(--line);
}

.fact-item {
  min-height: 230px;
  padding: 34px 34px 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.fact-item + .fact-item {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.content-band-dark .fact-item,
.content-band-dark .fact-item + .fact-item {
  border-color: var(--line);
}

.fact-item p {
  margin-top: 18px;
  color: var(--muted-dark);
}

.content-band-dark .fact-item p {
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 720px;
  background: #0d0d0d;
  color: var(--text);
}

.media-split-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.media-split-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(70px, 6vw, 110px);
  gap: 28px;
}

.media-split-copy h2 {
  max-width: 100%;
  font-size: 3.8rem;
}

.media-split-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.service-link {
  display: grid;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  align-content: space-between;
  gap: 34px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.service-link:hover,
.service-link:focus-visible {
  border-color: rgba(126, 38, 50, 0.64);
  background: rgba(126, 38, 50, 0.05);
  transform: translateY(-3px);
}

.service-link span {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
}

.process-step {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}

.process-step > span {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-step p {
  color: var(--muted-dark);
}

.page-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: clip;
  background: #080808;
  color: var(--text);
  isolation: isolate;
}

.page-cta > img,
.page-cta-shade,
.page-cta-content {
  grid-area: 1 / 1;
}

.page-cta > img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cta-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.54) 70%, rgba(8, 8, 8, 0.34));
}

.page-cta-content {
  display: grid;
  align-content: center;
  max-width: 780px;
  gap: 26px;
}

.page-cta-content p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(60px, 10vw, 150px);
}

.contact-page-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.contact-page-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-page-list span,
.footer-heading {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-page-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-list details p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted-dark);
}

.legal-page {
  min-height: 70svh;
  padding: calc(var(--header-height) + 90px) 0 110px;
  background: var(--paper);
  color: var(--text-dark);
}

.legal-page .breadcrumb {
  margin-bottom: 44px;
  color: var(--muted-dark);
}

.legal-prose {
  display: grid;
  max-width: 800px;
  margin-top: 58px;
  gap: 28px;
  color: var(--muted-dark);
}

.legal-prose section {
  display: grid;
  gap: 12px;
}

.legal-prose h2 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-note {
  padding: 18px;
  border-left: 3px solid var(--burgundy);
  background: rgba(126, 38, 50, 0.06);
}

.footer-grid-expanded {
  grid-template-columns: 1.1fr 0.9fr 0.8fr 0.8fr;
}

.footer-heading {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

.footer-link-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-link-column a {
  color: var(--text);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 700ms ease, transform 850ms var(--ease);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 17px;
  }

  .section-nav-inner {
    grid-template-columns: minmax(140px, 1fr) auto minmax(90px, 1fr);
  }

  .section-nav-links {
    gap: 18px;
  }

  .rotation-layout {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1fr);
    gap: 42px;
  }

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

  .consultation-grid {
    grid-template-columns: 1fr 0.85fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
    --section-nav-height: 52px;
    --shell: min(100% - 36px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav > a:not(.nav-cta) {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .section-nav-inner {
    display: flex;
    width: 100%;
    padding-left: 18px;
    gap: 18px;
  }

  .section-nav-title {
    flex: 0 0 auto;
  }

  .section-nav-links {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .section-nav-links::-webkit-scrollbar {
    display: none;
  }

  .section-nav-cta {
    position: sticky;
    right: 0;
    flex: 0 0 auto;
    min-height: 100%;
    padding: 0 18px;
    border-radius: 0;
  }

  .hero-product {
    right: -6vw;
    width: min(66vw, 650px);
  }

  .rotation-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: 32px;
  }

  .story-step h2,
  .story-step h3 {
    font-size: clamp(2.25rem, 5.6vw, 4rem);
  }

  .fit-media {
    position: relative;
    width: 100%;
    height: 62svh;
    min-height: 520px;
  }

  .fit-content {
    min-height: auto;
    padding: 90px 0;
  }

  .sizes-content {
    width: var(--shell);
    margin: 0 auto;
  }

  .occasion-business,
  .occasion-wedding,
  .occasion-evening,
  .occasion-classic {
    grid-column: span 6;
    min-height: 520px;
    margin-top: 0;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    max-width: 680px;
  }

  .content-intro,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .content-intro {
    gap: 42px;
  }

  .media-split {
    grid-template-columns: 1fr;
  }

  .media-split-image {
    height: 62svh;
    min-height: 500px;
  }

  .service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    font-size: 15px;
  }

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

  h2 {
    font-size: clamp(2.8rem, 12.5vw, 4.5rem);
  }

  .brand-name {
    max-width: 190px;
  }

  .section-nav-title {
    display: none;
  }

  .section-nav-inner {
    gap: 0;
  }

  .section-nav-links {
    gap: 20px;
    padding-right: 16px;
  }

  .section-nav-links a {
    min-height: 50px;
  }

  .cinematic-hero {
    height: 112svh;
  }

  .hero-sticky {
    min-height: 520px;
  }

  .hero-backdrop::before {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.16) 42%, #080808 78%);
  }

  .hero-product {
    right: -12vw;
    bottom: 3%;
    width: 112vw;
    height: 112%;
    opacity: calc(0.7 - var(--hero-progress, 0) * 0.22);
  }

  .hero-product img {
    object-position: 58% bottom;
    filter: contrast(1.03) brightness(0.68);
  }

  .hero-content {
    align-content: end;
    padding-bottom: 38px;
    gap: 18px;
  }

  .hero-content h1,
  .hero-lead {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 1rem;
  }

  .hero-content .button-row {
    display: grid;
    width: min(100%, 350px);
  }

  .button {
    width: 100%;
  }

  .section-space {
    padding: 90px 0;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .highlight-track {
    grid-auto-columns: 84vw;
    padding-inline: 14px;
  }

  .highlight-card {
    height: 540px;
  }

  .highlight-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .js-enabled .suit-rotation {
    min-height: 320svh;
  }

  .js-enabled .story-sticky {
    height: calc(100svh - var(--header-height) - var(--section-nav-height));
    min-height: 540px;
  }

  .rotation-layout {
    position: relative;
    display: block;
    width: 100%;
  }

  .rotation-stage {
    position: absolute;
    top: 12px;
    right: 14px;
    left: 14px;
    height: 55%;
    min-height: 0;
  }

  .rotation-stage figcaption {
    display: none;
  }

  .rotation-content {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    height: 40%;
  }

  .story-label {
    display: none;
  }

  .story-progress {
    margin-bottom: 18px;
  }

  .story-progress span {
    width: 18px;
  }

  .story-progress span.is-active {
    width: 32px;
  }

  .js-enabled .story-steps {
    min-height: 220px;
  }

  .story-step {
    gap: 12px;
  }

  .story-step h2,
  .story-step h3 {
    font-size: clamp(2rem, 9.2vw, 2.9rem);
    line-height: 1.02;
  }

  .story-step > p:last-child {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .fit-media {
    height: 56svh;
    min-height: 430px;
  }

  .fit-content {
    padding: 78px 0;
  }

  .sizes-section,
  .sizes-content {
    min-height: 112svh;
  }

  .sizes-image {
    width: 105vw;
    height: 94svh;
    opacity: 0.48;
    transform: translateX(24%);
  }

  .sizes-shade {
    background: linear-gradient(180deg, rgba(18, 13, 14, 0.2), #120d0e 76%);
  }

  .sizes-content {
    align-content: end;
    padding: 90px 0 74px;
    gap: 22px;
  }

  .sizes-content h2 {
    font-size: clamp(3.6rem, 16vw, 5.3rem);
  }

  .sizes-list {
    grid-template-columns: 1fr;
  }

  .js-enabled .detail-story {
    min-height: 300svh;
  }

  .js-enabled .detail-sticky {
    min-height: 540px;
  }

  .detail-lapel {
    object-position: 48% 30%;
  }

  .detail-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.88) 74%);
  }

  .detail-content {
    align-content: end;
    width: var(--shell);
    padding-bottom: 40px;
  }

  .detail-content .story-label {
    display: block;
    margin-bottom: 16px;
  }

  .detail-steps {
    min-height: 250px;
  }

  .detail-step h2,
  .detail-step h3 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .occasion-business,
  .occasion-wedding,
  .occasion-evening,
  .occasion-classic {
    grid-column: 1;
    min-height: 510px;
  }

  .heritage-section {
    min-height: 86svh;
  }

  .heritage-year {
    font-size: 44vw;
    transform: translate(-50%, -72%) rotate(-90deg);
  }

  .consultation-section {
    padding: 92px 0;
  }

  .consultation-copy .button-row {
    display: grid;
  }

  .contact-panel > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .closing-cta {
    min-height: 100svh;
  }

  .closing-cta > img {
    width: 108vw;
    height: 88svh;
    opacity: 0.55;
    transform: translateX(24%);
  }

  .closing-shade {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.18), #080808 76%);
  }

  .closing-content {
    align-content: end;
    padding-bottom: 70px;
  }

  .closing-content .button-row {
    display: grid;
  }

  .page-hero {
    min-height: 78svh;
  }

  .page-hero-shade {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.22) 0%, rgba(8, 8, 8, 0.58) 42%, #080808 92%);
  }

  .page-hero-content {
    min-height: calc(78svh - var(--header-height));
    padding-top: 100px;
    padding-bottom: 52px;
    gap: 18px;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .content-band {
    padding: 78px 0;
  }

  .content-intro > *,
  .prose {
    min-width: 0;
  }

  .content-page h2 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .legal-page h1 {
    font-size: 2.05rem;
    line-height: 1.06;
  }

  .fact-list,
  .service-link-grid {
    grid-template-columns: 1fr;
  }

  .fact-list {
    margin-top: 50px;
  }

  .fact-item,
  .fact-item + .fact-item {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .media-split-image {
    height: 56svh;
    min-height: 420px;
  }

  .media-split-copy {
    padding: 72px 14px;
  }

  .service-link-grid,
  .process-list {
    margin-top: 48px;
  }

  .service-link {
    min-height: 210px;
  }

  .process-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .process-step p {
    grid-column: 2;
  }

  .page-cta {
    min-height: 650px;
  }

  .page-cta-shade {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.3), #080808 84%);
  }

  .page-cta-content {
    align-content: end;
    padding-bottom: 70px;
  }

  .contact-page-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-partner {
    margin-top: 14px;
  }

  .footer-partner-logo {
    width: 64px;
    height: 64px;
  }

  .footer-partner-copy {
    font-size: 0.58rem;
  }
}

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

  .cinematic-hero {
    height: auto;
  }

  .hero-sticky {
    position: relative;
  }

  .hero-content,
  .hero-product {
    opacity: 1;
    transform: none;
  }

  .js-enabled .suit-rotation,
  .js-enabled .detail-story {
    min-height: auto;
    padding: 90px 0;
  }

  .js-enabled .story-sticky,
  .js-enabled .detail-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .js-enabled .rotation-layout {
    display: grid;
    height: auto;
  }

  .js-enabled .rotation-stage {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    height: 66svh;
    min-height: 480px;
  }

  .js-enabled .rotation-frames {
    display: none;
  }

  .js-enabled .detail-frames {
    display: block;
    position: relative;
    height: min(68svh, 720px);
    min-height: 480px;
  }

  .js-enabled .detail-frame {
    display: none;
  }

  .js-enabled .detail-frame:first-child {
    display: block;
    opacity: 1;
    transform: none;
  }

  .js-enabled .rotation-content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
  }

  .js-enabled .story-label {
    display: block;
  }

  .js-enabled .story-steps,
  .js-enabled .detail-steps {
    display: grid;
    min-height: 0;
    gap: 54px;
  }

  .js-enabled .story-step,
  .js-enabled .detail-step {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js-enabled .detail-sticky {
    display: grid;
    padding: 72px 0;
    background: var(--surface);
  }

  .js-enabled .detail-shade {
    display: none;
  }

  .js-enabled .detail-content {
    position: relative;
    align-content: start;
    padding: 0;
  }

  .story-progress,
  .detail-progress {
    display: none;
  }

  .fit-media img {
    transform: none;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
