:root {
  --ink: #0d0d0e;
  --charcoal: #0d0d0e;
  --smoke: #d8d1c3;
  --ivory: #f2efe9;
  --gold: #b99656;
  --brass: #8d6a32;
  --oxblood: #582432;
  --steel: #6b7a83;
  --line: rgba(242, 239, 233, 0.18);
  --glass: rgba(8, 8, 7, 0.54);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --sans: "Inter", system-ui, sans-serif;
  --entrance-title: "Cinzel", "Times New Roman", serif;
  --home-title: "Cormorant Garamond", "Times New Roman", serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --clean-title: "Inter", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --lux-bg: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.74), rgba(8, 8, 7, 0.92)),
    var(--lux-bg) center / cover fixed,
    var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(185, 150, 86, 0.32);
  color: var(--ivory);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ivory));
  transform-origin: left center;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(185, 150, 86, 0.12), transparent 68%);
  transition: opacity 220ms ease;
}

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

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(185, 150, 86, 0.95);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.entrance-body {
  min-height: 100vh;
  overflow: hidden;
  transition: opacity 420ms ease, filter 420ms ease;
}

.entrance-body.is-exiting {
  opacity: 0;
  filter: blur(8px);
}

.entrance-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: stretch;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.34), rgba(8, 8, 7, 0.94)),
    radial-gradient(circle at 50% 18%, rgba(185, 150, 86, 0.2), transparent 28rem),
    radial-gradient(circle at 78% 78%, rgba(88, 36, 50, 0.2), transparent 24rem),
    var(--lux-bg) center / cover,
    var(--charcoal);
  isolation: isolate;
  overflow: hidden;
}

.entrance-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.72) 0%, rgba(13, 13, 14, 0.08) 34%, rgba(13, 13, 14, 0.16) 56%, rgba(13, 13, 14, 0.86) 100%),
    radial-gradient(circle at 50% 46%, rgba(185, 150, 86, 0.2), transparent 22rem),
    radial-gradient(ellipse at 50% 78%, rgba(185, 150, 86, 0.28), transparent 26rem);
}

.entrance-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(245, 239, 228, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 228, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.entrance-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(150px, 25vh) minmax(240px, 43vh) minmax(210px, 32vh);
  align-items: center;
  justify-items: center;
  padding: clamp(16px, 2.6vw, 34px) clamp(18px, 4vw, 56px) clamp(18px, 3.2vw, 42px);
  text-align: center;
}

.entrance-kicker {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-self: start;
  gap: clamp(8px, 1.2vh, 14px);
  width: min(1220px, 96vw);
  margin: clamp(8px, 1.2vh, 18px) auto 0;
  opacity: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.72);
  transition: opacity 360ms ease, transform 360ms ease;
  transform: translateY(-6px);
}

.entrance-title-main {
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(4rem, 10.8vw, 9.8rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fffdf6 0%, #f2efe9 36%, #aaa196 62%, #f7f2e8 82%, #6f6861 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.45px rgba(242, 239, 233, 0.45);
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.12)) drop-shadow(0 18px 38px rgba(0, 0, 0, 0.86));
}

.entrance-title-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4.8vw, 72px);
  color: var(--gold);
  font-family: var(--entrance-title);
  font-size: clamp(0.8rem, 1.45vw, 1.36rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.74em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(185, 150, 86, 0.28), 0 12px 34px rgba(0, 0, 0, 0.76);
}

.entrance-title-sub::before,
.entrance-title-sub::after {
  content: "";
  width: clamp(34px, 8vw, 132px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
}

.entrance-title-sub::after {
  background: linear-gradient(90deg, var(--brass), transparent);
}

.entrance-title-sub::before,
.entrance-title-sub::after {
  transform: translateY(-1px);
}

.coin-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.coin-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.34) 0%, rgba(13, 13, 14, 0.04) 34%, rgba(13, 13, 14, 0.2) 60%, rgba(13, 13, 14, 0.86) 100%),
    radial-gradient(circle at 50% 48%, rgba(185, 150, 86, 0.18), transparent 25rem),
    radial-gradient(ellipse at 50% 68%, rgba(185, 150, 86, 0.22), transparent 36rem);
}

.coin-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 500ms ease;
}

.coin-canvas.is-ready {
  opacity: 1;
}

.coin-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0;
  transition: opacity 500ms ease;
}

.coin-video.is-ready {
  opacity: 1;
}

.coin-video.is-ready ~ .coin-canvas {
  display: none;
}

.coin-video.is-ready ~ .coin-shadow {
  display: none;
}

.coin-fallback {
  width: clamp(160px, 32vw, 260px);
  aspect-ratio: 1;
  display: none;
  place-items: center;
  transform-style: preserve-3d;
  animation: coinFallback 3.5s cubic-bezier(0.55, 0.08, 0.18, 1) infinite;
}

.coin-fallback.is-active {
  display: grid;
}

.coin-fallback.is-hidden {
  display: none;
}

.coin-face {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(184, 152, 91, 0.76);
  background:
    radial-gradient(circle at 50% 35%, rgba(245, 239, 228, 0.18), transparent 34%),
    linear-gradient(145deg, #15120d, #050504 70%);
  box-shadow:
    inset 0 0 0 8px rgba(245, 239, 228, 0.04),
    0 38px 80px rgba(0, 0, 0, 0.62);
}

.coin-face img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
}

.coin-shadow {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: clamp(140px, 32vw, 310px);
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.76), transparent 70%);
  filter: blur(8px);
  animation: shadowPulse 3.5s ease-in-out infinite;
}

.quote-card {
  position: relative;
  z-index: 3;
  grid-row: 3;
  align-self: start;
  margin: clamp(34px, 6vh, 82px) auto 0;
  max-width: min(900px, 92vw);
  padding-top: clamp(20px, 3vh, 34px);
  opacity: 0;
  transition: opacity 360ms ease;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 34vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.quote-card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 16px rgba(185, 150, 86, 0.5);
}

.quote-card blockquote {
  position: relative;
  margin: 0;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(1.64rem, 3.92vw, 3.64rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  text-wrap: balance;
  background: linear-gradient(180deg, #fffdf6 0%, var(--ivory) 48%, #9d9489 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.35px rgba(242, 239, 233, 0.4);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.1), 0 18px 44px rgba(0, 0, 0, 0.86);
}

.quote-card blockquote::before,
.quote-card blockquote::after {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  text-shadow: 0 0 18px rgba(185, 150, 86, 0.35);
}

.quote-card blockquote::before {
  content: "\201C";
  margin-right: 0.12em;
}

.quote-card blockquote::after {
  content: "\201D";
  margin-left: 0.08em;
}

.quote-card figcaption {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(18px, 2.7vh, 30px);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.quote-card figcaption::before,
.quote-card figcaption::after {
  content: "";
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
}

.quote-card figcaption::after {
  background: linear-gradient(90deg, var(--brass), transparent);
}

.entrance-body.video-active .entrance-kicker,
.entrance-body.video-active .quote-card {
  opacity: 1;
}

.entrance-body.video-active .entrance-kicker,
.entrance-body.fallback-active .entrance-kicker {
  transform: translateY(0);
}

.entrance-body.fallback-active .entrance-kicker,
.entrance-body.fallback-active .quote-card {
  opacity: 1;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.2), rgba(8, 8, 7, 0.86)),
    radial-gradient(circle at 78% 18%, rgba(184, 152, 91, 0.14), transparent 20rem),
    var(--ink);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.58) 48%, rgba(8, 8, 7, 0.82) 100%),
    radial-gradient(circle at 14% 22%, rgba(184, 152, 91, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(88, 36, 50, 0.16), transparent 28rem),
    var(--lux-bg) center / cover;
  filter: saturate(0.9) contrast(1.08);
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(245, 239, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 228, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.site-shell > * {
  position: relative;
  z-index: 3;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(8, 8, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-mark:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-sigil {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 239, 228, 0.56);
  padding: 7px;
}

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

.brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.icon-button {
  grid-column: 3;
  justify-self: end;
  display: none;
  border: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.44);
  color: var(--ivory);
  cursor: pointer;
}

.menu-button {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 72px 14px auto;
  z-index: 19;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(8, 8, 7, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 16px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.09);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 42px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.91) 0%, rgba(8, 8, 7, 0.7) 37%, rgba(8, 8, 7, 0.16) 78%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.92) 0%, transparent 46%);
}

.hero-content {
  width: min(780px, 100%);
  padding-bottom: clamp(20px, 6vh, 74px);
}

.hero-logo {
  width: clamp(96px, 11vw, 156px);
  height: auto;
  margin-bottom: 26px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.46));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13.5ch;
  margin-bottom: 24px;
  color: var(--ivory);
  font-family: var(--home-title);
  font-size: clamp(4.2rem, 9.4vw, 9.4rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-wrap: balance;
  background: linear-gradient(180deg, #fffaf0 0%, var(--ivory) 42%, #b8aa92 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
}

h2 {
  color: var(--ivory);
  font-family: var(--clean-title);
  font-size: clamp(1.9rem, 4.8vw, 4.65rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  color: var(--ivory);
  font-family: var(--clean-title);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  color: rgba(245, 239, 228, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(245, 239, 228, 0.34);
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 520ms ease;
}

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

.button:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.button.primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.button.ghost {
  background: rgba(8, 8, 7, 0.24);
  color: var(--ivory);
}

.button.ghost:hover {
  border-color: var(--gold);
}

.drop-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.06), rgba(8, 8, 7, 0.52)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.drop-panel span,
.detail-list span,
.lookbook-panel span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.drop-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.drop-panel p {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.7);
  line-height: 1.55;
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.78), rgba(20, 18, 14, 0.72), rgba(8, 8, 7, 0.78)),
    rgba(8, 8, 7, 0.76);
  backdrop-filter: blur(14px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  padding: 18px 30px;
  color: rgba(245, 239, 228, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section,
.atelier,
.philosophy,
.private-list,
.drop-countdown,
.lookbook {
  padding: clamp(74px, 10vw, 134px) clamp(18px, 5vw, 72px);
}

.drop-countdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.48)),
    radial-gradient(circle at 20% 18%, rgba(184, 152, 91, 0.14), transparent 24rem),
    var(--lux-bg) center / cover,
    rgba(8, 8, 7, 0.56);
  backdrop-filter: blur(12px);
}

.drop-copy h2 {
  margin-bottom: 0;
}

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

.countdown-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.07), rgba(8, 8, 7, 0.28)),
    rgba(8, 8, 7, 0.38);
  box-shadow: inset 0 1px 0 rgba(245, 239, 228, 0.08);
  text-align: center;
}

.collection-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.58), rgba(8, 8, 7, 0.76)),
    radial-gradient(circle at 84% 18%, rgba(184, 152, 91, 0.12), transparent 24rem),
    var(--lux-bg) center / cover;
  backdrop-filter: blur(10px);
}

.countdown-grid strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.countdown-grid span {
  margin-top: 10px;
  color: rgba(245, 239, 228, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.055), rgba(8, 8, 7, 0.34)),
    rgba(8, 8, 7, 0.34);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(184, 152, 91, 0.18), transparent 38%);
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 152, 91, 0.55);
  background: rgba(245, 239, 228, 0.06);
}

.product-card:hover::after {
  opacity: 1;
}

.product-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.1), rgba(8, 8, 7, 0.42)),
    var(--lux-bg) center / cover,
    #171614;
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  height: 70%;
  transform: translate(-50%, -50%);
  border-radius: 44% 44% 12px 12px;
  background: linear-gradient(160deg, #080807, #2a2926 52%, #050505);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.58);
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover .product-visual::before {
  transform: translate(-50%, -51%) scale(1.025);
  filter: brightness(1.08);
}

.product-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(46%, 180px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.78;
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.52));
}

.product-logo-mark {
  width: min(42%, 150px);
}

.tee-visual::before {
  width: 55%;
  height: 58%;
  clip-path: polygon(15% 0, 34% 10%, 66% 10%, 85% 0, 100% 29%, 82% 40%, 82% 100%, 18% 100%, 18% 40%, 0 29%);
  border-radius: 0;
}

.cargo-visual::before {
  width: 34%;
  height: 74%;
  border-radius: 10px 10px 28px 28px;
  background: linear-gradient(160deg, #161718, #394248 58%, #080807);
}

.hoodie-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 152, 91, 0.19), transparent 22%),
    linear-gradient(145deg, rgba(88, 36, 50, 0.35), rgba(8, 8, 7, 0.55)),
    #171614;
}

.tee-visual {
  background:
    radial-gradient(circle at 62% 26%, rgba(107, 122, 131, 0.28), transparent 24%),
    #161614;
}

.cargo-visual {
  background:
    radial-gradient(circle at 42% 32%, rgba(88, 36, 50, 0.26), transparent 23%),
    linear-gradient(145deg, rgba(184, 152, 91, 0.1), rgba(8, 8, 7, 0.35)),
    #111;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 239, 228, 0.24);
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.product-info p {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.62);
  line-height: 1.55;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.product-specs div {
  display: inline-flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(245, 239, 228, 0.13);
  color: rgba(245, 239, 228, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-specs dt,
.product-specs dd {
  margin: 0;
}

.product-specs dt {
  color: var(--gold);
}

.product-info span {
  color: var(--gold);
  font-weight: 800;
}

.product-action {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 239, 228, 0.72);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.product-action:hover {
  color: var(--gold);
}

.product-note {
  max-width: 30rem;
  margin: 12px 0 0;
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.82rem;
  line-height: 1.65;
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.8), rgba(8, 8, 7, 0.7)),
    rgba(8, 8, 7, 0.42);
  backdrop-filter: blur(12px);
}

.lookbook-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.14) 0%, rgba(8, 8, 7, 0.92) 74%),
    radial-gradient(circle at 52% 22%, rgba(184, 152, 91, 0.18), transparent 28%),
    var(--lux-bg) center / cover,
    #121110;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.lookbook-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(245, 239, 228, 0.08) 50%, transparent 58%),
    radial-gradient(circle at 50% 18%, rgba(184, 152, 91, 0.12), transparent 26%);
  pointer-events: none;
}

.lookbook-panel > * {
  position: relative;
  z-index: 1;
}

.lookbook-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 152, 91, 0.48);
}

.lookbook-panel:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.14) 0%, rgba(8, 8, 7, 0.9) 74%),
    radial-gradient(circle at 46% 22%, rgba(107, 122, 131, 0.22), transparent 30%),
    var(--lux-bg) center / cover,
    #111315;
}

.lookbook-panel:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.14) 0%, rgba(8, 8, 7, 0.91) 74%),
    radial-gradient(circle at 54% 24%, rgba(88, 36, 50, 0.24), transparent 30%),
    var(--lux-bg) center / cover,
    #120d0f;
}

.lookbook-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.lookbook-panel p {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.67);
  line-height: 1.65;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.5)),
    radial-gradient(circle at 12% 20%, rgba(245, 239, 228, 0.06), transparent 20rem),
    rgba(16, 16, 15, 0.58);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.house-services {
  padding: clamp(74px, 10vw, 134px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.56), rgba(8, 8, 7, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(184, 152, 91, 0.12), transparent 28rem),
    var(--lux-bg) center / cover,
    rgba(11, 11, 10, 0.62);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.services-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.06), rgba(8, 8, 7, 0.36)),
    rgba(8, 8, 7, 0.34);
  box-shadow: inset 0 1px 0 rgba(245, 239, 228, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40%;
  bottom: -40%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 152, 91, 0.11), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 152, 91, 0.52);
}

.service-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.64);
  line-height: 1.7;
}

.drop-archive {
  padding: clamp(74px, 10vw, 134px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.72), rgba(8, 8, 7, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(184, 152, 91, 0.12), transparent 28rem),
    rgba(8, 8, 7, 0.7);
}

.archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.archive-heading h2 {
  margin-bottom: 0;
}

.archive-grid {
  display: grid;
  gap: 10px;
}

