:root {
  --ink: #080809;
  --ash: #141414;
  --bone: #f3eee4;
  --bone-soft: #d7cec0;
  --stone: #888278;
  --gold: #d8b65e;
  --line: rgba(243, 238, 228, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bone);
  background: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { border: 0; cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 24px;
  background: var(--ink);
  transition: opacity .55s ease, transform .8s cubic-bezier(.77, 0, .18, 1);
}
.intro-loader.done {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.intro-loader__mark,
.site-nav__brand,
h1, h2, h3,
.word-flood span,
.footer strong {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.intro-loader__mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 42px;
}
.intro-loader__copy {
  width: min(420px, 78vw);
  display: flex;
  justify-content: space-between;
  color: var(--bone-soft);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.intro-loader__bar {
  width: min(420px, 78vw);
  height: 2px;
  background: rgba(243, 238, 228, .18);
}
.intro-loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(8, 8, 9, .68), rgba(8, 8, 9, 0));
  transition: background .25s ease, border-color .25s ease;
}
.site-nav.solid {
  background: rgba(8, 8, 9, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-nav__brand { font-size: 26px; line-height: 1; }
.site-nav nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 44px);
}
.site-nav nav a,
.site-nav__bag,
.button,
.opening__scroll {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}
.site-nav nav a { color: var(--bone-soft); }
.site-nav nav a:hover { color: var(--gold); }
.site-nav__bag {
  min-height: 42px;
  padding: 0 14px;
  background: rgba(243, 238, 228, .08);
  border: 1px solid var(--line);
  color: var(--bone);
}

.progress-rail {
  position: fixed;
  z-index: 65;
  top: 50%;
  right: 18px;
  width: 2px;
  height: 180px;
  transform: translateY(-50%);
  background: rgba(243, 238, 228, .14);
}
.progress-rail span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--gold);
}

.opening {
  position: relative;
  min-height: 116svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px clamp(18px, 6vw, 72px) 90px;
}
.opening__panel {
  position: absolute;
  inset-block: 0;
  width: 54vw;
  will-change: transform;
}
.opening__panel picture {
  display: block;
  width: 100%;
  height: 100%;
}
.opening__panel--left {
  left: 0;
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}
.opening__panel--right {
  right: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .86;
}
.opening__panel img { filter: contrast(1.03) saturate(.9); }
.opening__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 40%, rgba(216, 182, 94, .14), transparent 28%),
    linear-gradient(90deg, rgba(8, 8, 9, .94), rgba(8, 8, 9, .18) 58%, rgba(8, 8, 9, .72)),
    linear-gradient(0deg, rgba(8, 8, 9, .92), rgba(8, 8, 9, 0) 52%);
}
.opening__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
h1 {
  margin: 0;
  font-size: clamp(76px, 15vw, 194px);
  line-height: .78;
}
h1 span {
  display: block;
  transform: translateY(30px);
  opacity: 0;
  animation: wordIn .85s cubic-bezier(.16, 1, .3, 1) forwards;
}
h1 span:nth-child(2) { animation-delay: .12s; }
h1 span:nth-child(3) { animation-delay: .24s; }
@keyframes wordIn {
  to { transform: translateY(0); opacity: 1; }
}
.opening__content > p:not(.kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--bone-soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.opening__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
.button--solid { background: var(--bone); color: var(--ink); }
.button--ghost { border: 1px solid var(--line); background: rgba(8, 8, 9, .2); color: var(--bone); }
.opening__scroll {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 54px);
  bottom: 42px;
  color: var(--bone-soft);
  writing-mode: vertical-rl;
}

.story {
  position: relative;
}
.story__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center end;
  padding: 88px clamp(18px, 6vw, 72px);
  pointer-events: none;
}
.stage-card {
  position: relative;
  width: min(52vw, 720px);
  height: min(74vh, 780px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ash);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}
.stage-card img {
  transform: scale(1.04);
  transition: opacity .35s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}
