/* ============================================================
   AURUM — performance couture
   dark / gold design system
   ============================================================ */

:root {
  --bg: #0a0908;
  --bg-soft: #0f0d0a;
  --surface: #14110c;
  --line: rgba(212, 168, 67, 0.16);
  --line-strong: rgba(212, 168, 67, 0.38);
  --gold: #d4a843;
  --gold-bright: #e8c168;
  --gold-deep: #9a7424;
  --gold-grad: linear-gradient(115deg, #f6e27a 0%, #e8c168 28%, #b4842c 58%, #f0d98c 100%);
  --cream: #f2e9d8;
  --muted: #988c76;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --pad: clamp(20px, 5vw, 80px);
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--gold); color: #14110c; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2517; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px; }

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

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  background: var(--gold); color: #14110c; font-weight: 700;
  padding: 10px 18px; border-radius: 4px;
  transform: translateY(-200%); transition: transform 0.25s;
}
.skip-link:focus { transform: none; }

/* ---------- film grain ---------- */
.noise {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader__inner { display: grid; justify-items: center; gap: 18px; }
.preloader__mark { color: var(--gold-bright); }
.preloader__count {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem); line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.preloader__pct { font-size: 0.5em; }
.preloader__bar {
  width: min(260px, 60vw); height: 1px; background: var(--line);
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
}
.preloader__tag {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 250;
  pointer-events: none; border-radius: 50%;
  display: none;
}
.cursor-dot {
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--gold-bright);
}
.cursor-ring {
  width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border: 1px solid var(--line-strong);
  display: none; place-items: center;
  transition: background-color 0.3s, border-color 0.3s;
}
.cursor-ring__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #14110c;
  opacity: 0; transition: opacity 0.2s;
}
.cursor-ring.is-view {
  background: var(--gold-bright); border-color: var(--gold-bright);
}
.cursor-ring.is-view .cursor-ring__label { opacity: 1; }
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-dot { display: block; }
  .cursor-ring { display: grid; }
  /* the gold cursor replaces the native one entirely */
  *, *::before, *::after { cursor: none !important; }
}

/* ---------- navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background-color 0.4s, border-color 0.4s, transform 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(10, 9, 8, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: 0.22em;
  color: var(--cream);
}
.nav__logo svg { color: var(--gold-bright); }
.nav__links { display: flex; gap: clamp(18px, 3vw, 44px); }
.nav__link {
  position: relative;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); padding: 8px 2px;
  transition: color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__bag {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
}
.nav__bag-count {
  display: grid; place-items: center;
  min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 11px;
  background: var(--gold-grad); color: #14110c;
  font-size: 11px; font-weight: 700; letter-spacing: 0;
}
.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out);
}
.burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- fullscreen menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg-soft);
  display: flex; flex-direction: column; justify-content: center; gap: 8vh;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__links { display: grid; gap: 4px; }
.menu__link {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 6.4vw, 4rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--cream); line-height: 1.15;
}
.menu__link em {
  font-family: var(--font-serif); font-size: 0.35em;
  color: var(--gold); letter-spacing: 0.1em;
}
.menu__link:active { color: var(--gold-bright); }
.menu__foot { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 17px 38px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  border-radius: 2px; overflow: hidden;
  transition: color 0.35s;
}
.btn span { position: relative; z-index: 1; }
.btn--gold { background: var(--gold-grad); color: #14110c; }
.btn--gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-110%);
}
.btn--gold:hover::after { transition: transform 0.7s var(--ease-out); transform: translateX(110%); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--cream); }
.btn--ghost::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold-grad);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}
.btn--ghost:hover { color: #14110c; }
.btn--ghost:hover::after { transform: scaleY(1); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 105%, rgba(212, 168, 67, 0.14), transparent 60%),
    radial-gradient(80% 50% at 50% -10%, rgba(212, 168, 67, 0.05), transparent 60%),
    var(--bg);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10, 9, 8, 0.55), transparent 30%, transparent 75%, var(--bg) 100%),
    radial-gradient(60% 50% at 50% 44%, rgba(10, 9, 8, 0.38), transparent 75%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 4vh) var(--pad) 0;
}
.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3.2vh;
}
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 9.2vw, 9rem);
  line-height: 0.99; letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero__line { display: block; overflow: hidden; padding: 0.04em 0.1em; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__line:nth-child(1) .hero__line-inner {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__line--outline .hero__line-inner {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 193, 104, 0.6);
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none;
  font-size: 0.82em;
  color: var(--cream);
  margin-right: 0.06em;
}
.hero__sub {
  margin: 3.4vh auto 0; max-width: 560px;
  color: var(--muted); font-size: clamp(14px, 1.5vw, 16px); font-weight: 500;
}
.hero__cta {
  margin-top: 4.5vh;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero__foot {
  position: relative; z-index: 2;
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--pad) 26px;
}
.hero__foot-item {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  animation: scrollPulse 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); white-space: nowrap;
  padding: 0 28px;
}
.marquee__group i { font-style: normal; color: var(--gold); font-size: 12px; }

/* ---------- shared section bits ---------- */
.section { padding: clamp(90px, 13vh, 160px) var(--pad); }
.section__head {
  display: grid; gap: 14px;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.section__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold);
}
.section__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.015em; text-transform: uppercase;
}
.section__note { color: var(--muted); font-size: 14px; max-width: 380px; }
.split-words .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split-words .w > span { display: inline-block; will-change: transform; }