.archive-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 124px;
  padding: 24px;
  border: 1px solid rgba(245, 239, 228, 0.16);
  background:
    linear-gradient(90deg, rgba(245, 239, 228, 0.055), rgba(8, 8, 7, 0.18)),
    rgba(8, 8, 7, 0.36);
  overflow: hidden;
}

.archive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, rgba(184, 152, 91, 0.14), transparent 48%);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.archive-card:hover::before {
  opacity: 1;
}

.archive-card > * {
  position: relative;
  z-index: 1;
}

.archive-card span {
  color: rgba(245, 239, 228, 0.38);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.archive-card h3 {
  margin-bottom: 8px;
}

.archive-card p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.64);
  line-height: 1.65;
}

.archive-card strong {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.atelier-copy p:not(.eyebrow),
.manifesto p {
  color: rgba(245, 239, 228, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.logo-lockup {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.logo-lockup img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.05), rgba(8, 8, 7, 0.32)),
    rgba(8, 8, 7, 0.24);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.055), rgba(8, 8, 7, 0.36)),
    rgba(8, 8, 7, 0.34);
}

.detail-list h3 {
  margin-bottom: 10px;
}

.detail-list p {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.62);
  line-height: 1.65;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.7), rgba(8, 8, 7, 0.82)),
    radial-gradient(circle at 82% 32%, rgba(88, 36, 50, 0.16), transparent 24rem);
  backdrop-filter: blur(12px);
}

.quote-block p {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
}

.private-list {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(245, 239, 228, 0.94), rgba(216, 209, 195, 0.84)),
    var(--lux-bg) center / cover;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.private-list .eyebrow {
  color: var(--oxblood);
}

.private-list h2 {
  margin-bottom: 0;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(8, 8, 7, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(8, 8, 7, 0.24);
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

.input-row input:focus {
  border-color: var(--oxblood);
}

.input-row .button.primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(8, 8, 7, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(245, 239, 228, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes coinFallback {
  0% {
    transform: rotateX(68deg) rotateZ(0deg) translateY(0);
  }

  50% {
    transform: rotateX(74deg) rotateZ(540deg) translateY(8px);
  }

  100% {
    transform: rotateX(68deg) rotateZ(1080deg) translateY(0);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(0.76);
  }

  50% {
    opacity: 0.42;
    transform: translateX(-50%) scaleX(1.12);
  }
}

@media (max-width: 940px) {
  .desktop-nav {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.92), rgba(8, 8, 7, 0.42)),
      linear-gradient(0deg, rgba(8, 8, 7, 0.94), transparent 62%);
  }

  .drop-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 22px;
  }

  .section-heading,
  .atelier,
  .services-heading,
  .archive-heading,
  .philosophy,
  .private-list,
  .product-grid,
  .drop-countdown,
  .lookbook,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 340px;
  }

  .hero-logo {
    width: 112px;
  }

  .lookbook-panel {
    min-height: 360px;
  }

  .archive-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .archive-card strong {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .brand-name {
    display: none;
  }

  .entrance-stage {
    grid-template-rows: minmax(116px, 23vh) minmax(220px, 39vh) minmax(210px, 38vh);
    padding: 14px 14px 22px;
  }

  .entrance-kicker {
    width: min(96vw, 460px);
    max-width: none;
    gap: 7px;
    margin-top: clamp(8px, 2vh, 18px);
  }

  .entrance-title-main {
    font-size: clamp(2.5rem, 16vw, 5rem);
    letter-spacing: 0.08em;
  }

  .entrance-title-sub {
    gap: 12px;
    font-size: clamp(0.62rem, 3.2vw, 0.82rem);
    letter-spacing: 0.34em;
  }

  .entrance-title-sub::before,
  .entrance-title-sub::after {
    width: clamp(24px, 10vw, 48px);
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5.6rem);
    line-height: 0.88;
    letter-spacing: 0.075em;
  }

  h2 {
    letter-spacing: 0.09em;
  }

  .quote-card blockquote {
    font-size: clamp(1rem, 4.96vw, 1.74rem);
    line-height: 1.2;
    letter-spacing: 0.055em;
  }

  .quote-card figcaption {
    gap: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
  }

  .quote-card figcaption::before,
  .quote-card figcaption::after {
    width: 34px;
  }

  .hero-actions,
  .input-row,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .input-row .button {
    width: 100%;
  }

  .section,
  .atelier,
  .house-services,
  .drop-archive,
  .philosophy,
  .private-list,
  .drop-countdown,
  .lookbook {
    padding-block: 70px;
  }

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

  .logo-lockup {
    grid-template-columns: 1fr;
  }

  .logo-lockup img {
    max-height: 220px;
  }

  .quote-card {
    margin-top: 0;
  }
}

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

  .cursor-light {
    display: none;
  }

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

/* Final fit refinements */
img[src*="hp-silver-coin-logo-transparent"] {
  border-radius: 999px;
}

.commerce-brand img {
  width: 46px;
  height: 46px;
}

.commerce-brand span {
  font-size: clamp(0.78rem, 1.05vw, 1.02rem);
  letter-spacing: 0.26em;
}

.commerce-nav,
.commerce-actions {
  font-size: 0.66rem;
}

.hero-coin-wall {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.hero-coin-wall img {
  width: min(50%, 300px);
}

.shop-entry-overlay img {
  width: clamp(58px, 7.8vw, 104px);
}

.mini-product img[src*="hp-silver-coin-logo-transparent"],
.lookbook-strip img[src*="hp-silver-coin-logo-transparent"],
.editorial-triptych img[src*="hp-silver-coin-logo-transparent"],
.lookbook-gallery img[src*="hp-silver-coin-logo-transparent"] {
  width: min(46%, 180px);
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 6.8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0.075em;
}

h2 {
  font-size: clamp(1.55rem, 3.35vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0.13em;
}

.commerce-hero h1,
.page-hero h1,
.private-page h1 {
  max-width: 14.5ch;
  font-size: clamp(3.05rem, 5.9vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: 0.06em;
}

.feature-copy h2,
.section-line-heading h2,
.lookbook-gallery h2 {
  font-size: clamp(2.1rem, 3.7vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0.07em;
}

.commerce-hero-copy p:not(.eyebrow),
.page-hero-copy p,
.feature-copy p {
  font-size: clamp(0.96rem, 1.18vw, 1.14rem);
}

@media (max-width: 680px) {
  h1,
  .commerce-hero h1,
  .page-hero h1,
  .private-page h1 {
    font-size: clamp(2.45rem, 11vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: 0.045em;
  }

  h2,
  .feature-copy h2,
  .section-line-heading h2,
  .lookbook-gallery h2 {
    font-size: clamp(1.7rem, 8vw, 3rem);
    letter-spacing: 0.055em;
  }

  .hero-coin-wall img {
    width: min(62%, 240px);
  }
}

/* Multi-page commerce layout */
.commerce-page {
  background: var(--charcoal);
}

.hp-commerce-shell {
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.56), rgba(13, 13, 14, 0.92)),
    var(--lux-bg) center / cover fixed,
    var(--charcoal);
}

.hp-commerce-shell::before {
  background:
    linear-gradient(90deg, rgba(13, 13, 14, 0.96) 0%, rgba(13, 13, 14, 0.58) 50%, rgba(13, 13, 14, 0.9) 100%),
    radial-gradient(circle at 58% 12%, rgba(185, 150, 86, 0.18), transparent 24rem),
    var(--lux-bg) center / cover;
}

.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 23;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
  padding: 10px clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(141, 106, 50, 0.34);
  background: rgba(6, 6, 6, 0.72);
  color: var(--gold);
  font-family: var(--entrance-title);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.commerce-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 22;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr) minmax(170px, 0.5fr);
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(242, 239, 233, 0.12);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(20px);
  transition: min-height 220ms ease, background 220ms ease;
}

.commerce-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 7, 7, 0.9);
}

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

.commerce-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.56));
}

.commerce-brand span {
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(0.92rem, 1.4vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-nav {
  justify-self: center;
  gap: clamp(22px, 3vw, 54px);
}

.commerce-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(242, 239, 233, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.commerce-hero,
.page-hero,
.private-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(24px, 5vw, 82px);
  padding: 156px clamp(18px, 4.5vw, 72px) 64px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.commerce-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.86) contrast(1.05) brightness(0.82);
}

.commerce-hero::before,
.page-hero::before,
.private-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 13, 14, 0.94) 0%, rgba(13, 13, 14, 0.74) 38%, rgba(13, 13, 14, 0.12) 84%),
    linear-gradient(0deg, rgba(13, 13, 14, 0.96) 0%, transparent 54%);
}

.page-hero::after,
.private-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 72% 42%, rgba(185, 150, 86, 0.18), transparent 22rem),
    var(--lux-bg) center / cover;
}

.commerce-hero-copy,
.page-hero-copy,
.feature-copy {
  max-width: 720px;
}

.commerce-hero h1,
.page-hero h1,
.private-page h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-family: var(--home-title);
  font-size: clamp(4.4rem, 8vw, 8.8rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero h1 span {
  display: block;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.brass-rule {
  width: min(380px, 70vw);
  height: 1px;
  margin: 8px 0 24px;
  background: linear-gradient(90deg, var(--brass), var(--gold), transparent);
}

.commerce-hero-copy p:not(.eyebrow),
.page-hero-copy p,
.feature-copy p {
  color: rgba(242, 239, 233, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.45vw, 1.3rem);
  line-height: 1.72;
}

.hero-coin-wall,
.product-video-placeholder {
  position: relative;
  min-height: min(58vw, 620px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 150, 86, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(13, 13, 14, 0.18)),
    var(--lux-bg) center / cover;
  box-shadow: inset 0 0 0 1px rgba(242, 239, 233, 0.06), 0 40px 100px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.hero-coin-wall img {
  width: min(58%, 360px);
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.7));
}

.promise-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -40px clamp(18px, 4.5vw, 72px) 0;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(242, 239, 233, 0.16);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(18px);
}

.promise-rail article {
  min-height: 102px;
  padding: 24px 28px;
  border-right: 1px solid rgba(242, 239, 233, 0.16);
}

.promise-rail article:last-child {
  border-right: 0;
}

.promise-rail span,
.service-card span,
.lookbook-gallery span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.promise-rail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ivory);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promise-rail p {
  margin: 0;
  color: rgba(242, 239, 233, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.commerce-feature,
.best-sellers,
.lookbook-band,
.shop-toolbar,
.lookbook-gallery {
  padding: clamp(54px, 7vw, 100px) clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.split-feature,
.lookbook-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.feature-copy h2,
.section-line-heading h2 {
  font-family: var(--home-title);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.editorial-triptych,
.lookbook-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(242, 239, 233, 0.14);
  background: rgba(242, 239, 233, 0.14);
}

.editorial-triptych div,
.lookbook-strip span,
.mini-product div,
.lookbook-gallery article {
  display: grid;
  place-items: center;
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 34%, rgba(185, 150, 86, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(242, 239, 233, 0.06), rgba(13, 13, 14, 0.5)),
    var(--lux-bg) center / cover;
}

.editorial-triptych img,
.lookbook-strip img,
.mini-product img,
.lookbook-gallery img {
  width: min(52%, 210px);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.62));
}

.section-line-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-line-heading a {
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.full-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-product {
  position: relative;
  border: 1px solid rgba(242, 239, 233, 0.14);
  background: rgba(7, 7, 7, 0.54);
}

.mini-product div {
  min-height: 260px;
}

.mini-product h3,
.mini-product p {
  padding-inline: 14px;
}

.mini-product h3 {
  margin: 16px 0 8px;
  font-size: 0.72rem;
}

.mini-product p {
  margin-bottom: 16px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-product > a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
}

.lookbook-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commerce-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.2fr) minmax(160px, 0.5fr) minmax(160px, 0.5fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(46px, 6vw, 78px) clamp(18px, 4.5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.8);
}

.compact-footer {
  grid-template-columns: minmax(220px, 1fr) auto;
}

.commerce-footer img {
  width: 54px;
  margin-bottom: 18px;
}

.commerce-footer h3 {
  color: var(--gold);
  font-family: var(--entrance-title);
  font-weight: 500;
}

.commerce-footer p,
.commerce-footer a {
  display: block;
  color: rgba(242, 239, 233, 0.68);
  line-height: 1.7;
}

.footer-signup .input-row input,
.private-panel .input-row input {
  border-color: rgba(185, 150, 86, 0.34);
  color: var(--ivory);
  background: rgba(7, 7, 7, 0.42);
}

.product-entrance {
  grid-template-columns: 1fr;
  align-content: center;
}

.product-entrance .page-hero-copy {
  max-width: min(780px, 92vw);
}

.video-frame {
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 150, 86, 0.42);
  background: radial-gradient(circle at 50% 45%, rgba(185, 150, 86, 0.18), transparent 36%), #080807;
}

.video-frame img {
  width: min(26%, 170px);
}

.video-frame span {
  align-self: end;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.door-entrance-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08) brightness(0.86);
}

.door-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: clamp(20px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.08), rgba(13, 13, 14, 0.24) 48%, rgba(13, 13, 14, 0.76)),
    radial-gradient(circle at 50% 42%, rgba(185, 150, 86, 0.08), transparent 30rem);
  pointer-events: none;
}

.door-video-overlay span {
  color: var(--gold);
  font-family: var(--entrance-title);
  font-size: clamp(0.78rem, 1vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.72);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lookbook-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lookbook-gallery article {
  position: relative;
  min-height: 520px;
  justify-items: start;
  align-content: end;
  padding: 28px;
}

.lookbook-gallery img {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.lookbook-gallery h2 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin-bottom: 0;
  font-family: var(--home-title);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: 0.08em;
}

.private-page {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
}

.private-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(185, 150, 86, 0.36);
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(18px);
}

.private-panel label {
  color: var(--gold);
}

.private-panel .form-note,
.footer-signup .form-note {
  color: rgba(242, 239, 233, 0.62);
}

.commerce-page .button.primary {
  background: linear-gradient(135deg, #8d6a32, #c9a462);
  color: #0d0d0e;
  border-color: rgba(185, 150, 86, 0.9);
}

.commerce-page .button.ghost {
  border-color: rgba(185, 150, 86, 0.48);
  background: rgba(7, 7, 7, 0.38);
}

.shop-entry-body {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  transition: opacity 420ms ease, filter 420ms ease;
}

.shop-entry-body.is-exiting {
  opacity: 0;
  filter: blur(8px);
}

.shop-entry-page {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.shop-entry-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08) brightness(0.88);
}

.shop-entry-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: clamp(22px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 50% 45%, rgba(242, 239, 233, 0.08), transparent 30rem);
  pointer-events: none;
}

.shop-entry-overlay img {
  align-self: start;
  width: clamp(72px, 10vw, 132px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.78));
}

.shop-entry-overlay span {
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(0.78rem, 1.2vw, 1.05rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.86);
}