.stage-card.switching img { opacity: .18; transform: scale(1.12); }
.stage-card__grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 8, 9, .7), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: .34;
}
.stage-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--bone);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}
.stage-card__caption span { color: var(--gold); }
.story-chapter {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  pointer-events: none;
}
.story-chapter:first-of-type { margin-top: -100svh; }
.story-chapter div {
  max-width: 560px;
  padding: 34px 0;
  pointer-events: auto;
}
.story-chapter h2,
.section-copy h2,
.drop-room__sticky h2,
.growth__copy h2,
.members__card h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .88;
}
.story-chapter p:not(.kicker),
.section-copy,
.uniform-card p,
.drop-room__sticky p,
.growth p,
.members__card p {
  color: var(--bone-soft);
  line-height: 1.62;
}

.word-flood {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
}
.word-flood__line {
  display: flex;
  width: max-content;
  animation: slideLeft 26s linear infinite;
}
.word-flood__line--reverse { animation-direction: reverse; border-top: 1px solid rgba(8, 8, 9, .18); }
.word-flood span {
  padding: 16px 28px;
  white-space: nowrap;
  font-size: clamp(38px, 7vw, 94px);
  line-height: .92;
}
@keyframes slideLeft { to { transform: translateX(-50%); } }

.uniform {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0;
}
.section-copy {
  max-width: 760px;
  margin-bottom: 36px;
}
.uniform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.uniform-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  background: var(--ash);
}
.uniform-card img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}
.uniform-card:hover img { transform: scale(1.08); }
.uniform-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 9, .92), rgba(8, 8, 9, .12) 62%);
}
.uniform-card div {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 42px);
}
.uniform-card h3 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .9;
}
.uniform-card a,
.product-card button {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--line);
  width: max-content;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.drop-room {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 124px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
}
.drop-room__sticky {
  position: sticky;
  top: 112px;
  align-self: start;
}
.drop-room__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.drop-room__filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}
.drop-room__filters button.active { background: var(--bone); color: var(--ink); }
.drop-room__products {
  display: grid;
  gap: 18px;
}
.product-card {
  min-height: 460px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  border: 1px solid var(--line);
  background: rgba(243, 238, 228, .045);
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}
.product-card.in { opacity: 1; transform: translateY(0); }
.product-card__image { background: var(--ash); }
.product-card__content {
  display: grid;
  align-content: end;
  padding: clamp(22px, 4vw, 38px);
}
.product-card h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .9;
}
.product-card p { color: var(--bone-soft); line-height: 1.6; }
.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--stone);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.growth {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
}
.growth__media {
  min-height: 720px;
  background: var(--ash);
}
.growth__copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 76px);
}
.growth__list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.growth__list article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.growth__list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.growth__list h3 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 4vw, 48px);
}

.members {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 110px clamp(18px, 6vw, 72px);
  overflow: hidden;
}
.members__visual {
  position: absolute;
  inset: 0;
}
.members__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 9, .94), rgba(8, 8, 9, .28)), linear-gradient(0deg, rgba(8, 8, 9, .92), transparent 54%);
}
.members__card {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.member-form {
  display: grid;
  grid-template-columns: 1.1fr .8fr auto;
  gap: 10px;
  margin-top: 28px;
}
.member-form__field {
  display: grid;
  gap: 7px;
}
.member-form__field span,
.member-form__consent,
.member-form__trap {
  color: var(--bone-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.member-form input,
.member-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 9, .7);
  color: var(--bone);
  padding: 0 14px;
}
.member-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.member-form__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}
.member-form__consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}
.member-form__turnstile {
  grid-column: 1 / -1;
  max-width: 100%;
}
.member-form button:disabled {
  cursor: wait;
  opacity: .68;
}
.member-form__note {
  min-height: 24px;
  margin-top: 14px;
  color: var(--gold);
}
.member-form__note[data-tone="error"] { color: #ff9b85; }
.member-form__note[data-tone="success"] { color: #d8b65e; }

.cart {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart.open { opacity: 1; pointer-events: auto; }
.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--ink);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.cart.open .cart__panel { transform: translateX(0); }
.cart__top,
.cart__bottom { padding: 22px; }
.cart__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart__top h2 { margin: 0; font-size: 46px; }
.cart__top button {
  background: transparent;
  color: var(--stone);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}
.cart__items { overflow: auto; padding: 8px 22px; }
.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img { aspect-ratio: 4 / 5; }
.cart-line h3 {
  margin: 0 0 4px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  text-transform: none;
}
.cart-line p { margin: 0 0 10px; color: var(--stone); font-size: 12px; }
.cart-line button {
  padding: 0;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
}
.cart__bottom {
  border-top: 1px solid var(--line);
}
.cart__bottom > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 18px;
}
.cart__bottom p { color: var(--stone); line-height: 1.5; font-size: 13px; }
.cart__bottom .button { width: 100%; margin-top: 12px; }

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--stone);
}
.footer strong { color: var(--bone); font-size: 30px; }

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