/* ---------- collections ---------- */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}
.ccard {
  position: relative; display: block;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.ccard:nth-child(even) { transform: translateY(clamp(20px, 3vw, 48px)); }
.ccard__media {
  aspect-ratio: 3 / 4.1; overflow: hidden;
}
.ccard__media img {
  filter: grayscale(0.2) sepia(0.14) saturate(0.92) contrast(1.06) brightness(0.84);
  transform: scale(1.04);
  transition: transform 1s var(--ease-out), filter 1s;
  will-change: transform;
}
.ccard:hover .ccard__media img {
  transform: scale(1.12);
  filter: grayscale(0) sepia(0.1) saturate(1) contrast(1.06) brightness(0.95);
}
.ccard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.88) 0%, transparent 45%);
}
.ccard__meta {
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
}
.ccard__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem); text-transform: uppercase; letter-spacing: 0.02em;
}
.ccard__count { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.ccard__arrow {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright); font-size: 16px;
  transform: rotate(-45deg);
  transition: transform 0.45s var(--ease-out), background-color 0.35s, color 0.35s;
}
.ccard:hover .ccard__arrow {
  transform: rotate(0deg);
  background: var(--gold-bright); color: #14110c; border-color: var(--gold-bright);
}

/* ---------- the drop (horizontal) ---------- */
.drop { position: relative; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.drop__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 20px) 0 40px;
  overflow: hidden;
}
.drop__head {
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 30px;
  margin-bottom: clamp(28px, 5vh, 56px);
}
.drop__head .section__eyebrow { grid-column: 1 / -1; }
.drop__progress {
  width: min(240px, 26vw); height: 1px; margin-bottom: 14px;
  background: var(--line); overflow: hidden;
}
.drop__progress span {
  display: block; height: 100%; width: 100%;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
}
/* native swipe by default; JS switches to pinned horizontal scroll on desktop */
.drop__viewport {
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.drop__viewport::-webkit-scrollbar { display: none; }
.drop--pinned .drop__viewport { overflow: visible; }
.pcard, .drop__intro { scroll-snap-align: start; scroll-margin-left: var(--pad); }
.drop__track {
  display: flex; align-items: stretch;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.drop__intro {
  width: clamp(260px, 30vw, 420px);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  flex-shrink: 0;
}
.drop__intro-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.15; text-transform: uppercase;
}
.drop__intro-text em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.drop__intro-note { color: var(--muted); font-size: 14px; max-width: 320px; }
.pcard {
  width: clamp(240px, 24vw, 360px);
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}
.pcard:hover { border-color: var(--line-strong); transform: translateY(-6px); }
.pcard__media {
  position: relative; aspect-ratio: 3 / 3.4; overflow: hidden;
}
.pcard__media img {
  filter: sepia(0.12) saturate(0.95) contrast(1.04) brightness(0.92);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.pcard:hover .pcard__media img { transform: scale(1.07); }
.pcard__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px;
  background: rgba(10, 9, 8, 0.75);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-bright);
}
.pcard__add {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #14110c;
  font-size: 22px; line-height: 1; font-weight: 500;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s, transform 0.45s var(--ease-out), scale 0.2s;
}
.pcard:hover .pcard__add, .pcard__add:focus-visible { opacity: 1; transform: translateY(0); }
.pcard__add:active { scale: 0.88; }
.pcard__info {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
  display: grid; gap: 3px;
}
.pcard__edition { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.pcard__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.01em; }
.pcard__price { font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--gold-bright); }