@media (max-width: 1100px) {
  .commerce-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .commerce-actions,
  .commerce-nav {
    display: none;
  }

  .commerce-header .icon-button {
    display: inline-flex;
  }

  .commerce-hero,
  .page-hero,
  .private-page,
  .split-feature,
  .lookbook-band,
  .product-entrance {
    grid-template-columns: 1fr;
  }

  .hero-coin-wall,
  .product-video-placeholder {
    min-height: 420px;
  }

  .promise-rail,
  .mini-product-grid,
  .full-product-grid,
  .lookbook-gallery,
  .commerce-footer,
  .compact-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-ribbon {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .top-ribbon span:last-child {
    display: none;
  }

  .commerce-header {
    top: 34px;
    min-height: 72px;
  }

  .commerce-brand span {
    max-width: 190px;
    white-space: normal;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .commerce-hero,
  .page-hero,
  .private-page {
    min-height: auto;
    padding-top: 138px;
  }

  .commerce-hero h1,
  .page-hero h1,
  .private-page h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .promise-rail,
  .mini-product-grid,
  .full-product-grid,
  .lookbook-gallery,
  .commerce-footer,
  .compact-footer,
  .editorial-triptych,
  .lookbook-strip {
    grid-template-columns: 1fr;
  }

  .promise-rail {
    margin-top: 0;
  }

  .promise-rail article {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 239, 233, 0.14);
  }

  .section-line-heading,
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final winning overrides: transparent coin and safer title scale */
.commerce-page img[src*="hp-silver-coin-logo-transparent"],
.shop-entry-body img[src*="hp-silver-coin-logo-transparent"] {
  border-radius: 999px;
}

.commerce-page .commerce-brand img {
  width: 46px;
  height: 46px;
}

.commerce-page .commerce-brand span {
  font-size: clamp(0.78rem, 1.05vw, 1.02rem);
  letter-spacing: 0.26em;
}

.commerce-page .commerce-nav,
.commerce-page .commerce-actions {
  font-size: 0.66rem;
}

.commerce-page .hero-coin-wall {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.commerce-page .hero-coin-wall img {
  width: min(50%, 300px);
}

.shop-entry-body .shop-entry-overlay img {
  width: clamp(58px, 7.8vw, 104px);
}

.commerce-page h1 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 6.8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0.075em;
}

.commerce-page h2 {
  font-size: clamp(1.55rem, 3.35vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0.13em;
}

.commerce-page .commerce-hero h1,
.commerce-page .page-hero h1,
.commerce-page .private-page h1 {
  max-width: 14.5ch;
  font-size: clamp(3.05rem, 5.9vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: 0.06em;
}

.commerce-page .feature-copy h2,
.commerce-page .section-line-heading h2,
.commerce-page .lookbook-gallery h2 {
  font-size: clamp(2.1rem, 3.7vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0.07em;
}

.commerce-page .commerce-hero-copy p:not(.eyebrow),
.commerce-page .page-hero-copy p,
.commerce-page .feature-copy p {
  font-size: clamp(0.96rem, 1.18vw, 1.14rem);
}

@media (max-width: 680px) {
  .commerce-page h1,
  .commerce-page .commerce-hero h1,
  .commerce-page .page-hero h1,
  .commerce-page .private-page h1 {
    font-size: clamp(2.45rem, 11vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: 0.045em;
  }

  .commerce-page h2,
  .commerce-page .feature-copy h2,
  .commerce-page .section-line-heading h2,
  .commerce-page .lookbook-gallery h2 {
    font-size: clamp(1.7rem, 8vw, 3rem);
    letter-spacing: 0.055em;
  }

  .commerce-page .hero-coin-wall img {
    width: min(62%, 240px);
  }
}

/* Sprint 1: cinematic luxury homepage hero */
body[data-page="home"] {
  --chrome: #d8dce0;
  --chrome-soft: rgba(216, 220, 224, 0.72);
  --chrome-line: rgba(216, 220, 224, 0.34);
  --smoked-glass: rgba(10, 11, 12, 0.32);
}

body[data-page="home"] .top-ribbon {
  background: rgba(3, 3, 4, 0.7);
  border-bottom-color: rgba(216, 220, 224, 0.18);
  color: rgba(216, 220, 224, 0.72);
}

body[data-page="home"] .commerce-header {
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.76), rgba(8, 9, 10, 0.54)),
    rgba(8, 9, 10, 0.42);
  border-bottom-color: rgba(216, 220, 224, 0.12);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  animation: hpNavEntrance 1.4s cubic-bezier(0.19, 1, 0.22, 1) 80ms forwards;
}

body[data-page="home"] .commerce-header.is-scrolled {
  min-height: 60px;
  background: rgba(5, 6, 7, 0.74);
  border-bottom-color: rgba(216, 220, 224, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px) saturate(1.08);
}

body[data-page="home"] .commerce-header.is-scrolled .commerce-brand img {
  transform: scale(0.86);
}

body[data-page="home"] .commerce-header.is-scrolled .commerce-brand span,
body[data-page="home"] .commerce-header.is-scrolled .commerce-nav a,
body[data-page="home"] .commerce-header.is-scrolled .commerce-actions a {
  opacity: 0.82;
}

body[data-page="home"] .commerce-brand img,
body[data-page="home"] .commerce-brand span,
body[data-page="home"] .commerce-nav a,
body[data-page="home"] .commerce-actions a {
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1), opacity 520ms ease, color 520ms ease;
}

body[data-page="home"] .commerce-nav a::after {
  bottom: -14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 241, 243, 0.92), transparent);
  transform-origin: left center;
}

body[data-page="home"] .commerce-nav a:hover {
  color: #f5f6f6;
}

body[data-page="home"] .commerce-hero {
  min-height: 100vh;
  padding-top: clamp(150px, 15vh, 190px);
  padding-bottom: clamp(68px, 9vh, 110px);
  background: #050506;
  overflow: hidden;
  perspective: 1200px;
}

body[data-page="home"] .commerce-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.92) 0%, rgba(5, 6, 7, 0.74) 34%, rgba(8, 9, 10, 0.2) 76%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.94), transparent 58%);
}

body[data-page="home"] .commerce-hero-image {
  --hp-parallax-x: 0px;
  --hp-parallax-y: 0px;
  opacity: 0;
  transform: translate3d(var(--hp-parallax-x), var(--hp-parallax-y), 0) scale(1);
  filter: saturate(0.76) contrast(1.1) brightness(0.74) blur(8px);
  animation:
    hpHeroImageReveal 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
    hpHeroBreath 25s ease-in-out 1.4s infinite alternate;
  will-change: transform, filter, opacity;
}

body[data-page="home"] .hero-cinema-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

body[data-page="home"] .hero-glass {
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 24%, rgba(216, 220, 224, 0.03) 48%, transparent 72%),
    rgba(8, 9, 10, 0.08);
  backdrop-filter: blur(2.6px) saturate(1.02);
  opacity: 0;
  animation: hpLayerFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 260ms forwards;
}

body[data-page="home"] .hero-vignette {
  z-index: 2;
  background:
    radial-gradient(ellipse at 52% 42%, transparent 0 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 30%, rgba(0, 0, 0, 0.64));
  opacity: 0;
  animation: hpLayerFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 180ms forwards;
}

body[data-page="home"] .hero-light-rays {
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(104deg, transparent 4%, rgba(230, 234, 236, 0.1) 14%, transparent 25%),
    linear-gradient(116deg, transparent 44%, rgba(196, 201, 205, 0.075) 54%, transparent 66%),
    radial-gradient(ellipse at 64% 10%, rgba(234, 238, 240, 0.12), transparent 36%);
  animation:
    hpLayerFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 340ms forwards,
    hpLightDrift 22s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-reflections {
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(96deg, transparent 0 18%, rgba(255, 255, 255, 0.09) 22%, transparent 29% 100%),
    linear-gradient(172deg, transparent 0 52%, rgba(216, 220, 224, 0.085) 56%, transparent 62% 100%),
    radial-gradient(ellipse at 72% 68%, rgba(216, 220, 224, 0.08), transparent 26%);
  filter: blur(0.5px);
  animation:
    hpLayerFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 420ms forwards,
    hpReflectionSweep 18s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-fog {
  z-index: 1;
  opacity: 0;
  filter: blur(22px);
  mix-blend-mode: screen;
}

body[data-page="home"] .hero-fog-a {
  background:
    radial-gradient(ellipse at 34% 62%, rgba(190, 197, 201, 0.11), transparent 34%),
    radial-gradient(ellipse at 70% 58%, rgba(150, 156, 160, 0.08), transparent 30%);
  animation:
    hpFogReveal 1.4s cubic-bezier(0.19, 1, 0.22, 1) 280ms forwards,
    hpFogA 28s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-fog-b {
  background:
    radial-gradient(ellipse at 52% 72%, rgba(238, 241, 243, 0.075), transparent 30%),
    radial-gradient(ellipse at 18% 48%, rgba(216, 220, 224, 0.06), transparent 28%);
  animation:
    hpFogReveal 1.4s cubic-bezier(0.19, 1, 0.22, 1) 360ms forwards,
    hpFogB 34s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-smoke {
  z-index: 1;
  opacity: 0;
  filter: blur(30px);
  background:
    radial-gradient(ellipse at 22% 82%, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(ellipse at 82% 78%, rgba(170, 178, 182, 0.055), transparent 32%);
  animation:
    hpFogReveal 1.4s cubic-bezier(0.19, 1, 0.22, 1) 500ms forwards,
    hpSmoke 38s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-dust {
  z-index: 3;
  opacity: 0;
  mix-blend-mode: screen;
  background-repeat: repeat;
}

body[data-page="home"] .hero-dust-large {
  background-image:
    radial-gradient(circle, rgba(238, 241, 243, 0.18) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(238, 241, 243, 0.11) 0 1px, transparent 1.8px);
  background-size: 260px 260px, 390px 390px;
  background-position: 12% 18%, 74% 62%;
  animation: hpDustIn 1.4s ease 620ms forwards, hpDustLarge 42s linear infinite;
}

body[data-page="home"] .hero-dust-medium {
  background-image:
    radial-gradient(circle, rgba(238, 241, 243, 0.13) 0 0.8px, transparent 1.5px),
    radial-gradient(circle, rgba(238, 241, 243, 0.09) 0 0.8px, transparent 1.5px);
  background-size: 150px 150px, 220px 220px;
  background-position: 34% 30%, 82% 20%;
  animation: hpDustIn 1.4s ease 680ms forwards, hpDustMedium 36s linear infinite;
}

body[data-page="home"] .hero-dust-tiny {
  background-image:
    radial-gradient(circle, rgba(238, 241, 243, 0.1) 0 0.6px, transparent 1.2px),
    radial-gradient(circle, rgba(238, 241, 243, 0.07) 0 0.6px, transparent 1.1px);
  background-size: 82px 82px, 124px 124px;
  background-position: 10% 40%, 60% 22%;
  animation: hpDustIn 1.4s ease 720ms forwards, hpDustTiny 30s linear infinite;
}

body[data-page="home"] .commerce-hero-copy,
body[data-page="home"] .hero-coin-wall,
body[data-page="home"] .hero-actions {
  --hp-parallax-x: 0px;
  --hp-parallax-y: 0px;
  will-change: transform;
}

body[data-page="home"] .commerce-hero-copy {
  max-width: min(720px, 48vw);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: hpTextEntrance 1.4s cubic-bezier(0.19, 1, 0.22, 1) 420ms forwards;
}

body[data-page="home"] .commerce-hero .eyebrow {
  margin-bottom: 22px;
  color: rgba(216, 220, 224, 0.82);
  letter-spacing: 0.34em;
}

body[data-page="home"] .commerce-hero h1 {
  max-width: 12.8ch;
  margin-bottom: 28px;
  color: #f6f7f7;
  font-size: clamp(3.4rem, 6vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0.085em;
  background: linear-gradient(180deg, #ffffff 0%, #e6e8e9 38%, #9fa5a9 72%, #f5f6f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

body[data-page="home"] .commerce-hero h1 span {
  color: #d6dadc;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #f7f8f8 0%, #c7ccd0 46%, #8f969b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body[data-page="home"] .brass-rule {
  width: min(440px, 64vw);
  background: linear-gradient(90deg, rgba(216, 220, 224, 0.62), rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 0 34px rgba(216, 220, 224, 0.08);
}

body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(239, 241, 242, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.9;
}

body[data-page="home"] .hero-actions {
  gap: 16px;
  margin-top: 42px;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: hpTextEntrance 1.4s cubic-bezier(0.19, 1, 0.22, 1) 620ms forwards;
}

body[data-page="home"] .commerce-page .button.primary,
body[data-page="home"] .button.primary {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 26%, rgba(255, 255, 255, 0.22) 52%, transparent 72%),
    linear-gradient(180deg, #eef0f1 0%, #b7bec3 48%, #f7f8f8 100%);
  color: #050506;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -10px 22px rgba(60, 66, 70, 0.16),
    0 18px 54px rgba(0, 0, 0, 0.32);
}

body[data-page="home"] .button.ghost {
  border-color: rgba(216, 220, 224, 0.46);
  background: rgba(9, 10, 11, 0.34);
  color: rgba(245, 246, 246, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .button::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition-duration: 900ms;
}

body[data-page="home"] .button:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .button.ghost:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 32px rgba(216, 220, 224, 0.1),
    0 18px 54px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .hero-coin-wall {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: hpTextEntrance 1.4s cubic-bezier(0.19, 1, 0.22, 1) 560ms forwards;
}

body[data-page="home"] .hero-coin-wall img {
  width: min(46%, 280px);
  filter:
    drop-shadow(0 28px 58px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(216, 220, 224, 0.08));
}

body[data-page="home"] .luxury-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vh, 46px);
  z-index: 5;
  width: 1px;
  height: 76px;
  overflow: hidden;
  background: rgba(216, 220, 224, 0.16);
  transform: translateX(-50%);
}

body[data-page="home"] .luxury-scroll-indicator span {
  display: block;
  width: 100%;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(245, 246, 246, 0.9), transparent);
  animation: hpScrollLine 2.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

body[data-page="home"] .cursor-light {
  background: radial-gradient(circle, rgba(216, 220, 224, 0.08), transparent 68%);
}

@keyframes hpNavEntrance {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hpHeroImageReveal {
  to {
    opacity: 1;
    filter: saturate(0.82) contrast(1.1) brightness(0.78) blur(0);
  }
}

@keyframes hpHeroBreath {
  from {
    transform: translate3d(var(--hp-parallax-x), var(--hp-parallax-y), 0) scale(1);
  }
  to {
    transform: translate3d(var(--hp-parallax-x), var(--hp-parallax-y), 0) scale(1.04);
  }
}

@keyframes hpLayerFade {
  to {
    opacity: 1;
  }
}

@keyframes hpFogReveal {
  to {
    opacity: 0.8;
  }
}

@keyframes hpDustIn {
  to {
    opacity: 0.28;
  }
}

@keyframes hpTextEntrance {
  to {
    opacity: 1;
    transform: translate3d(var(--hp-parallax-x), var(--hp-parallax-y), 0);
  }
}

@keyframes hpLightDrift {
  from {
    transform: translate3d(-2.5%, -1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(2%, 1.2%, 0) scale(1.05);
  }
}

@keyframes hpReflectionSweep {
  from {
    transform: translate3d(-4%, 1%, 0);
  }
  to {
    transform: translate3d(5%, -1.2%, 0);
  }
}

@keyframes hpFogA {
  from {
    transform: translate3d(-3%, 1%, 0) scale(1.05);
  }
  to {
    transform: translate3d(4%, -2%, 0) scale(1.12);
  }
}

@keyframes hpFogB {
  from {
    transform: translate3d(3%, -1%, 0) scale(1.08);
  }
  to {
    transform: translate3d(-4%, 2%, 0) scale(1.14);
  }
}

@keyframes hpSmoke {
  from {
    transform: translate3d(-2%, 2%, 0) scale(1.04);
  }
  to {
    transform: translate3d(3%, -2%, 0) scale(1.1);
  }
}

@keyframes hpDustLarge {
  to {
    background-position: 16% 10%, 68% 72%;
  }
}

@keyframes hpDustMedium {
  to {
    background-position: 28% 42%, 86% 34%;
  }
}

@keyframes hpDustTiny {
  to {
    background-position: 12% 58%, 54% 38%;
  }
}

@keyframes hpScrollLine {
  from {
    transform: translate3d(0, -120%, 0);
  }
  to {
    transform: translate3d(0, 230%, 0);
  }
}

@media (max-width: 1100px) {
  body[data-page="home"] .commerce-hero-copy {
    max-width: min(680px, 100%);
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .commerce-hero {
    padding-top: 138px;
    padding-bottom: 62px;
  }

  body[data-page="home"] .commerce-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 4.25rem);
    line-height: 1;
    letter-spacing: 0.05em;
  }

  body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
    line-height: 1.72;
  }

  body[data-page="home"] .luxury-scroll-indicator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .commerce-hero-image,
  body[data-page="home"] .hero-cinema-layer,
  body[data-page="home"] .commerce-hero-copy,
  body[data-page="home"] .hero-coin-wall,
  body[data-page="home"] .hero-actions,
  body[data-page="home"] .commerce-header,
  body[data-page="home"] .luxury-scroll-indicator span {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Homepage title fit correction */
body[data-page="home"] .commerce-hero-copy {
  max-width: min(860px, 58vw);
}

body[data-page="home"] .commerce-hero h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 1;
  letter-spacing: 0.065em;
  overflow: visible;
}

@media (max-width: 1100px) {
  body[data-page="home"] .commerce-hero-copy {
    max-width: min(760px, 100%);
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .commerce-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    letter-spacing: 0.04em;
  }
}

/* Exclusive collection landing */
body[data-page="shop"] .collection-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  padding: 156px clamp(18px, 4.5vw, 72px) 78px;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 220, 224, 0.16);
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.96), rgba(8, 9, 10, 0.74) 45%, rgba(8, 9, 10, 0.36)),
    radial-gradient(circle at 72% 42%, rgba(216, 220, 224, 0.12), transparent 25rem),
    var(--lux-bg) center / cover,
    #050506;
}

body[data-page="shop"] .collection-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 46%, transparent 0 40%, rgba(0, 0, 0, 0.44) 78%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 34%, rgba(0, 0, 0, 0.72));
}

body[data-page="shop"] .collection-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.86;
  background:
    linear-gradient(112deg, transparent 10%, rgba(216, 220, 224, 0.08) 20%, transparent 32%),
    linear-gradient(168deg, transparent 48%, rgba(255, 255, 255, 0.07) 54%, transparent 62%),
    radial-gradient(ellipse at 76% 22%, rgba(216, 220, 224, 0.11), transparent 30%);
  mix-blend-mode: screen;
  animation: hpCollectionLight 24s ease-in-out infinite alternate;
}

body[data-page="shop"] .collection-copy,
body[data-page="shop"] .collection-look,
body[data-page="shop"] .collection-scroll {
  position: relative;
  z-index: 2;
}

body[data-page="shop"] .collection-copy {
  max-width: 680px;
}

body[data-page="shop"] .collection-copy .eyebrow {
  color: rgba(216, 220, 224, 0.78);
  letter-spacing: 0.34em;
}

body[data-page="shop"] .collection-copy h1 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-family: var(--home-title);
  font-size: clamp(3.3rem, 6.3vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #d9dcde 45%, #8f969b 78%, #f5f6f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

body[data-page="shop"] .collection-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(239, 241, 242, 0.76);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.9;
}

body[data-page="shop"] .collection-copy .button {
  margin-top: 40px;
}

body[data-page="shop"] .collection-copy .button.primary {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 26%, rgba(255, 255, 255, 0.22) 52%, transparent 72%),
    linear-gradient(180deg, #eef0f1 0%, #b7bec3 48%, #f7f8f8 100%);
  color: #050506;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -10px 22px rgba(60, 66, 70, 0.16),
    0 18px 54px rgba(0, 0, 0, 0.32);
}

body[data-page="shop"] .collection-look {
  min-height: min(66vw, 680px);
  display: grid;
  place-items: center;
}

body[data-page="shop"] .outfit-stage {
  position: relative;
  width: min(520px, 78vw);
  height: min(660px, 82vh);
  min-height: 500px;
  display: grid;
  justify-items: center;
  align-content: center;
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.58));
}

body[data-page="shop"] .outfit-stage::before {
  content: "";
  position: absolute;
  inset: 4% 4% 0;
  border: 1px solid rgba(216, 220, 224, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(8, 9, 10, 0.18)),
    rgba(8, 9, 10, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

body[data-page="shop"] .outfit-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 64%;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.74), transparent 70%);
  filter: blur(8px);
}