@media (max-width: 980px) {
  .site-nav { grid-template-columns: auto auto; }
  .site-nav nav { display: none; }
  .progress-rail { display: none; }
  .opening {
    min-height: 100svh;
    align-items: end;
  }
  .opening__panel {
    inset: 0;
    width: 100%;
    opacity: .9;
    clip-path: none;
  }
  .opening__panel--left {
    width: 100%;
    clip-path: none;
  }
  .opening__panel--left img {
    object-position: 55% center;
  }
  .opening__panel--right { display: none; }
  .opening__shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 9, .5), rgba(8, 8, 9, .2) 28%, rgba(8, 8, 9, .86) 72%, rgba(8, 8, 9, .98)),
      linear-gradient(90deg, rgba(8, 8, 9, .88), rgba(8, 8, 9, .34) 58%, rgba(8, 8, 9, .78));
  }
  .opening__content {
    width: min(100%, 640px);
  }
  .story { min-height: auto; }
  .story__stage {
    position: relative;
    height: auto;
    display: block;
    padding: 72px 18px 0;
  }
  .stage-card {
    width: 100%;
    height: 62svh;
  }
  .story-chapter,
  .story-chapter:first-of-type {
    min-height: auto;
    margin: 0 auto;
    padding: 64px 0;
  }
  .uniform__grid,
  .drop-room,
  .growth {
    grid-template-columns: 1fr;
  }
  .drop-room__sticky { position: static; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__image { aspect-ratio: 4 / 5; }
  .growth__media { min-height: 520px; }
  .member-form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 14px;
    grid-template-columns: 1fr auto;
    padding: 16px 18px;
  }
  .site-nav__brand { font-size: 22px; }
  .site-nav__bag {
    min-height: 40px;
    min-width: 82px;
    padding: 0 13px;
    background: rgba(8, 8, 9, .46);
    backdrop-filter: blur(12px);
  }
  .opening {
    min-height: 100svh;
    padding: 104px 20px 34px;
  }
  .opening__content {
    display: grid;
    align-content: end;
    min-height: calc(100svh - 138px);
    padding-bottom: max(88px, env(safe-area-inset-bottom));
  }
  .opening__panel--left img { object-position: 50% center; }
  .opening__shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 9, .6), rgba(8, 8, 9, .12) 25%, rgba(8, 8, 9, .62) 57%, rgba(8, 8, 9, .98)),
      linear-gradient(90deg, rgba(8, 8, 9, .82), rgba(8, 8, 9, .22) 58%, rgba(8, 8, 9, .74));
  }
  .kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: .16em;
  }
  h1 {
    max-width: 330px;
    font-size: clamp(68px, 20vw, 88px);
    line-height: .82;
  }
  .opening__content > p:not(.kicker) {
    max-width: 360px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.48;
  }
  .opening__actions { display: grid; grid-template-columns: 1fr; }
  .opening__actions {
    gap: 10px;
    margin-top: 24px;
  }
  .opening__actions .button {
    min-height: 54px;
  }
  .opening__scroll { display: none; }
  .word-flood span { padding: 14px 18px; }
  .uniform { padding: 82px 0; }
  .uniform-card { min-height: 560px; }
  .drop-room { padding-bottom: 84px; }
  .product-card { min-height: 0; }
  .members { padding: 86px 18px; }
  .footer { display: grid; }
}