/* ---------- craft / atelier ---------- */
.craft { background: var(--bg); }
.craft__head {
  display: grid; gap: 14px;
  max-width: 1500px; margin: 0 auto clamp(44px, 7vh, 90px);
}
.craft__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  max-width: 1500px; margin: 0 auto;
}
.craft__grid > * { min-width: 0; }
.craft__media { position: relative; }
.craft__img { overflow: hidden; border: 1px solid var(--line); }
.craft__img img { filter: sepia(0.1) saturate(0.95) contrast(1.05) brightness(0.9); }
.craft__img--main { aspect-ratio: 3 / 3.8; }
.craft__img--main img { height: 116%; }
.craft__img--detail {
  position: absolute; right: max(-30px, -3vw); bottom: -56px;
  width: 42%; aspect-ratio: 3 / 3.6;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.craft__img--detail img { height: 118%; }
.craft__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.3rem, 5.5vw, 4.4rem);
  line-height: 1.04; text-transform: uppercase; letter-spacing: -0.01em;
}
.craft__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: lowercase;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.craft__copy { color: var(--muted); max-width: 480px; margin-bottom: 40px; }
.craft__stats {
  list-style: none;
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 44px;
}
.stat {
  display: flex; align-items: baseline; gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1;
  min-width: 3.4ch;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat__label { color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }

/* ---------- banner ---------- */
.banner {
  position: relative; height: clamp(420px, 78vh, 760px);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.banner__media { position: absolute; inset: 0; }
.banner__media img {
  height: 120%;
  filter: grayscale(0.3) sepia(0.22) saturate(0.85) contrast(1.08) brightness(0.42);
}
.banner__lines { position: relative; z-index: 2; display: grid; gap: 1vh; }
.banner__line {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 9vw, 8.5rem); line-height: 1;
  text-transform: uppercase; white-space: nowrap;
  will-change: transform;
}
.banner__line--a {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 193, 104, 0.75);
}
.banner__line--b {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- circle / membership ---------- */
.circle {
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  padding-top: clamp(110px, 16vh, 190px);
  padding-bottom: clamp(110px, 16vh, 190px);
}
.circle__bg { position: absolute; inset: 0; }
.circle__bg img { filter: saturate(0.6) sepia(0.3) contrast(1.1) brightness(0.26); }
.circle__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 90% at 50% 50%, transparent 30%, var(--bg) 95%);
}
.circle__card {
  position: relative; z-index: 2;
  width: min(720px, 100%);
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  background: rgba(15, 13, 10, 0.72);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(232, 193, 104, 0.25);
}
.circle__card .section__eyebrow { margin-bottom: 16px; }
.circle__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 18px;
}
.circle__copy { color: var(--muted); max-width: 480px; margin: 0 auto 34px; }
.circle__form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.circle__input {
  flex: 1 1 260px; max-width: 340px;
  padding: 16px 20px;
  background: rgba(10, 9, 8, 0.6);
  border: 1px solid var(--line); border-radius: 2px;
  color: var(--cream); font: inherit; font-size: 14px;
  transition: border-color 0.3s;
}
.circle__input::placeholder { color: #6d6354; }
.circle__input:focus { outline: none; border-color: var(--gold); }
.circle__note { margin-top: 22px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- footer ---------- */
.footer {
  position: relative;
  padding: clamp(60px, 9vh, 110px) var(--pad) 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}
.footer__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 13.2vw, 13.2rem);
  line-height: 0.8; letter-spacing: 0.02em; text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 193, 104, 0.22);
  user-select: none;
  margin-bottom: clamp(50px, 8vh, 90px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
  max-width: 1500px; margin: 0 auto;
  padding-bottom: clamp(40px, 6vh, 70px);
}
.footer__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem); line-height: 1.3;
  text-transform: uppercase;
}
.footer__tag em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.footer__social { display: flex; gap: 12px; margin-top: 26px; }
.footer__social a {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.footer__social a:hover { color: #14110c; background: var(--gold-bright); border-color: var(--gold-bright); }
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.footer__col a { color: var(--muted); font-size: 14px; width: fit-content; transition: color 0.25s; }
.footer__col a:hover { color: var(--cream); }
.footer__legal {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 1500px; margin: 0 auto;
}
.footer__legal p { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #6d6354; }

/* ---------- bag drawer ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(5, 4, 3, 0.6);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.35s;
}
.scrim.is-on { opacity: 1; }
.bagdrawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(440px, 100vw);
  background: var(--bg-soft);
  border-left: 1px solid var(--line-strong);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.5);
  transform: translateX(102%);
  transition: transform 0.55s var(--ease-out);
}
.bagdrawer.is-open { transform: none; }
.bagdrawer__inner {
  height: 100%; overflow-y: auto;
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
}
.bagdrawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.bagdrawer__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; text-transform: uppercase; line-height: 1.1;
  margin-top: 6px;
}
.bagdrawer__close {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 2px;
  display: grid; place-items: center; font-size: 15px; color: var(--muted);
  transition: color 0.25s, border-color 0.25s;
}
.bagdrawer__close:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.bagdrawer__items { display: grid; }
.bagitem {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.bagitem__img {
  width: 52px; height: 62px; object-fit: cover; border: 1px solid var(--line);
  filter: sepia(0.12) saturate(0.95) contrast(1.04) brightness(0.92);
}
.bagitem__name { font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.bagitem__price { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--gold-bright); margin-top: 2px; }
.bagitem__qty { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.bagitem__qty button {
  width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 2px;
  display: grid; place-items: center; font-size: 13px; line-height: 1; color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.bagitem__qty button:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.bagitem__qty b { min-width: 16px; text-align: center; font-size: 13px; }
.bagitem__remove {
  margin-left: 4px; color: var(--faint); font-size: 13px;
  transition: color 0.2s;
}
.bagitem__remove:hover { color: var(--rust, #c2654a); }
.bagdrawer__empty {
  padding: 48px 10px; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--muted);
}
.bagdrawer__checkout { display: grid; gap: 14px; margin-top: auto; }
.bagdrawer__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 6px; border-top: 1px solid var(--line-strong);
  font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
}
.bagdrawer__total b {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.bagdrawer__form { display: grid; gap: 10px; }
.bagdrawer__form .circle__input { max-width: none; }
.bagdrawer__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bagdrawer__note {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.bagdrawer__success {
  display: grid; gap: 14px; justify-items: center; text-align: center;
  padding: 36px 0;
}
.bagdrawer__success-no {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.bagdrawer__success p { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--muted); max-width: 280px; }
.bagdrawer__success p.bagdrawer__success-no {
  font-family: var(--font-display); font-style: normal; font-size: 1.6rem; max-width: none;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* sold-out product cards */
.pcard.is-soldout .pcard__add { opacity: 0.25 !important; pointer-events: none; transform: none; }
.pcard.is-soldout .pcard__media::after {
  content: "Sold out";
  position: absolute; top: 14px; right: 14px;
  padding: 6px 12px;
  background: rgba(10, 9, 8, 0.75);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(194, 101, 74, 0.45);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: #c2654a;
}

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 150;
  transform: translate(-50%, 140%);
  padding: 14px 26px;
  background: rgba(15, 13, 10, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap; max-width: 92vw; overflow: hidden; text-overflow: ellipsis;
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
}
.toast.is-on { transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .ccard:nth-child(even) { transform: none; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__img--detail { bottom: -30px; }
  .craft__body { padding-top: 56px; }

  /* horizontal drop uses native swipe below the pin breakpoint */
  .drop__pin { min-height: 0; padding: clamp(70px, 10vh, 110px) 0; }
  .pcard { width: min(78vw, 340px); }
  .pcard__add { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__bag-label { display: none; }
  .burger { display: flex; }
  .hero__cta .btn { width: min(320px, 86vw); }
  .hero__foot { justify-content: center; }
  .hero__foot-item { display: none; }
  .collections__grid { grid-template-columns: 1fr; }
  .ccard__media { aspect-ratio: 3 / 3.4; }
  .drop__head { grid-template-columns: 1fr; align-items: start; }
  .drop__progress { display: none; }
  .drop__intro { width: 82vw; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__legal { justify-content: center; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .noise { animation: none; }
  .hero__canvas { display: none; }
  .preloader { display: none; }
}