body[data-page="shop"] .outfit-hoodie {
  position: relative;
  z-index: 2;
  width: min(360px, 64vw);
  height: 390px;
}

body[data-page="shop"] .outfit-hoodie .hood {
  position: absolute;
  left: 50%;
  top: 0;
  width: 42%;
  height: 31%;
  transform: translateX(-50%);
  border-radius: 46% 46% 28% 28%;
  background: linear-gradient(145deg, #050607, #1d2022 58%, #050506);
  box-shadow: inset 0 0 0 1px rgba(216, 220, 224, 0.08), inset 0 -26px 44px rgba(0, 0, 0, 0.46);
}

body[data-page="shop"] .outfit-hoodie .body {
  position: absolute;
  left: 50%;
  top: 17%;
  width: 58%;
  height: 70%;
  transform: translateX(-50%);
  border-radius: 24% 24% 8% 8%;
  background: linear-gradient(160deg, #0b0c0d, #25292b 52%, #050506);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -34px 54px rgba(0, 0, 0, 0.4);
}

body[data-page="shop"] .outfit-hoodie .sleeve {
  position: absolute;
  top: 24%;
  width: 19%;
  height: 58%;
  border-radius: 999px 999px 24px 24px;
  background: linear-gradient(160deg, #090a0b, #202426 58%, #050506);
  transform-origin: top center;
}

body[data-page="shop"] .outfit-hoodie .sleeve-left {
  left: 10%;
  transform: rotate(12deg);
}

body[data-page="shop"] .outfit-hoodie .sleeve-right {
  right: 10%;
  transform: rotate(-12deg);
}

body[data-page="shop"] .outfit-hoodie img {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 3;
  width: 96px;
  transform: translate(-50%, -50%);
  opacity: 0.78;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}

body[data-page="shop"] .outfit-shorts {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  width: min(250px, 48vw);
  height: 150px;
  margin-top: -34px;
}

body[data-page="shop"] .outfit-shorts span {
  flex: 1;
  border-radius: 12px 12px 24px 24px;
  background: linear-gradient(160deg, #090a0b, #222629 58%, #050506);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body[data-page="shop"] .outfit-shorts img {
  position: absolute;
  right: 20px;
  top: 28px;
  width: 34px;
  opacity: 0.7;
}

body[data-page="shop"] .collection-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vh, 46px);
  width: 1px;
  height: 76px;
  overflow: hidden;
  background: rgba(216, 220, 224, 0.16);
  transform: translateX(-50%);
}

body[data-page="shop"] .collection-scroll span {
  display: block;
  width: 100%;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(245, 246, 246, 0.9), transparent);
  animation: hpScrollLine 2.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

body[data-page="shop"] .shop-toolbar,
body[data-page="shop"] .shop-grid-page {
  position: relative;
  z-index: 2;
}

@keyframes hpCollectionLight {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(3%, 1.5%, 0) scale(1.06);
  }
}

@media (max-width: 940px) {
  body[data-page="shop"] .collection-landing {
    grid-template-columns: 1fr;
    padding-top: 138px;
  }

  body[data-page="shop"] .collection-copy h1 {
    font-size: clamp(2.9rem, 12vw, 5rem);
  }

  body[data-page="shop"] .collection-look {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  body[data-page="shop"] .collection-landing {
    padding-bottom: 78px;
  }

  body[data-page="shop"] .collection-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: 0.055em;
  }

  body[data-page="shop"] .outfit-stage {
    min-height: 430px;
    height: 480px;
  }

  body[data-page="shop"] .outfit-hoodie {
    width: min(300px, 72vw);
    height: 330px;
  }

  body[data-page="shop"] .collection-scroll {
    display: none;
  }
}

/* Entrance spacing correction for silver coin video */
.entrance-stage {
  grid-template-rows: minmax(132px, 20vh) minmax(280px, 47vh) minmax(190px, 33vh);
  padding-top: clamp(14px, 2.2vh, 30px);
  padding-bottom: clamp(30px, 5vh, 64px);
}

.entrance-kicker {
  align-self: start;
  margin-top: clamp(4px, 0.8vh, 12px);
}

.entrance-title-main {
  font-size: clamp(3.25rem, 8.4vw, 7.65rem);
  line-height: 0.8;
}

.entrance-title-sub {
  font-size: clamp(0.68rem, 1.12vw, 1.05rem);
}

.coin-video {
  object-position: center 50%;
}

.quote-card {
  align-self: end;
  margin-top: 0;
  margin-bottom: clamp(18px, 3.4vh, 46px);
  padding-top: clamp(18px, 2.5vh, 30px);
  max-width: min(820px, 90vw);
}

.quote-card blockquote {
  font-size: clamp(1.42rem, 3.25vw, 3.15rem);
  line-height: 1.15;
}

@media (max-width: 620px) {
  .entrance-stage {
    grid-template-rows: minmax(104px, 18vh) minmax(250px, 45vh) minmax(210px, 37vh);
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .entrance-kicker {
    margin-top: 4px;
  }

  .entrance-title-main {
    font-size: clamp(2.08rem, 13vw, 4.05rem);
    letter-spacing: 0.07em;
  }

  .entrance-title-sub {
    font-size: clamp(0.54rem, 2.8vw, 0.72rem);
    letter-spacing: 0.3em;
  }

  .quote-card {
    align-self: end;
    margin-top: 0;
    margin-bottom: clamp(20px, 4vh, 42px);
    max-width: min(390px, 88vw);
  }

  .quote-card blockquote {
    font-size: clamp(0.92rem, 4.25vw, 1.45rem);
    line-height: 1.22;
    letter-spacing: 0.05em;
  }
}

/* Penthouse video hero integration */
body[data-page="home"] .commerce-hero {
  opacity: 0;
  animation: hpHeroSectionFade 720ms ease-out forwards;
  background: #030304;
}

body[data-page="home"] .commerce-hero-video,
body[data-page="home"] .commerce-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  will-change: opacity;
}

body[data-page="home"] .commerce-hero-video {
  z-index: -4;
  opacity: 0;
  background: #030304;
  transition: opacity 640ms ease;
}

body[data-page="home"] .commerce-hero.hero-video-ready .commerce-hero-video {
  opacity: 1;
}

body[data-page="home"] .commerce-hero-image {
  z-index: -5;
  opacity: 1;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
  animation: none;
}

body[data-page="home"] .commerce-hero.hero-video-ready .commerce-hero-image {
  opacity: 0;
}

body[data-page="home"] .commerce-hero.hero-video-fallback .commerce-hero-video {
  display: none;
}

body[data-page="home"] .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0 42%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.22) 100%);
}

body[data-page="home"] .commerce-hero::before,
body[data-page="home"] .commerce-hero::after,
body[data-page="home"] .hero-cinema-layer {
  display: none;
}

body[data-page="home"] .commerce-hero-copy,
body[data-page="home"] .hero-coin-wall,
body[data-page="home"] .hero-actions,
body[data-page="home"] .commerce-hero .reveal,
body[data-page="home"] .commerce-hero .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}

body[data-page="home"] .luxury-scroll-indicator {
  display: none;
}

@keyframes hpHeroSectionFade {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .commerce-hero {
    animation: none;
    opacity: 1;
  }
}

/* Final homepage and entrance composition pass */
body[data-page="home"] .commerce-hero {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

body[data-page="home"] .commerce-hero-copy {
  width: min(780px, 92vw);
  max-width: min(780px, 92vw);
  justify-self: start;
}

body[data-page="home"] .commerce-hero h1 {
  max-width: 11.5ch;
}

@media (max-width: 780px) {
  body[data-page="home"] .commerce-hero {
    align-items: end;
  }

  body[data-page="home"] .commerce-hero-copy {
    width: min(100%, 92vw);
    max-width: min(100%, 92vw);
  }
}

.entrance-stage {
  grid-template-rows: minmax(104px, 18vh) minmax(360px, 50vh) minmax(180px, 32vh);
  padding: clamp(12px, 2vh, 26px) clamp(18px, 4vw, 56px) clamp(36px, 6vh, 76px);
}

.entrance-kicker {
  align-self: start;
  gap: clamp(6px, 1vh, 12px);
  margin-top: clamp(2px, 0.6vh, 10px);
}

.entrance-title-main {
  font-size: clamp(2.85rem, 7.45vw, 6.7rem);
  line-height: 0.82;
  letter-spacing: 0.13em;
}

.entrance-title-sub {
  font-size: clamp(0.62rem, 1vw, 0.98rem);
  letter-spacing: 0.62em;
}

.quote-card {
  grid-row: 3;
  align-self: end;
  margin-top: 0;
  margin-bottom: clamp(28px, 6vh, 92px);
  max-width: min(760px, 88vw);
  padding-top: clamp(16px, 2.2vh, 28px);
}

.quote-card blockquote {
  font-size: clamp(1.18rem, 2.72vw, 2.72rem);
  line-height: 1.16;
  letter-spacing: 0.09em;
}

@media (max-width: 620px) {
  .entrance-stage {
    grid-template-rows: minmax(94px, 16vh) minmax(300px, 50vh) minmax(210px, 34vh);
    padding: 12px clamp(16px, 5vw, 24px) clamp(24px, 5vh, 52px);
  }

  .entrance-kicker {
    gap: 6px;
    margin-top: 2px;
  }

  .entrance-title-main {
    font-size: clamp(1.95rem, 11.8vw, 3.8rem);
    line-height: 0.86;
    letter-spacing: 0.08em;
  }

  .entrance-title-sub {
    font-size: clamp(0.52rem, 2.45vw, 0.68rem);
    letter-spacing: 0.32em;
  }

  .quote-card {
    margin-bottom: clamp(24px, 5vh, 52px);
    max-width: min(380px, 88vw);
    padding-top: 16px;
  }

  .quote-card blockquote {
    font-size: clamp(0.86rem, 3.75vw, 1.28rem);
    line-height: 1.24;
    letter-spacing: 0.05em;
  }
}

@media (max-height: 760px) and (min-width: 621px) {
  .entrance-stage {
    grid-template-rows: minmax(86px, 16vh) minmax(310px, 50vh) minmax(160px, 34vh);
    padding-bottom: clamp(22px, 4vh, 46px);
  }

  .entrance-title-main {
    font-size: clamp(2.5rem, 6.4vw, 5.5rem);
  }

  .quote-card {
    margin-bottom: clamp(18px, 3.6vh, 38px);
    max-width: min(700px, 86vw);
  }

  .quote-card blockquote {
    font-size: clamp(1rem, 2.25vw, 2.12rem);
  }
}

/* Master brief refinements */
body.shop-transition-active {
  overflow: hidden;
}

.shop-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
  opacity: 0;
  pointer-events: all;
  transition: opacity 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.shop-transition-overlay.is-visible {
  opacity: 1;
}

.shop-transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08) brightness(0.88);
  transform: translateZ(0);
}

.shop-transition-scrim {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: clamp(24px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 50% 48%, rgba(216, 220, 224, 0.08), transparent 30rem);
}

.shop-transition-scrim span {
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(0.72rem, 1vw, 0.98rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.86);
}

body[data-page="home"] .commerce-hero {
  min-height: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding-top: clamp(128px, 16vh, 170px);
  padding-bottom: clamp(44px, 8vh, 78px);
}

body[data-page="home"] .commerce-hero-copy {
  align-self: center;
}

body[data-page="home"] .promise-rail {
  margin-top: 0;
}

.entrance-body {
  overflow: hidden;
}

.entrance-stage {
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
  grid-template-rows: minmax(92px, 15vh) minmax(400px, 55vh) minmax(172px, 30vh);
  padding-top: clamp(10px, 1.7vh, 24px);
  padding-bottom: clamp(38px, 6vh, 86px);
}

.entrance-kicker {
  justify-self: center;
  max-width: min(1180px, 92vw);
  gap: clamp(5px, 0.8vh, 10px);
}

.entrance-title-main {
  font-size: clamp(2.55rem, 6.75vw, 6.1rem);
}

.entrance-title-sub {
  font-size: clamp(0.58rem, 0.9vw, 0.9rem);
}

.coin-video {
  object-position: center center;
}

.quote-card {
  max-width: min(680px, 84vw);
  margin-bottom: clamp(30px, 5.4vh, 76px);
}

.quote-card blockquote {
  font-size: clamp(1rem, 2.28vw, 2.28rem);
}

@media (max-width: 620px) {
  body[data-page="home"] .commerce-hero {
    padding-top: clamp(118px, 14vh, 136px);
    padding-bottom: clamp(34px, 6vh, 54px);
  }

  .entrance-stage {
    grid-template-rows: minmax(82px, 14vh) minmax(338px, 54vh) minmax(176px, 32vh);
    padding-top: 10px;
    padding-bottom: clamp(22px, 4.5vh, 40px);
  }

  .entrance-title-main {
    font-size: clamp(1.78rem, 10.6vw, 3.4rem);
  }

  .entrance-title-sub {
    font-size: clamp(0.48rem, 2.22vw, 0.62rem);
  }

  .quote-card {
    max-width: min(340px, 84vw);
    margin-bottom: clamp(18px, 4vh, 36px);
  }

  .quote-card blockquote {
    font-size: clamp(0.78rem, 3.4vw, 1.14rem);
  }

  .shop-transition-scrim span {
    letter-spacing: 0.24em;
  }
}

@media (max-height: 700px) {
  .entrance-stage {
    grid-template-rows: minmax(66px, 14vh) minmax(286px, 54vh) minmax(136px, 32vh);
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .entrance-title-main {
    font-size: clamp(1.95rem, 5.4vw, 4.4rem);
  }

  .quote-card {
    margin-bottom: 16px;
  }

  .quote-card blockquote {
    font-size: clamp(0.78rem, 1.72vw, 1.58rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-transition-overlay {
    transition-duration: 120ms;
  }

  .shop-transition-video {
    display: none;
  }
}

/* Focused refinement pass: entrance readiness, hero crop safety, section separation */
.entrance-page {
  opacity: 0;
  transition: opacity 360ms ease;
}

.entrance-body.entrance-ready .entrance-page {
  opacity: 1;
}

body[data-page="home"] .commerce-hero {
  box-sizing: border-box;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(124px, 15vh, 164px) clamp(18px, 5vw, 78px) clamp(48px, 8vh, 88px);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 220, 224, 0.16);
}

body[data-page="home"] .commerce-hero-copy {
  width: min(720px, 90vw);
  max-width: min(720px, 90vw);
  align-self: center;
  justify-self: start;
}

body[data-page="home"] .commerce-hero h1 {
  max-width: 12.5ch;
  margin-bottom: clamp(16px, 2.2vh, 24px);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0.06em;
  overflow: visible;
}

body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.18vw, 1.18rem);
  line-height: 1.72;
}

body[data-page="home"] .hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

body[data-page="home"] .commerce-hero + .promise-rail {
  margin-top: clamp(56px, 8vw, 112px);
}

body[data-page="home"] .promise-rail,
body[data-page="home"] .commerce-feature,
body[data-page="home"] .best-sellers,
body[data-page="home"] .lookbook-band,
body[data-page="home"] .community-band,
body[data-page="home"] .commerce-footer {
  position: relative;
  z-index: 2;
}

.community-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(68px, 9vw, 128px) clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96), rgba(13, 13, 14, 0.76)),
    radial-gradient(circle at 74% 42%, rgba(216, 220, 224, 0.1), transparent 28rem),
    var(--lux-bg) center / cover;
}

.community-panel {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(216, 220, 224, 0.18);
  background: rgba(8, 9, 10, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.community-panel h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.community-panel p {
  color: rgba(242, 239, 233, 0.66);
  line-height: 1.7;
}

.community-panel .input-row {
  margin-top: 24px;
}

.entrance-stage {
  grid-template-rows: minmax(86px, 14vh) minmax(420px, 56vh) minmax(164px, 30vh);
  padding-top: clamp(8px, 1.2vh, 18px);
  padding-bottom: clamp(34px, 5vh, 68px);
}

.entrance-title-main {
  font-size: clamp(2.35rem, 6.15vw, 5.65rem);
  line-height: 0.86;
}

.entrance-title-sub {
  font-size: clamp(0.54rem, 0.82vw, 0.84rem);
}

.quote-card {
  max-width: min(640px, 82vw);
  margin-bottom: clamp(26px, 4.6vh, 62px);
}

.quote-card blockquote {
  font-size: clamp(0.92rem, 2.05vw, 2.05rem);
  line-height: 1.18;
}

@media (min-width: 1440px) {
  body[data-page="home"] .commerce-hero-copy {
    margin-left: clamp(18px, 3vw, 58px);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .commerce-hero {
    padding-top: clamp(118px, 14vh, 148px);
  }

  body[data-page="home"] .commerce-hero-copy {
    width: min(620px, 90vw);
    max-width: min(620px, 90vw);
  }

  body[data-page="home"] .commerce-hero h1 {
    font-size: clamp(2.65rem, 9.2vw, 5rem);
  }

  .community-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .commerce-hero {
    align-items: center;
    padding: clamp(108px, 13vh, 132px) clamp(18px, 5vw, 24px) clamp(34px, 6vh, 54px);
  }

  body[data-page="home"] .commerce-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0.045em;
  }

  body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  body[data-page="home"] .commerce-hero + .promise-rail {
    margin-top: 42px;
  }

  .entrance-stage {
    grid-template-rows: minmax(74px, 13vh) minmax(356px, 55vh) minmax(164px, 32vh);
    padding-top: 8px;
    padding-bottom: clamp(18px, 3.8vh, 34px);
  }

  .entrance-title-main {
    font-size: clamp(1.62rem, 9.4vw, 3.05rem);
  }

  .entrance-title-sub {
    font-size: clamp(0.44rem, 2vw, 0.58rem);
  }

  .quote-card {
    max-width: min(326px, 82vw);
    margin-bottom: clamp(16px, 3.4vh, 30px);
  }

  .quote-card blockquote {
    font-size: clamp(0.72rem, 3.12vw, 1.02rem);
  }
}

@media (max-height: 700px) {
  body[data-page="home"] .commerce-hero {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  body[data-page="home"] .commerce-hero h1 {
    font-size: clamp(2.35rem, 5.4vw, 5.1rem);
  }

  body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
    line-height: 1.55;
  }

  .entrance-stage {
    grid-template-rows: minmax(58px, 12vh) minmax(300px, 55vh) minmax(126px, 33vh);
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .quote-card blockquote {
    font-size: clamp(0.68rem, 1.52vw, 1.36rem);
  }
}

/* Version 2.0 architecture rebuild */
html {
  background: #000;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.entrance-body {
  min-height: 100svh;
  max-height: 100svh;
  background: #000;
  overflow: hidden;
}

.entrance-page {
  min-height: 100svh;
  max-height: 100svh;
  background: #000;
  opacity: 0;
  transition: opacity 360ms ease;
}

.entrance-body.entrance-ready .entrance-page {
  opacity: 1;
}

.entrance-page::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 50% 48%, rgba(216, 220, 224, 0.14), transparent 22rem);
}

.entrance-stage {
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  grid-template-rows: minmax(86px, 18svh) minmax(300px, 48svh) minmax(210px, 34svh);
  align-items: center;
  justify-items: center;
  padding: clamp(10px, 2svh, 24px) clamp(16px, 4vw, 56px) clamp(18px, 3svh, 44px);
  overflow: hidden;
}

.entrance-kicker {
  grid-row: 1;
  align-self: end;
  margin: 0 auto;
  width: min(1100px, 92vw);
  gap: clamp(6px, 1svh, 12px);
}

.entrance-title-main {
  font-size: clamp(2.1rem, 6vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: clamp(0.08em, 0.8vw, 0.14em);
}

.entrance-title-sub {
  gap: clamp(16px, 4vw, 64px);
  font-size: clamp(0.5rem, 0.92vw, 0.86rem);
  letter-spacing: clamp(0.28em, 1.1vw, 0.62em);
}

.coin-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.coin-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.quote-card {
  grid-row: 3;
  align-self: start;
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.6svh, 18px);
  max-width: min(680px, 84vw);
  margin: clamp(18px, 3svh, 36px) auto 0;
  padding-top: clamp(14px, 2svh, 24px);
}

.quote-card blockquote {
  max-width: 22ch;
  font-size: clamp(0.9rem, 2vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: clamp(0.045em, 0.45vw, 0.09em);
}

.quote-card figcaption {
  margin-top: 0;
  font-size: clamp(0.52rem, 0.8vw, 0.74rem);
}

body[data-page="home"] .hp-commerce-shell {
  overflow: visible;
}

body[data-page="home"] main {
  display: block;
}

body[data-page="home"] .commerce-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(128px, 15svh, 170px) clamp(18px, 5vw, 78px) clamp(42px, 8svh, 88px);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 220, 224, 0.16);
}

body[data-page="home"] .commerce-hero-video,
body[data-page="home"] .commerce-hero-image {
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  animation: none !important;
}

body[data-page="home"] .commerce-hero-copy {
  width: min(720px, 90vw);
  max-width: min(720px, 90vw);
  align-self: center;
  justify-self: start;
}

body[data-page="home"] .commerce-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  overflow: visible;
}

body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
  max-width: 58ch;
}

body[data-page="home"] .commerce-hero + .promise-rail,
body[data-page="home"] .commerce-feature,
body[data-page="home"] .best-sellers,
body[data-page="home"] .lookbook-band,
body[data-page="home"] .community-band {
  margin-top: 0;
}

body[data-page="home"] .promise-rail {
  margin: 0;
  padding: clamp(26px, 4vw, 54px) clamp(18px, 4.5vw, 72px);
  border-width: 0 0 1px;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.96), rgba(14, 15, 16, 0.88)),
    var(--lux-bg) center / cover;
}

body[data-page="home"] .commerce-feature,
body[data-page="home"] .best-sellers,
body[data-page="home"] .lookbook-band,
body[data-page="home"] .community-band {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
}

body[data-page="shop"] .collection-landing {
  min-height: 100svh;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  padding: clamp(128px, 15svh, 168px) clamp(18px, 4.5vw, 72px) clamp(56px, 8svh, 90px);
  overflow: hidden;
}

body[data-page="shop"] .collection-copy h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  max-width: 720px;
}

body[data-page="shop"] .collection-copy p:not(.eyebrow) {
  max-width: 54ch;
}

body[data-page="shop"] .shop-toolbar,
body[data-page="shop"] .shop-grid-page {
  margin-top: 0;
}

@media (max-width: 940px) {
  .entrance-stage {
    grid-template-rows: minmax(78px, 17svh) minmax(310px, 49svh) minmax(206px, 34svh);
  }

  body[data-page="home"] .commerce-hero,
  body[data-page="shop"] .collection-landing {
    padding-top: clamp(116px, 14svh, 146px);
  }

  body[data-page="home"] .commerce-hero h1,
  body[data-page="shop"] .collection-copy h1 {
    font-size: clamp(2.65rem, 9vw, 5rem);
  }

  body[data-page="shop"] .collection-landing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .entrance-stage {
    grid-template-rows: minmax(72px, 15svh) minmax(360px, 53svh) minmax(198px, 32svh);
    padding-inline: clamp(14px, 4vw, 22px);
  }

  .entrance-title-main {
    font-size: clamp(1.6rem, 9vw, 3rem);
  }

  .entrance-title-sub {
    font-size: clamp(0.42rem, 2vw, 0.58rem);
    letter-spacing: 0.3em;
  }

  .quote-card {
    max-width: min(330px, 84vw);
    margin-top: clamp(12px, 2svh, 24px);
  }

  .quote-card blockquote {
    font-size: clamp(0.72rem, 3.1vw, 1.04rem);
  }

  .quote-card figcaption::before,
  .quote-card figcaption::after {
    width: 34px;
  }

  body[data-page="home"] .commerce-hero {
    padding: clamp(110px, 13svh, 132px) clamp(18px, 5vw, 24px) clamp(32px, 6svh, 52px);
  }

  body[data-page="home"] .commerce-hero h1,
  body[data-page="shop"] .collection-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
    line-height: 1;
    letter-spacing: 0.045em;
  }

  body[data-page="home"] .hero-actions {
    align-items: stretch;
  }

  body[data-page="home"] .hero-actions .button {
    justify-content: center;
    width: min(100%, 280px);
  }

  body[data-page="shop"] .collection-look {
    min-height: 0;
  }
}

@media (max-height: 700px) {
  .entrance-stage {
    grid-template-rows: minmax(58px, 13svh) minmax(300px, 55svh) minmax(138px, 32svh);
    padding-block: 8px 12px;
  }

  .entrance-title-main {
    font-size: clamp(1.85rem, 5.3vw, 4.5rem);
  }

  .quote-card {
    gap: 8px;
    margin-top: 10px;
  }

  .quote-card blockquote {
    font-size: clamp(0.68rem, 1.5vw, 1.34rem);
  }

}

/* Video-only background refinement */
:root {
  --lux-bg: none;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 220, 224, 0.06), transparent 34rem),
    linear-gradient(180deg, #050506 0%, #0d0d0e 48%, #050506 100%);
}

.site-shell,
.entrance-page,
.product-video-placeholder,
.editorial-triptych div,
.lookbook-strip span,
.mini-product div,
.lookbook-gallery article,
body[data-page="home"] .promise-rail,
.community-band,
body[data-page="shop"] .collection-landing,
.page-hero::after,
.private-page::after {
  background-image:
    radial-gradient(circle at 50% 28%, rgba(216, 220, 224, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(10, 11, 12, 0.92), rgba(4, 5, 6, 0.98)) !important;
}

body[data-page="home"] .commerce-hero-image {
  display: none !important;
}

.entrance-stage {
  grid-template-rows: minmax(82px, 15svh) minmax(430px, 60svh) minmax(146px, 25svh);
}

.quote-card {
  align-self: start;
  margin-top: clamp(22px, 3.8svh, 46px);
  max-width: min(620px, 82vw);
}

.quote-card blockquote {
  font-size: clamp(0.86rem, 1.86vw, 1.92rem);
}

@media (max-width: 620px) {
  .entrance-stage {
    grid-template-rows: minmax(68px, 14svh) minmax(382px, 58svh) minmax(154px, 28svh);
  }

  .quote-card {
    margin-top: clamp(16px, 3svh, 28px);
  }

  .quote-card blockquote {
    font-size: clamp(0.68rem, 2.9vw, 0.96rem);
  }
}

@media (max-height: 700px) {
  .entrance-stage {
    grid-template-rows: minmax(54px, 12svh) minmax(328px, 58svh) minmax(116px, 30svh);
  }

  .quote-card {
    margin-top: 12px;
  }
}

/* Streamlined homepage header and smoother shop entry completion */
body[data-page="home"] .top-ribbon {
  position: sticky;
  top: 0;
  min-height: 24px;
  padding: 6px clamp(18px, 4vw, 56px);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  z-index: 40;
}

body[data-page="home"] .commerce-header {
  position: sticky;
  top: 24px;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.5fr) minmax(118px, 0.42fr);
  gap: 14px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  padding: 5px clamp(18px, 4vw, 56px);
  background: rgba(3, 4, 5, 0.84);
  border-bottom-color: rgba(216, 220, 224, 0.16);
  backdrop-filter: blur(16px);
  z-index: 39;
  overflow: hidden;
}

body[data-page="home"] .commerce-brand {
  gap: 10px;
}

body[data-page="home"] .commerce-brand img {
  width: 30px;
  height: 30px;
}

body[data-page="home"] .commerce-brand span {
  font-size: clamp(0.62rem, 0.82vw, 0.8rem);
  letter-spacing: 0.16em;
}

body[data-page="home"] .commerce-nav {
  gap: clamp(12px, 1.8vw, 28px);
}

body[data-page="home"] .commerce-nav a,
body[data-page="home"] .commerce-actions a {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

body[data-page="home"] .commerce-actions {
  gap: 16px;
}

body[data-page="home"] .commerce-hero {
  min-height: calc(100svh - 74px);
  height: calc(100svh - 74px);
  padding-top: clamp(42px, 8svh, 86px);
}

.shop-transition-overlay.is-ending {
  opacity: 1;
  background: #000;
}

.shop-transition-overlay.is-ending .shop-transition-video,
.shop-transition-overlay.is-ending .shop-transition-scrim span {
  opacity: 0;
  transition: opacity 320ms ease;
}

.shop-entry-body.is-exiting .shop-entry-video,
.shop-entry-body.is-exiting .shop-entry-overlay span {
  opacity: 0;
  transition: opacity 320ms ease;
}

@media (max-width: 1100px) {
  body[data-page="home"] .commerce-header {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }

  body[data-page="home"] .commerce-brand img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .top-ribbon {
    min-height: 22px;
    padding-block: 5px;
  }

  body[data-page="home"] .commerce-header {
    top: 22px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    padding-block: 6px;
  }

  body[data-page="home"] .commerce-brand img {
    width: 26px;
    height: 26px;
  }

  body[data-page="home"] .commerce-brand span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  body[data-page="home"] .commerce-hero {
    min-height: calc(100svh - 68px);
    height: calc(100svh - 68px);
    padding-top: clamp(34px, 7svh, 58px);
  }
}

/* Chapter I shop rebuild */
body[data-page="shop"] {
  background: #050505;
}

body[data-page="shop"] .hp-commerce-shell::before {
  display: none;
}

.shop-fog-reveal {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  background:
    radial-gradient(circle at 50% 48%, rgba(226, 229, 230, 0.34), transparent 18rem),
    radial-gradient(circle at 32% 60%, rgba(192, 197, 198, 0.22), transparent 26rem),
    radial-gradient(circle at 70% 42%, rgba(240, 243, 244, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(9, 10, 11, 0.18), rgba(9, 10, 11, 0.8));
  filter: blur(2px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), visibility 1100ms linear;
}

.shop-fog-reveal::before,
.shop-fog-reveal::after {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.55;
  background:
    radial-gradient(ellipse at 20% 54%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(ellipse at 76% 44%, rgba(214, 218, 220, 0.12), transparent 38%);
  transform: translate3d(-2%, 1%, 0);
  animation: shopFogDrift 12s ease-in-out infinite alternate;
}

.shop-fog-reveal::after {
  opacity: 0.38;
  transform: translate3d(2%, -1%, 0) scale(1.08);
  animation-duration: 16s;
}

.shop-ready .shop-fog-reveal {
  opacity: 0;
  visibility: hidden;
}

@keyframes shopFogDrift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); }
  to { transform: translate3d(2%, -1%, 0) scale(1.05); }
}

.chapter-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(128px, 17vh, 176px) clamp(20px, 5vw, 88px) clamp(72px, 9vh, 104px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(216, 220, 224, 0.16);
  background: #070707;
}

.chapter-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
}

.chapter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.92) 0%, rgba(5, 5, 5, 0.74) 38%, rgba(5, 5, 5, 0.22) 70%, rgba(5, 5, 5, 0.58) 100%),
    radial-gradient(circle at 68% 46%, rgba(216, 220, 224, 0.2), transparent 22rem),
    radial-gradient(circle at 18% 80%, rgba(185, 150, 86, 0.09), transparent 24rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, transparent 42%, rgba(0, 0, 0, 0.72) 100%);
}

.chapter-hero-coin {
  position: absolute;
  z-index: -1;
  right: clamp(24px, 8vw, 140px);
  top: 50%;
  width: clamp(240px, 34vw, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-44%);
  opacity: 0.7;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 220, 224, 0.11), transparent 66%);
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.72));
}

.chapter-hero-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chapter-hero-copy {
  width: min(620px, 94vw);
  padding: clamp(18px, 3vw, 34px) 0;
}

.chapter-hero-copy h1,
.chapter-section-copy h2,
.featured-product-copy h2,
.complete-collection h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--home-title);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(4.4rem, 9vw, 9.8rem);
  line-height: 0.82;
}

.chapter-hero-copy h2 {
  margin: 12px 0 24px;
  color: rgba(216, 220, 224, 0.92);
  font-family: var(--entrance-title);
  font-size: clamp(1rem, 1.55vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.chapter-hero-copy > p:not(.eyebrow),
.chapter-section-copy > p,
.featured-product-copy > p {
  max-width: 560px;
  color: rgba(242, 239, 233, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.72;
}

.chapter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.chapter-hero .button.primary,
.featured-product .button.ghost {
  background: linear-gradient(135deg, rgba(216, 220, 224, 0.94), rgba(104, 111, 116, 0.92));
  color: #070707;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56), 0 18px 42px rgba(0, 0, 0, 0.4);
}

.chapter-hero .button.ghost,
.featured-product .button.ghost {
  background: rgba(9, 10, 11, 0.42);
  color: rgba(242, 239, 233, 0.92);
  border-color: rgba(216, 220, 224, 0.42);
  backdrop-filter: blur(14px);
}

.chapter-scroll {
  position: absolute;
  left: clamp(20px, 5vw, 88px);
  bottom: clamp(24px, 4vh, 42px);
  display: inline-grid;
  gap: 10px;
  color: rgba(216, 220, 224, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.chapter-scroll::after {
  content: "";
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.9), transparent);
  animation: chapterScrollPulse 2.6s ease-in-out infinite;
}

@keyframes chapterScrollPulse {
  0%, 100% { opacity: 0.38; transform: scaleY(0.72); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.collection-navigator {
  position: sticky;
  top: 0;
  z-index: 18;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 44px);
  padding: 14px clamp(18px, 4vw, 72px);
  border-top: 1px solid rgba(216, 220, 224, 0.1);
  border-bottom: 1px solid rgba(216, 220, 224, 0.16);
  background: rgba(4, 4, 5, 0.82);
  backdrop-filter: blur(18px);
}

.collection-navigator a,
.shop-filters button {
  color: rgba(242, 239, 233, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.collection-navigator a.is-active,
.collection-navigator a:hover,
.shop-filters button.is-active,
.shop-filters button:hover {
  color: #fff;
}

.chapter-section,
.featured-product,
.collection-lifestyle-gallery,
.chapter-products,
.complete-collection {
  position: relative;
  padding: clamp(74px, 10vw, 136px) clamp(20px, 5vw, 88px);
  border-bottom: 1px solid rgba(216, 220, 224, 0.12);
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 220, 224, 0.08), transparent 22rem),
    linear-gradient(180deg, #060607, #0b0b0c 55%, #050505);
}

.chapter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.ascension-section,
.ascension-feature,
.ascension-lifestyle,
.complete-collection {
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 220, 224, 0.12), transparent 24rem),
    linear-gradient(180deg, #080808, #111112 52%, #060607);
}

.chapter-section-copy h2,
.featured-product-copy h2,
.complete-collection h2 {
  font-size: clamp(2.6rem, 5.3vw, 6.1rem);
  line-height: 0.9;
}

.chapter-section-copy h3 {
  margin: 20px 0 16px;
  color: rgba(216, 220, 224, 0.92);
  font-family: var(--entrance-title);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(216, 220, 224, 0.46);
  color: rgba(242, 239, 233, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.collection-set-visual,
.featured-product-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 220, 224, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.42);
}

.collection-set-visual img,
.featured-product-media img,
.chapter-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-set-visual {
  min-height: clamp(360px, 42vw, 640px);
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.featured-product-media {
  height: clamp(360px, 46vw, 620px);
}

.featured-product-copy dl {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  border: 1px solid rgba(216, 220, 224, 0.14);
  background: rgba(216, 220, 224, 0.08);
}

.collection-lifestyle-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 3vw, 34px);
  padding-top: clamp(26px, 4vw, 54px);
}

.lifestyle-shot {
  position: relative;
  min-height: clamp(360px, 48vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 220, 224, 0.16);
  background: rgba(6, 6, 7, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 30px 82px rgba(0, 0, 0, 0.42);
}

.lifestyle-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 50% 12%, rgba(216, 220, 224, 0.12), transparent 34rem);
}

.lifestyle-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.82) brightness(0.9);
}

.lifestyle-shot:nth-child(2) {
  margin-top: clamp(34px, 7vw, 112px);
}

.featured-product-copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(4, 4, 5, 0.74);
}

.featured-product-copy dt,
.featured-product-copy dd {
  margin: 0;
  color: rgba(242, 239, 233, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.complete-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.chapter-product-card {
  display: grid;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(216, 220, 224, 0.15);
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.07), rgba(7, 7, 8, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 58px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.chapter-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 220, 224, 0.38);
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.11), rgba(7, 7, 8, 0.9));
}

.chapter-product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.chapter-product-card:hover .chapter-product-image img {
  transform: scale(1.03);
}

.chapter-product-image img {
  transition: transform 260ms ease;
}

.chapter-product-card p {
  margin: 16px 0 8px;
  color: rgba(216, 220, 224, 0.62);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-product-card h3 {
  margin: 0 0 10px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(1rem, 1.35vw, 1.26rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-product-card span,
.chapter-product-card small {
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.76rem;
  line-height: 1.6;
}

.chapter-product-card a {
  justify-self: start;
  margin-top: 14px;
  color: rgba(242, 239, 233, 0.9);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.chapter-product-card:hover a {
  opacity: 1;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.shop-filters button {
  cursor: pointer;
  padding: 12px 14px;
  border: 1px solid rgba(216, 220, 224, 0.16);
  background: rgba(7, 7, 8, 0.64);
}

.shop-filters button.is-active {
  border-color: rgba(216, 220, 224, 0.42);
  background: rgba(216, 220, 224, 0.12);
}

.chapter-product-card.is-filtered-out {
  display: none;
}

@media (max-width: 980px) {
  .chapter-hero {
    padding-top: 132px;
    align-items: end;
  }

  .chapter-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.48), rgba(2, 2, 2, 0.88) 66%, rgba(2, 2, 2, 0.96)),
      radial-gradient(circle at 58% 36%, rgba(216, 220, 224, 0.18), transparent 18rem);
  }

  .chapter-hero-coin {
    top: 37%;
    right: 50%;
    width: clamp(230px, 58vw, 420px);
    transform: translate(50%, -50%);
    opacity: 0.52;
  }

  .chapter-hero-copy {
    padding-top: 42vh;
  }

  .chapter-section,
  .featured-product {
    grid-template-columns: 1fr;
  }

  .shop-product-grid,
  .complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .chapter-hero {
    padding: 112px 20px 70px;
  }

  .chapter-hero-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

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

  .chapter-actions .button {
    justify-content: center;
  }

  .collection-navigator {
    justify-content: flex-start;
    overflow-x: auto;
    top: 0;
  }

  .chapter-section,
  .featured-product,
  .collection-lifestyle-gallery,
  .chapter-products,
  .complete-collection {
    padding: 64px 20px;
  }

  .shop-product-grid,
  .complete-grid {
    grid-template-columns: 1fr;
  }

  .collection-set-visual,
  .featured-product-media {
    min-height: auto;
    height: auto;
  }

  .collection-set-visual img,
  .featured-product-media img {
    aspect-ratio: 4 / 5;
  }

  .collection-lifestyle-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 44px;
  }

  .lifestyle-shot {
    min-height: auto;
  }

  .lifestyle-shot img {
    aspect-ratio: 4 / 5;
  }

  .lifestyle-shot:nth-child(2) {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-fog-reveal {
    transition-duration: 120ms;
  }

  .shop-fog-reveal::before,
  .shop-fog-reveal::after,
  .chapter-scroll::after {
    animation: none;
  }

  .chapter-product-card,
  .chapter-product-image img {
    transition: none;
  }
}

/* Chapter I mobile viewport correction */
@media (max-width: 620px) {
  .chapter-hero {
    min-height: 100svh;
    height: 100svh;
    padding: 96px 20px 44px;
    align-items: end;
  }

  .chapter-hero-coin {
    top: 34%;
    width: clamp(210px, 60vw, 250px);
  }

  .chapter-hero-copy {
    width: 100%;
    padding: 0;
  }

  .chapter-hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .chapter-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.86;
  }

  .chapter-hero-copy h2 {
    margin: 9px 0 14px;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
  }

  .chapter-hero-copy > p:not(.eyebrow) {
    max-width: 30rem;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .chapter-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .chapter-actions .button {
    min-height: 44px;
    padding: 13px 18px;
  }

  .chapter-scroll {
    display: none;
  }
}

@media (max-width: 380px) {
  .chapter-hero {
    padding-top: 88px;
    padding-bottom: 34px;
  }

  .chapter-hero-copy h1 {
    font-size: 2.9rem;
  }

  .chapter-hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }
}

/* Keep Chapter I navigator below fixed commerce header */
.collection-navigator {
  top: 104px;
}

@media (max-width: 920px) {
  .collection-navigator {
    top: 86px;
  }
}

@media (max-width: 620px) {
  .collection-navigator {
    top: 68px;
  }
}

/* Product photo framing for supplied Chapter I assets */
.chapter-product-image {
  background: linear-gradient(180deg, #f8f8f7, #ecebea);
}

.chapter-product-image img {
  object-fit: contain;
  padding: clamp(8px, 1vw, 16px);
}

.noir-feature .featured-product-media {
  background: linear-gradient(180deg, #f8f8f7, #ecebea);
}

.noir-feature .featured-product-media img {
  object-fit: contain;
  padding: clamp(10px, 1.4vw, 22px);
}

.collection-set-visual img,
.ascension-feature .featured-product-media img {
  padding: 0;
}

/* Marble display replacement framing */
.chapter-product-image,
.noir-feature .featured-product-media {
  background: #050505;
}

.chapter-product-image img,
.noir-feature .featured-product-media img,
.ascension-feature .featured-product-media img {
  object-fit: cover;
  padding: 0;
}

.chapter-product-image img {
  object-position: center;
}

/* Our Philosophy story experience */
body[data-page="philosophy"] {
  background: #050505;
  color: #f2efe9;
  overflow-x: hidden;
}

body[data-page="philosophy"] main {
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 220, 224, 0.09), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0b0b0c 42%, #050505 100%);
}

.philosophy-hero,
.philosophy-chapter,
.philosophy-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.philosophy-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(118px, 14vw, 180px) clamp(20px, 6vw, 96px) clamp(56px, 8vw, 104px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.7)),
    url("assets/luxury-material-background.png") center / cover no-repeat;
}

.philosophy-hero::after,
.philosophy-chapter::after,
.philosophy-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 220, 224, 0.14), transparent 32rem),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.82), transparent 34rem);
}

.philosophy-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(216, 220, 224, 0.08) 38%, transparent 54%),
    radial-gradient(circle at 76% 54%, rgba(141, 106, 50, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.82));
  opacity: 0.92;
}

.philosophy-hero-copy {
  max-width: min(780px, 100%);
}

.philosophy-hero h1,
.philosophy-chapter h2,
.philosophy-final h2 {
  margin: 0;
  color: #f2efe9;
  font-family: var(--entrance-title);
  font-weight: 500;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  text-wrap: balance;
}

.philosophy-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.92;
}

.philosophy-hero-line {
  margin: clamp(22px, 3vw, 34px) 0 10px;
  color: rgba(242, 239, 233, 0.95);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.55rem);
  line-height: 1.05;
}

.philosophy-hero-copy p:not(.eyebrow):not(.philosophy-hero-line),
.story-copy p,
.emblem-copy p,
.standard-copy p,
.philosophy-final-inner p {
  max-width: 650px;
  color: rgba(242, 239, 233, 0.76);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.85;
}

.philosophy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 42px);
}

.philosophy-chapter {
  padding: clamp(84px, 11vw, 156px) clamp(20px, 6vw, 96px);
  border-top: 1px solid rgba(216, 220, 224, 0.11);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 220, 224, 0.08), transparent 24rem),
    linear-gradient(180deg, #050505, #0b0b0c 52%, #050505);
}

.chapter-label,
body[data-page="philosophy"] .eyebrow {
  color: rgba(185, 150, 86, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.why-exist {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(28px, 5vw, 64px);
}

.why-statements {
  display: grid;
  gap: clamp(12px, 1.8vw, 22px);
  max-width: 1040px;
}

.why-statements h2 {
  margin-bottom: clamp(12px, 2vw, 24px);
  font-size: clamp(2.8rem, 6.4vw, 7rem);
  line-height: 0.95;
}

.why-statements p {
  margin: 0;
  color: rgba(242, 239, 233, 0.86);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 3.1rem);
  line-height: 1.08;
  text-wrap: balance;
}

.why-statements p:nth-last-child(-n + 3) {
  max-width: 860px;
  color: rgba(216, 220, 224, 0.88);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  line-height: 1.75;
}

.story-chapter,
.emblem-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.story-visual,
.emblem-coin {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 220, 224, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.48);
}

.story-visual {
  min-height: clamp(420px, 48vw, 690px);
}

.story-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.8) brightness(0.72);
}

.story-copy h2,
.emblem-copy h2,
.standard-copy h2,
.philosophy-statements h2 {
  margin: 16px 0 clamp(20px, 3vw, 34px);
  font-size: clamp(2.35rem, 5vw, 5.7rem);
  line-height: 0.94;
}

.story-copy p,
.emblem-copy p,
.standard-copy p {
  margin: 0 0 14px;
}

.philosophy-statements {
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
}

.philosophy-statements .section-line-heading {
  margin-bottom: clamp(12px, 2vw, 24px);
}

.statement-panel {
  position: relative;
  min-height: clamp(190px, 24vw, 310px);
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(216, 220, 224, 0.15);
  background:
    linear-gradient(115deg, rgba(216, 220, 224, 0.09), transparent 28%, rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 78px rgba(0, 0, 0, 0.38);
}

.statement-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(216, 220, 224, 0.12), transparent);
  transform: translateX(-64%);
  transition: transform 900ms ease, opacity 900ms ease;
  opacity: 0;
}

.statement-panel.is-visible::before,
.statement-panel:hover::before {
  transform: translateX(64%);
  opacity: 1;
}

.statement-panel h3,
.value-pillar h3 {
  margin: 0;
  color: rgba(242, 239, 233, 0.96);
  font-family: var(--entrance-title);
  font-size: clamp(1.55rem, 3.8vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.statement-panel p,
.value-pillar p {
  margin: 18px 0 0;
  color: rgba(216, 220, 224, 0.74);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  letter-spacing: 0.04em;
}

.emblem-chapter {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.95fr);
}

.emblem-coin {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 42vw, 620px);
  padding: clamp(28px, 5vw, 76px);
  background:
    radial-gradient(circle at 50% 44%, rgba(216, 220, 224, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.025);
}

.emblem-coin img {
  width: min(100%, 480px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.62));
}

.standard-chapter {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.standard-copy {
  max-width: 920px;
}

.standard-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(216, 220, 224, 0.13);
  background: rgba(216, 220, 224, 0.12);
}

.value-pillar {
  min-height: clamp(220px, 25vw, 330px);
  display: grid;
  align-content: end;
  padding: clamp(22px, 3vw, 40px);
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 220, 224, 0.08), transparent 16rem),
    #080809;
  transition: background 260ms ease, transform 260ms ease;
}

.value-pillar:hover,
.value-pillar:focus-within {
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 220, 224, 0.16), transparent 18rem),
    #0d0d0e;
  transform: translateY(-3px);
}

.value-pillar h3 {
  font-size: clamp(1.15rem, 2vw, 2rem);
}

.philosophy-final {
  min-height: 82svh;
  display: grid;
  place-items: center;
  padding: clamp(84px, 12vw, 150px) clamp(20px, 6vw, 96px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.92)),
    url("assets/luxury-material-background.png") center / cover no-repeat;
}

.philosophy-final-inner {
  max-width: 980px;
}

.philosophy-final h2 {
  margin: 18px auto 24px;
  font-size: clamp(2.4rem, 5.8vw, 6.4rem);
  line-height: 0.95;
}

.philosophy-final-inner p:not(.eyebrow) {
  margin: 0 auto 8px;
  color: rgba(242, 239, 233, 0.9);
  font-family: var(--entrance-title);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.philosophy-final-inner span {
  display: block;
  color: rgba(185, 150, 86, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.philosophy-final .philosophy-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .story-chapter,
  .emblem-chapter {
    grid-template-columns: 1fr;
  }

  .emblem-coin {
    order: 2;
  }

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

@media (max-width: 620px) {
  .philosophy-hero {
    min-height: 100svh;
    padding: 104px 18px 48px;
  }

  .philosophy-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

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

  .philosophy-actions .button {
    justify-content: center;
  }

  .philosophy-chapter,
  .philosophy-final {
    padding: 72px 18px;
  }

  .why-statements h2,
  .story-copy h2,
  .emblem-copy h2,
  .standard-copy h2,
  .philosophy-statements h2,
  .philosophy-final h2 {
    letter-spacing: 0.045em;
  }

  .story-visual {
    min-height: auto;
  }

  .story-visual img {
    aspect-ratio: 4 / 5;
  }

  .standard-values {
    grid-template-columns: 1fr;
  }

  .value-pillar {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .statement-panel::before,
  .value-pillar {
    transition: none;
  }
}

/* The Inner Circle account experience */
body[data-page="account"] {
  background: #050505;
  color: var(--ivory);
  overflow-x: hidden;
}

body[data-page="account"] main {
  background:
    radial-gradient(circle at 16% 10%, rgba(216, 220, 224, 0.1), transparent 28rem),
    radial-gradient(circle at 84% 34%, rgba(185, 150, 86, 0.08), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0d0d0e 46%, #050505 100%);
}

.account-auth-view,
.account-dashboard {
  position: relative;
  min-height: 100svh;
  padding: clamp(118px, 14vw, 176px) clamp(20px, 6vw, 96px) clamp(64px, 8vw, 118px);
  overflow: hidden;
  isolation: isolate;
}

.account-auth-view {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.74)),
    url("assets/luxury-material-background.png") center / cover no-repeat;
}

.account-auth-view::after,
.account-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 220, 224, 0.13), transparent 32rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.86));
}

.account-auth-copy h1,
.account-dashboard-hero h1 {
  max-width: 880px;
  margin: 0 0 24px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.account-auth-copy p:not(.eyebrow),
.account-dashboard-hero p,
.account-panel p,
.account-form p,
.account-empty p,
.private-access-panel p {
  max-width: 660px;
  color: rgba(242, 239, 233, 0.76);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.8;
}

.account-panel,
.member-card,
.account-content,
.account-empty,
.private-access-panel,
.saved-piece,
.address-card,
.reward-card,
.points-row,
.legacy-admin-card {
  border: 1px solid rgba(216, 220, 224, 0.16);
  background:
    linear-gradient(145deg, rgba(216, 220, 224, 0.08), rgba(5, 5, 5, 0.72)),
    rgba(8, 8, 9, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 30px 88px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.account-panel {
  padding: clamp(24px, 4vw, 46px);
}

.account-form h2,
.account-section h2,
.private-access-panel h2,
.account-empty h2 {
  margin: 0 0 18px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(1.7rem, 3.4vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 18px;
}

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

.form-grid.single {
  grid-template-columns: 1fr;
}

.account-form label {
  display: grid;
  gap: 9px;
  color: rgba(242, 239, 233, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-form input,
.account-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(216, 220, 224, 0.18);
  background: rgba(0, 0, 0, 0.42);
  color: var(--ivory);
  padding: 0 14px;
  outline: none;
}

.account-form input:focus,
.account-form select:focus {
  border-color: rgba(216, 220, 224, 0.56);
  box-shadow: 0 0 0 3px rgba(216, 220, 224, 0.08);
}

.checkbox-label {
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 12px !important;
  min-height: 48px;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  font-weight: 700 !important;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  accent-color: #d8dce0;
}

.fine-print,
.account-status {
  min-height: 1.4em;
  margin: 0 0 18px;
  color: rgba(216, 220, 224, 0.68);
  font-size: 0.78rem;
  line-height: 1.6;
}

.account-status[data-status="error"] {
  color: #f0b7b7;
}

.account-status[data-status="success"] {
  color: #d8dce0;
}

.account-form-links,
.account-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.account-form-links button,
.saved-piece button,
.address-card button {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: rgba(242, 239, 233, 0.82);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-dashboard {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.account-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
}

.member-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.member-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.member-card span,
.member-card small,
.dashboard-grid span,
.dashboard-grid strong {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.member-card span {
  color: var(--ivory);
  font-family: var(--entrance-title);
}

.member-card small {
  color: rgba(216, 220, 224, 0.64);
  font-size: 0.68rem;
  line-height: 1.7;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.account-tabs {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(216, 220, 224, 0.14);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
}

.account-tabs button {
  cursor: pointer;
  min-height: 46px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(242, 239, 233, 0.68);
  padding: 0 14px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-tabs button.is-active,
.account-tabs button:hover {
  border-color: rgba(216, 220, 224, 0.26);
  background: rgba(216, 220, 224, 0.08);
  color: var(--ivory);
}

.account-content {
  min-height: 560px;
  padding: clamp(22px, 4vw, 44px);
}

.account-section {
  display: none;
}

.account-section.is-active {
  display: block;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(216, 220, 224, 0.12);
  background: rgba(216, 220, 224, 0.11);
}

.dashboard-grid article {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 22px;
  background: #080809;
}

.dashboard-grid span {
  color: rgba(216, 220, 224, 0.62);
  font-size: 0.64rem;
  font-weight: 900;
}

.dashboard-grid strong {
  margin: 16px 0 10px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
}

.dashboard-grid p {
  margin: 0;
  color: rgba(242, 239, 233, 0.68);
  font-size: 0.86rem;
  line-height: 1.6;
}

.legacy-progress {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(216, 220, 224, 0.14);
  background: rgba(5, 5, 6, 0.48);
}

.legacy-progress-track,
.legacy-progress > div {
  height: 4px;
  overflow: hidden;
  background: rgba(216, 220, 224, 0.14);
}

.legacy-progress-fill,
.legacy-progress > div > i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(142, 146, 150, 0.78), rgba(242, 239, 233, 0.98));
  box-shadow: 0 0 22px rgba(216, 220, 224, 0.22);
  transition: width 520ms ease;
}

.legacy-progress span,
.reward-card span,
.points-row small,
.legacy-admin-card span,
.legacy-admin-card p,
.legacy-admin-lists strong {
  color: rgba(216, 220, 224, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rewards-grid,
.points-history,
.legacy-admin-grid {
  display: grid;
  gap: 18px;
}

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

.reward-card,
.points-row,
.legacy-admin-card {
  padding: clamp(18px, 3vw, 28px);
}

.reward-card {
  display: grid;
  gap: 14px;
}

.reward-card h3,
.points-row strong,
.legacy-admin-card h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-card p,
.reward-card small,
.points-row span,
.points-row em,
.legacy-admin-card li,
.legacy-admin-card label {
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

.reward-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(185, 150, 86, 0.28);
  background: rgba(0, 0, 0, 0.28);
}

.reward-code code {
  color: rgba(242, 239, 233, 0.94);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.reward-code button,
.legacy-admin-card button {
  cursor: pointer;
  border: 1px solid rgba(216, 220, 224, 0.22);
  background: rgba(216, 220, 224, 0.06);
  color: var(--ivory);
  padding: 10px 12px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.points-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.points-row em {
  font-style: normal;
}

.legacy-admin-panel {
  margin-top: 36px;
}

.legacy-admin-card {
  display: grid;
  gap: 18px;
}

.legacy-admin-card dl,
.legacy-admin-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(216, 220, 224, 0.12);
}

.legacy-admin-card dl div,
.legacy-admin-lists > div {
  padding: 14px;
  background: rgba(5, 5, 6, 0.82);
}

.legacy-admin-card dt {
  color: rgba(216, 220, 224, 0.58);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legacy-admin-card dd {
  margin: 8px 0 0;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.legacy-admin-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legacy-admin-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.legacy-admin-card form {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.account-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
}

.compact-empty {
  margin-top: 18px;
  box-shadow: none;
}

.saved-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.saved-piece {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 12px;
}

.saved-piece img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.saved-piece p,
.saved-piece span,
.saved-piece small {
  color: rgba(242, 239, 233, 0.7);
  font-size: 0.76rem;
  line-height: 1.7;
}

.saved-piece h3 {
  margin: 6px 0 8px;
  font-family: var(--entrance-title);
}

.saved-piece div div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.address-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.address-card {
  padding: 18px;
}

.address-card p {
  color: rgba(242, 239, 233, 0.7);
  line-height: 1.65;
}

.address-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(185, 150, 86, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.private-access-panel {
  padding: clamp(24px, 4vw, 48px);
}

.private-access-panel dl {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid rgba(216, 220, 224, 0.13);
  background: rgba(216, 220, 224, 0.12);
}

.private-access-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.72);
}

.private-access-panel dt,
.private-access-panel dd {
  margin: 0;
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-product-image {
  position: relative;
}

.wishlist-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(216, 220, 224, 0.2);
  background: rgba(5, 5, 5, 0.72);
  color: rgba(242, 239, 233, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wishlist-button.is-saved {
  border-color: rgba(216, 220, 224, 0.52);
  background: rgba(216, 220, 224, 0.18);
  color: #fff;
}

@media (max-width: 980px) {
  .account-auth-view,
  .account-dashboard-hero,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-tabs {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }

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

@media (max-width: 620px) {
  .account-auth-view,
  .account-dashboard {
    padding: 104px 18px 62px;
  }

  .account-auth-copy h1,
  .account-dashboard-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
    letter-spacing: 0.045em;
  }

  .form-grid.two,
  .dashboard-grid,
  .saved-grid,
  .rewards-grid,
  .points-row,
  .legacy-admin-card dl,
  .legacy-admin-lists,
  .legacy-admin-card form {
    grid-template-columns: 1fr;
  }

  .account-content,
  .account-panel {
    padding: 20px;
  }

  .saved-piece {
    grid-template-columns: 1fr;
  }

  .account-button-row .button,
  .account-form > .button {
    width: 100%;
  }
}

/* CHAPTER ARCHIVE SYSTEM */
.archive-body main,
.archive-page main {
  background: radial-gradient(circle at 50% 0%, rgba(216, 220, 224, 0.08), transparent 34%), #050506;
}

.archive-hero,
.collection-story-hero,
.product-archive-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) clamp(18px, 5vw, 78px) clamp(70px, 8vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 220, 224, 0.13);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.48), rgba(5, 5, 6, 0.9)),
    url("assets/luxury-material-background.png") center / cover no-repeat,
    #050506;
}

.archive-hero::after,
.collection-story-hero::after,
.product-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 65% 42%, rgba(216, 220, 224, 0.12), transparent 24%), radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.72), transparent 45%);
}

.archive-hero-copy,
.product-archive-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.archive-hero-copy h1,
.collection-story-hero h1,
.product-archive-copy h1 {
  margin: 0 0 18px;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-size: clamp(3rem, 8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.archive-hero-copy p,
.product-archive-copy > p,
.collection-manifesto p,
.product-story-block p,
.archive-manifesto p {
  max-width: 720px;
  color: rgba(242, 239, 233, 0.76);
  font-size: clamp(0.98rem, 1.4vw, 1.22rem);
  line-height: 1.85;
}

.archive-manifesto,
.collection-manifesto,
.product-story-block,
.product-detail-grid,
.product-gallery,
.archive-chapters,
.archive-collections,
.complete-collection {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 78px);
}

.archive-manifesto,
.collection-manifesto,
.product-story-block {
  display: grid;
  justify-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(216, 220, 224, 0.11);
}

.archive-manifesto p,
.collection-manifesto p,
.product-story-block p {
  margin: 0;
}

.archive-chapters,
.archive-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.archive-card {
  min-height: clamp(340px, 42vw, 560px);
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(216, 220, 224, 0.16);
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.08), rgba(5, 5, 6, 0.92)), rgba(10, 10, 11, 0.92);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.archive-card.current {
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.14), rgba(5, 5, 6, 0.9)), url("assets/luxury-material-background.png") center / cover no-repeat;
}

.archive-card.locked {
  opacity: 0.62;
}

.archive-card span,
.archive-card p,
.archive-card small,
.product-archive-copy dt,
.product-archive-copy dd,
.chapter-product-card small {
  color: rgba(242, 239, 233, 0.68);
}

.archive-card h2,
.archive-card h3,
.product-story-block h2,
.product-detail-grid h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-card a,
.section-line-heading a,
.chapter-product-card a,
.saved-piece a,
.archive-progress-grid a {
  color: rgba(242, 239, 233, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.collection-wide-visual {
  padding: 0 clamp(18px, 5vw, 78px) clamp(70px, 9vw, 120px);
}

.collection-wide-visual img,
.product-gallery img,
.product-archive-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(216, 220, 224, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.product-archive-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 90px);
}

.product-archive-copy dl,
.featured-product-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 600px;
  margin: 30px 0;
  border: 1px solid rgba(216, 220, 224, 0.13);
  background: rgba(216, 220, 224, 0.12);
}

.product-archive-copy dl div,
.featured-product-copy dl div {
  padding: 15px;
  background: rgba(5, 5, 6, 0.74);
}

.product-buy-box {
  display: grid;
  gap: 18px;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(216, 220, 224, 0.13);
  background: rgba(5, 5, 6, 0.58);
  backdrop-filter: blur(16px);
}

.product-buy-box fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-buy-box legend,
.product-buy-box > label {
  width: 100%;
  color: rgba(242, 239, 233, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-buy-box fieldset label {
  cursor: pointer;
  min-width: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 220, 224, 0.2);
  color: var(--ivory);
  text-align: center;
  position: relative;
}

.product-buy-box fieldset label.is-sold-out {
  cursor: not-allowed;
  opacity: 0.42;
}

.product-buy-box fieldset label.is-low-stock {
  border-color: rgba(185, 150, 86, 0.46);
}

.stock-note {
  display: block;
  margin-top: 0.35rem;
  color: rgba(242, 239, 233, 0.68);
  font-family: Inter, sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-buy-box input[type="number"] {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 220, 224, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: var(--ivory);
}

.bundle-products {
  padding-top: clamp(34px, 5vw, 72px);
}

.bundle-grid {
  align-items: start;
}

.bundle-product-card {
  gap: 0;
}

.bundle-product-image {
  aspect-ratio: 16 / 11;
}

.bundle-buy-box {
  width: 100%;
  max-width: none;
  margin-top: 18px;
  padding: 14px;
  gap: 14px;
  background: linear-gradient(180deg, rgba(216, 220, 224, 0.08), rgba(5, 5, 6, 0.74));
}

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

.bundle-size-group legend {
  grid-column: 1 / -1;
}

.bundle-buy-box fieldset label {
  min-width: 0;
  padding: 10px 8px;
  font-size: 0.68rem;
}

.bundle-buy-box input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bundle-buy-box input[type="radio"]:checked + span,
.bundle-buy-box fieldset label:has(input[type="radio"]:checked) {
  border-color: rgba(216, 220, 224, 0.62);
  background: rgba(216, 220, 224, 0.1);
  color: #ffffff;
}

.bundle-buy-box .button[disabled] {
  cursor: not-allowed;
  opacity: 0.46;
}

.product-save {
  position: static;
  width: fit-content;
  margin-top: 14px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 220, 224, 0.11);
  border-top: 1px solid rgba(216, 220, 224, 0.11);
  border-bottom: 1px solid rgba(216, 220, 224, 0.11);
}

.product-detail-grid article,
.archive-progress-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(5, 5, 6, 0.86);
}

.product-detail-grid ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(242, 239, 233, 0.72);
  line-height: 1.8;
}

.product-detail-grid p,
.size-guide-shell,
.archive-progress-grid p {
  color: rgba(242, 239, 233, 0.68);
  line-height: 1.75;
}

.size-guide-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.size-guide-shell strong {
  width: 100%;
}

.size-guide-shell span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(216, 220, 224, 0.18);
}

.account-archive-panel > p {
  max-width: 760px;
  color: rgba(242, 239, 233, 0.72);
  line-height: 1.75;
}

.archive-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  border: 1px solid rgba(216, 220, 224, 0.13);
  background: rgba(216, 220, 224, 0.12);
}

.archive-progress-grid span,
.archive-progress-grid strong {
  display: block;
  color: var(--ivory);
}

.archive-progress-grid span {
  color: rgba(216, 220, 224, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-progress-grid strong {
  margin-top: 14px;
  font-family: var(--entrance-title);
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  font-weight: 500;
}

@media (max-width: 980px) {
  .archive-chapters,
  .archive-collections,
  .product-archive-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-archive-image {
    order: -1;
  }

  .product-gallery,
  .archive-progress-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .archive-hero,
  .collection-story-hero,
  .product-archive-hero {
    padding: 108px 18px 56px;
  }

  .archive-hero-copy h1,
  .collection-story-hero h1,
  .product-archive-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
    letter-spacing: 0.045em;
  }

  .product-archive-copy dl,
  .featured-product-copy dl {
    grid-template-columns: 1fr;
  }
}
/* CHECKOUT AND ORDER HISTORY */
.orders-grid {
  display: grid;
  gap: 18px;
}

.order-card,
.checkout-confirmation {
  border: 1px solid rgba(216, 220, 224, 0.14);
  background: rgba(5, 5, 6, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.order-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.order-card h3,
.checkout-confirmation dd {
  margin: 6px 0 0;
  color: var(--ivory);
  font-family: var(--entrance-title);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-card span,
.order-card p,
.order-card dt,
.order-card dd,
.checkout-confirmation dt,
.checkout-confirmation dd {
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-card dl,
.checkout-confirmation dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(216, 220, 224, 0.12);
}

.order-card dl div,
.checkout-confirmation dl div {
  padding: 14px;
  background: rgba(5, 5, 6, 0.82);
}

.order-card .order-totals {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(216, 220, 224, 0.12);
  padding-top: 12px;
}

.order-card .order-totals div:last-child dd {
  color: var(--ivory);
  font-weight: 900;
}

.order-card ul,
.checkout-confirmation ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-card li,
.checkout-confirmation li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(216, 220, 224, 0.1);
}

.order-card li img,
.checkout-confirmation li img {
  width: 54px;
  aspect-ratio: 1;
  object-fit: cover;
}

.checkout-confirmation {
  margin: 28px 0;
  padding: clamp(18px, 3vw, 30px);
}

.inventory-admin-shell {
  width: min(1180px, 100%);
}

.inventory-admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.inventory-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.inventory-card,
.inventory-movement {
  border: 1px solid rgba(216, 220, 224, 0.14);
  background: rgba(5, 5, 6, 0.62);
  padding: 18px;
}

.inventory-card h3 {
  margin: 0.25rem 0;
  color: var(--ivory);
  font-family: Cinzel, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card p,
.inventory-card span,
.inventory-card small,
.inventory-movement span,
.inventory-movement p {
  color: rgba(242, 239, 233, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.inventory-card dl div {
  border: 1px solid rgba(216, 220, 224, 0.1);
  padding: 10px;
}

.inventory-card dt,
.inventory-card dd {
  margin: 0;
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.7rem;
}

.inventory-card dd {
  margin-top: 4px;
  color: var(--ivory);
  font-weight: 800;
}

.inventory-card form {
  display: grid;
  gap: 10px;
}

.inventory-card label {
  color: rgba(242, 239, 233, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inventory-card input {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(216, 220, 224, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: var(--ivory);
}

.inventory-history {
  margin-top: 42px;
}

.inventory-movement {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 10px;
}

.inventory-movement strong {
  display: block;
  color: var(--ivory);
  font-family: Cinzel, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .inventory-movement {
    grid-template-columns: 1fr;
  }
}

.account-status[data-status="error"] {
  color: #f0b8b8;
}

.account-status[data-status="success"] {
  color: rgba(216, 220, 224, 0.95);
}

@media (max-width: 620px) {
  .order-card dl,
  .checkout-confirmation dl,
  .order-card li,
  .checkout-confirmation li {
    grid-template-columns: 1fr;
  }
}

/* Mobile-only entrance refinement. Desktop composition remains the base style. */
@media (max-width: 767px) {
  html,
  .entrance-body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #000;
  }

  .entrance-body {
    height: 100vh;
    height: 100dvh;
    max-height: none;
    overscroll-behavior: none;
  }

  .entrance-page {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    overflow: hidden;
    background: #020203 !important;
  }

  .entrance-page::after {
    background:
      radial-gradient(
        circle at 50% 39%,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(216, 220, 224, 0.055) 24%,
        rgba(0, 0, 0, 0) 52%
      ),
      radial-gradient(
        ellipse at 50% 50%,
        rgba(0, 0, 0, 0) 42%,
        rgba(0, 0, 0, 0.62) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.24) 72%,
        rgba(0, 0, 0, 0.44) 100%
      );
    opacity: 1;
  }

  .entrance-grain {
    opacity: 0.13;
    mix-blend-mode: soft-light;
  }

  .entrance-stage {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    width: 100%;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(30px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
    gap: clamp(12px, 2.5dvh, 24px);
    overflow: hidden;
  }

  .entrance-kicker {
    position: relative;
    z-index: 4;
    width: min(100%, 430px);
    margin: 0;
    padding-top: clamp(4px, 1.8dvh, 16px);
    gap: clamp(7px, 1.4dvh, 12px);
    align-self: center;
    transform: none;
  }

  .entrance-title-main {
    font-size: clamp(2rem, 10vw, 3.35rem);
    line-height: 0.95;
    letter-spacing: 0.12em;
    transform: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #e4e4e4 35%,
      #a9a9a9 72%,
      #f0f0f0 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: #f2efe9;
    -webkit-text-fill-color: transparent;
  }

  .entrance-title-sub {
    font-size: clamp(0.62rem, 2.2vw, 0.82rem);
    letter-spacing: 0.42em;
    line-height: 1;
    padding-left: 0.42em;
    color: rgba(216, 220, 224, 0.9);
  }

  .entrance-title-sub::before,
  .entrance-title-sub::after {
    width: clamp(34px, 12vw, 64px);
    opacity: 0.58;
  }

  .coin-stage {
    position: relative;
    inset: auto;
    z-index: 3;
    display: grid;
    place-items: center;
    width: min(92vw, 430px);
    height: clamp(330px, 50dvh, 620px);
    max-width: 100%;
    max-height: 52dvh;
    aspect-ratio: 9 / 16;
    margin: 0;
    overflow: visible;
    transform: translateZ(0);
    contain: layout paint;
  }

  .coin-stage::after,
  .coin-shadow {
    display: none;
  }

  .coin-video,
  .coin-canvas,
  .coin-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    object-position: center center;
    transform: translateZ(0);
  }

  .coin-video {
    filter: none;
    backface-visibility: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .coin-fallback {
    border-radius: 50%;
    opacity: 1;
  }

  .quote-card {
    position: relative;
    z-index: 4;
    width: min(100%, 20rem);
    max-width: 88vw;
    min-height: auto;
    margin: 0;
    padding: 0 0 clamp(5px, 1.1dvh, 12px);
    gap: clamp(8px, 1.5dvh, 13px);
    align-self: center;
    place-items: center;
    transform: none;
  }

  .quote-card::before,
  .quote-card::after {
    opacity: 0.56;
  }

  .quote-card blockquote {
    max-width: 19rem;
    margin: 0 auto;
    font-size: clamp(1rem, 4.6vw, 1.35rem);
    line-height: 1.05;
    letter-spacing: 0.065em;
    color: rgba(242, 239, 233, 0.9);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.66);
  }

  .quote-card figcaption {
    font-size: clamp(0.58rem, 2vw, 0.72rem);
    letter-spacing: 0.32em;
    color: rgba(216, 220, 224, 0.72);
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .entrance-stage {
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: max(22px, env(safe-area-inset-bottom));
    gap: clamp(8px, 1.8dvh, 16px);
  }

  .entrance-kicker {
    padding-top: 0;
    gap: 6px;
  }

  .entrance-title-main {
    font-size: clamp(1.74rem, 8.6vw, 2.78rem);
  }

  .entrance-title-sub {
    font-size: clamp(0.54rem, 1.9vw, 0.68rem);
  }

  .coin-stage {
    width: 100%;
    height: clamp(280px, 44dvh, 380px);
    max-height: 44dvh;
  }

  .quote-card blockquote {
    font-size: clamp(0.88rem, 4vw, 1.12rem);
    max-width: 18rem;
  }
}

/* Mobile portrait video optimisation. Desktop remains the base style above 767px. */
@media (max-width: 767px) {
  body[data-page="home"] .commerce-hero,
  .shop-transition-overlay,
  .shop-entry-page {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    max-width: none;
    max-height: none;
    overflow: hidden;
  }

  @supports (height: 100dvh) {
    body[data-page="home"] .commerce-hero,
    .shop-transition-overlay,
    .shop-entry-page {
      height: 100dvh;
      min-height: 100dvh;
    }
  }

  body[data-page="home"] .commerce-hero {
    padding:
      max(92px, calc(env(safe-area-inset-top) + 78px))
      max(22px, env(safe-area-inset-right))
      max(34px, env(safe-area-inset-bottom))
      max(22px, env(safe-area-inset-left));
    align-items: end;
  }

  body[data-page="home"] .hero-video-overlay {
    background:
      radial-gradient(ellipse at 52% 42%, rgba(255, 255, 255, 0.02), transparent 36%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 32%, rgba(0, 0, 0, 0.54) 72%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.38));
  }

  body[data-page="home"] .commerce-hero-copy {
    width: 100%;
    max-width: 22rem;
    justify-self: start;
    align-self: end;
    padding-bottom: clamp(4px, 1.6dvh, 16px);
  }

  body[data-page="home"] .commerce-hero .eyebrow {
    font-size: clamp(0.66rem, 2vw, 0.78rem);
    letter-spacing: 0.22em;
  }

  body[data-page="home"] .commerce-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.8vw, 3.45rem);
    line-height: 1;
    letter-spacing: 0.045em;
    overflow-wrap: normal;
  }

  body[data-page="home"] .commerce-hero h1 span {
    display: block;
  }

  body[data-page="home"] .commerce-hero-copy p:not(.eyebrow) {
    max-width: 21rem;
    font-size: clamp(0.88rem, 3vw, 0.98rem);
    line-height: 1.48;
  }

  body[data-page="home"] .hero-actions {
    width: min(100%, 21rem);
    gap: 8px;
  }

  body[data-page="home"] .hero-actions .button {
    min-height: 40px;
    padding: 0.68rem 0.9rem;
    flex: 1 1 100%;
    justify-content: center;
  }

  body[data-page="home"] .commerce-hero-video,
  .shop-transition-video,
  .shop-entry-video {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .shop-transition-scrim,
  .shop-entry-overlay {
    padding:
      max(24px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(32px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
  }

  .shop-transition-scrim span,
  .shop-entry-overlay span {
    font-size: clamp(0.62rem, 2.2vw, 0.82rem);
    letter-spacing: 0.26em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commerce-hero-video,
  .coin-video,
  .shop-entry-video,
  .shop-transition-video {
    animation: none !important;
  }
}

/* Mobile viewport and scrolling correction. Desktop remains governed by the base rules above. */
@media (max-width: 767px) {
  html {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
  }

  body:not(.entrance-body):not(.shop-entry-body) {
    min-height: 100%;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto !important;
    touch-action: pan-y;
    background-attachment: scroll;
  }

  body:not(.entrance-body):not(.shop-entry-body) .site-shell,
  body:not(.entrance-body):not(.shop-entry-body) .hp-commerce-shell {
    min-height: 100%;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    touch-action: pan-y;
  }

  .entrance-body {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: none;
    overflow: hidden;
    background: #000;
    overscroll-behavior: none;
  }

  .entrance-page,
  .entrance-stage {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: none;
    overflow: hidden;
  }

  .entrance-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(30px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .coin-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    margin: 0;
    overflow: hidden;
    contain: paint;
  }

  .coin-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter: none;
    backface-visibility: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .coin-canvas,
  .coin-fallback,
  .coin-shadow,
  .coin-stage::after {
    display: none;
  }

  .entrance-kicker,
  .quote-card {
    position: relative;
    z-index: 4;
  }

  .quote-card {
    margin-bottom: clamp(4px, 1.2dvh, 12px);
  }

  body[data-page="home"] .commerce-hero,
  body[data-page="shop"] .chapter-hero,
  body[data-page="shop"] .collection-landing {
    position: relative;
    overflow: hidden;
  }

  body[data-page="home"] .commerce-hero-video,
  .shop-transition-video,
  .shop-entry-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
