/* ═══════════════════════════════════════════════════════
   CLIKBIN — engineered storage
   ═══════════════════════════════════════════════════════ */

:root {
  /* palette */
  --ink:        #07060a;
  --void:       #0a0908;
  --char:       #14130f;
  --stone:      #1c1a16;
  --mist:       #8a857c;
  --bone:       #e8e2d6;
  --paper:      #f4efe6;
  --gold:       #c9a35a;
  --gold-soft:  #d9b87a;
  --gold-deep:  #8a6a2f;

  /* type */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* rhythm */
  --pad-x: clamp(20px, 5vw, 80px);
  --gutter: clamp(16px, 2.5vw, 32px);
  --section: clamp(80px, 12vw, 180px);

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.32em;
  font-size: 14px;
  color: var(--bone);
  font-feature-settings: "ss01" on;
}
.wordmark--sm { font-size: 12px; letter-spacing: 0.28em; }

/* SVG brand mark — uses official CLIKBIN logo */
.brand-logo {
  display: block;
  width: 116px;
  height: 24px;
  color: var(--bone);
  fill: currentColor;
  transition: color .3s ease;
}
.brand-logo:hover { color: var(--gold-soft); }

.footer-logo {
  display: block;
  width: 90px;
  height: 18px;
  color: var(--bone);
  fill: currentColor;
  opacity: 0.85;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 14px var(--pad-x);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
  opacity: 0.85;
}
.nav__links a { position: relative; padding: 4px 0; transition: opacity .3s ease; }
.nav__links a:hover { opacity: 1; color: var(--gold-soft); }

.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 20px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(201,163,90,0.18);
}
.nav__cta:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,163,90,0.28);
}

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--section) * 0.9) var(--pad-x) var(--section);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,163,90,0.08), transparent 60%),
    linear-gradient(180deg, #0a0908 0%, #07060a 100%);
}

.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* corner technical marks */
.hero__corner {
  position: absolute;
  width: 28px; height: 28px;
  color: var(--gold);
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
/* top corners shifted below the fixed nav to avoid logo collision */
.hero__corner--tl { top: 96px;   left: 24px; }
.hero__corner--tr { top: 96px;   right: 24px; }
.hero__corner--bl { bottom: 24px; left: 24px; }
.hero__corner--br { bottom: 24px; right: 24px; }

/* gold glow behind product */
.hero__glow {
  position: absolute;
  top: 55%; left: 50%;
  width: 80vw; max-width: 900px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,163,90,0.18) 0%, rgba(201,163,90,0.06) 30%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* huge ghosted backdrop — real CLIKBIN mark, stroke-only */
.hero__backdrop {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(48vw, 700px);
  height: auto;
  aspect-ratio: 745 / 144;
  fill: rgba(232, 226, 214, 0.045);
  stroke: rgba(232, 226, 214, 0.08);
  stroke-width: 2;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.hero__meta-mid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__meta-mid .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201,163,90,0.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-weight: 200;
  font-size: clamp(60px, 13vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  position: relative;
  z-index: 2;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line--italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  padding-left: clamp(40px, 10vw, 160px);
  letter-spacing: -0.025em;
  font-size: 1.02em;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 19px);
  max-width: 480px;
  color: var(--bone);
  opacity: 0.72;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero__media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 44vw, 540px);
}
.hero__product {
  position: relative;
  width: clamp(260px, 38vw, 480px);
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7)) drop-shadow(0 14px 40px rgba(201,163,90,0.25));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
.hero__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* feather the photo's studio background into the page */
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 35%, transparent 78%);
}
.hero__product-placeholder {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.hero__product--placeholder .hero__product-placeholder { display: flex; }

.placeholder-disc {
  width: 82%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #f8de8f 0%, #e2bd6c 25%, #b88a40 55%, #7a5520 85%, #4a3818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    inset 0 -14px 36px rgba(0,0,0,0.55),
    inset 0 6px 18px rgba(255,255,255,0.22),
    inset 0 0 0 1px rgba(255, 220, 150, 0.25);
}
/* machined ridge band */
.placeholder-disc::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(255,255,255,0.05) 0deg, rgba(0,0,0,0.05) 1deg, transparent 1deg 4deg),
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
}
.placeholder-disc__inner {
  position: relative;
  width: 78%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f5d68a, #c89a4d 60%, #7e5e2a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 -6px 16px rgba(0,0,0,0.35),
    inset 0 3px 8px rgba(255,255,255,0.2);
}
.placeholder-disc__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(80, 50, 10, 0.2);
}
.placeholder-disc__label {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(60, 40, 10, 0.55);
  font-size: clamp(14px, 2.6vw, 28px);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25), 0 -1px 0 rgba(0,0,0,0.2);
}
.placeholder-disc__shadow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

/* floating technical annotations */
.hero__anno {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: anno-in 1.2s var(--ease) 1.4s forwards;
  z-index: 2;
}
.hero__anno-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__anno--2 .hero__anno-line {
  background: linear-gradient(-90deg, var(--gold), transparent);
}
.hero__anno--1 {
  top: 8%;
  left: 18%;
}
.hero__anno--2 {
  top: 38%;
  right: 14%;
  flex-direction: row;
}
.hero__anno--3 {
  bottom: 12%;
  left: 22%;
}
@keyframes anno-in {
  to { opacity: 0.7; }
}
@media (max-width: 820px) {
  .hero__anno { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.hero__scroll-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--mist), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scroll-cue 2.4s var(--ease) infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(232,226,214,0.08);
  border-bottom: 1px solid rgba(232,226,214,0.08);
  padding: 22px 0;
  background: linear-gradient(90deg, #07060a 0%, #0c0a08 50%, #07060a 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 38s linear infinite;
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.015em;
  color: var(--bone);
  opacity: 0.85;
}
.marquee__dot {
  color: var(--gold);
  font-size: 0.5em;
  transform: translateY(-2px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════ STATEMENT ═══════════════ */
.statement {
  padding: var(--section) var(--pad-x);
  display: grid;
  grid-template-columns: clamp(120px, 18vw, 220px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  border-top: 1px solid rgba(232,226,214,0.06);
}
.statement__rail {
  position: sticky;
  top: 100px;
}
.statement__body {
  font-size: clamp(24px, 3.8vw, 52px);
  line-height: 1.25;
  font-weight: 200;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.statement__body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  font-size: 1.05em;
}

@media (max-width: 720px) {
  .statement { grid-template-columns: 1fr; }
  .statement__rail { position: static; }
}

/* ═══════════════ FEATURES ═══════════════ */
.features {
  padding: var(--section) var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
}
.features__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.features__title,
.collection__title,
.specs__title,
.buy__title,
.detail__title {
  /* shared headline em styling */
}
.features__title em,
.collection__title em,
.specs__title em,
.buy__title em,
.detail__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  font-size: 1.04em;
  letter-spacing: -0.025em;
}

.features__title {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.94;
  font-weight: 200;
  letter-spacing: -0.035em;
}

.features__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(232,226,214,0.06);
  border: 1px solid rgba(232,226,214,0.06);
}
.feature {
  background: var(--void);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
  transition: background .4s var(--ease);
}
.feature:hover { background: var(--char); }
.feature__num {
  color: var(--gold);
}
.feature__title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.feature__copy {
  font-size: 14.5px;
  color: var(--bone);
  opacity: 0.7;
  line-height: 1.6;
  margin-top: auto;
}

/* ═══════════════ COLLECTION ═══════════════ */
.collection {
  padding: var(--section) var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
  background: linear-gradient(180deg, var(--void) 0%, #0d0b09 100%);
}
.collection__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.collection__title {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.94;
  font-weight: 200;
  letter-spacing: -0.035em;
}
.collection__note {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: -8px;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}
.variant {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px) clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(232,226,214,0.06);
  transition: transform .6s var(--ease), border-color .6s var(--ease), background .6s var(--ease), box-shadow .6s var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.variant::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,163,90,0.6), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .6s var(--ease);
}
.variant:hover {
  transform: translateY(-6px);
  border-color: rgba(201,163,90,0.35);
  background: linear-gradient(180deg, rgba(201,163,90,0.04) 0%, rgba(255,255,255,0.005) 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.variant:hover::before { transform: scaleX(1); }
.variant:hover .variant__media::after { transform: translate(-50%, -52%) scale(1.06); }
.variant__media::after { transition: transform .8s var(--ease); }
.variant__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.variant__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.5));
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 40%, transparent 82%);
          mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 40%, transparent 82%);
}
.variant__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 75%, rgba(0,0,0,0.4), transparent 70%);
  pointer-events: none;
}
/* placeholder disc — sits behind <img>; image covers it once loaded */
.variant__media::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-shadow: inset 0 -8px 24px rgba(0,0,0,0.5), inset 0 4px 12px rgba(255,255,255,0.12);
  z-index: 0;
}
.variant__media img { position: relative; z-index: 1; }
.variant--gold   .variant__media::after { background: radial-gradient(circle at 30% 25%, #f3d68a, #c9a35a 50%, #6e5325); }
.variant--silver .variant__media::after { background: radial-gradient(circle at 30% 25%, #f5f3ee, #c4c0b8 55%, #6a685f); }
.variant--onyx   .variant__media::after { background: radial-gradient(circle at 30% 25%, #353330, #15140f 60%, #050505); }

.variant__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.variant__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.variant__finish { color: var(--mist); }
.variant__price {
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 13px;
}

/* ═══════════════ DETAIL ═══════════════ */
.detail {
  padding: var(--section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  border-top: 1px solid rgba(232,226,214,0.06);
}
.detail__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a1612, #0a0807);
  border: 1px solid rgba(232,226,214,0.06);
  position: relative;
  overflow: hidden;
}
.detail__media img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 50%, transparent 95%);
          mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 50%, transparent 95%);
}
.detail__media--placeholder::before {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f3d68a 0%, #c9a35a 35%, #8a6a2f 70%, #4a3818 100%);
  box-shadow: inset 0 -10px 30px rgba(0,0,0,0.6);
}
.detail__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail__title {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.detail__body {
  font-size: 16px;
  color: var(--bone);
  opacity: 0.72;
  line-height: 1.7;
  max-width: 50ch;
}

@media (max-width: 820px) {
  .detail { grid-template-columns: 1fr; }
}

/* ═══════════════ SPECS ═══════════════ */
.specs {
  padding: var(--section) var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
}
.specs__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
.specs__title {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.94;
  font-weight: 200;
  letter-spacing: -0.035em;
}
.specs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.spec {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(232,226,214,0.08);
  font-size: 14.5px;
}
.spec dt { color: var(--mist); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding-top: 3px; }
.spec dd { color: var(--bone); }

@media (min-width: 720px) {
  .specs__list { column-gap: 80px; }
  .spec:nth-last-child(2):nth-child(odd),
  .spec:last-child { /* no-op, just clarifying */ }
}

/* ═══════════════ BUY ═══════════════ */
.buy {
  padding: var(--section) var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,163,90,0.06), transparent 70%),
    var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.buy__title {
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.02;
  font-weight: 200;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: 0 auto;
}
.buy__copy {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--bone);
  opacity: 0.72;
  max-width: 52ch;
  line-height: 1.7;
}
.buy__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 24px;
}
.buy__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.buy__thumb {
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--char);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(232,226,214,0.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.buy__option:hover .buy__thumb {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(201,163,90,0.25);
}
.buy__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buy__option--gold   .buy__thumb { background: radial-gradient(circle at 30% 25%, #f3d68a, #c9a35a 50%, #6e5325); }
.buy__option--silver .buy__thumb { background: radial-gradient(circle at 30% 25%, #f5f3ee, #c4c0b8 55%, #6a685f); }
.buy__option--onyx   .buy__thumb { background: radial-gradient(circle at 30% 25%, #353330, #15140f 60%, #050505); }
.buy__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.buy__cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201,163,90,0.18);
}
.buy__cta:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}
.buy__cta-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding-left: 14px;
  border-left: 1px solid rgba(7,6,10,0.25);
  color: var(--ink);
  opacity: 0.7;
}
.buy__fine { opacity: 0.6; }

@media (max-width: 560px) {
  .buy__actions { flex-direction: column; align-items: center; }
  .buy__option { width: min(100%, 280px); }
  .buy__cta { justify-content: center; width: 100%; }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  padding: 40px var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__row--links { gap: 32px; }
.footer__row--links a {
  font-size: 13px;
  color: var(--mist);
  transition: color .25s ease;
}
.footer__row--links a:hover { color: var(--gold-soft); }

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
  padding: var(--section) var(--pad-x);
  border-top: 1px solid rgba(232,226,214,0.06);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.faq__title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 200;
  letter-spacing: -0.025em;
}
.faq__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  font-size: 1.04em;
  letter-spacing: -0.025em;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  padding: 28px 0;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.faq__item:last-child { border-bottom: 1px solid rgba(232,226,214,0.08); }
.faq__q {
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 12px;
}
.faq__a {
  color: var(--bone);
  opacity: 0.75;
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.faq__a a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,163,90,0.4); }
.faq__a a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
}

/* ═══════════════ CONTENT PAGE ═══════════════ */
.page {
  padding: clamp(120px, 14vw, 200px) var(--pad-x) var(--section);
  max-width: 760px;
  margin: 0 auto;
}
.page__label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-soft);
}
.page__title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  font-weight: 200;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.page__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  font-size: 1.04em;
}
.page__lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--bone);
  opacity: 0.78;
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 60ch;
}
.page__body { font-size: 16px; line-height: 1.8; color: var(--bone); }
.page__body h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 48px 0 14px;
}
.page__body p { margin-bottom: 16px; opacity: 0.82; max-width: 64ch; }
.page__body p:last-child { margin-bottom: 0; }
.page__body strong { color: var(--bone); font-weight: 500; opacity: 1; }
.page__body a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201,163,90,0.4);
  transition: color .25s var(--ease);
}
.page__body a:hover { color: var(--gold); }
.page__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.page__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  opacity: 0.82;
}
.page__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}
.page__updated {
  margin-top: 8px;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}
.page__email {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201,163,90,0.4);
}
.page__email:hover { color: var(--gold); }
.page__back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--mist);
  transition: color .25s var(--ease);
}
.page__back:hover { color: var(--gold-soft); }
.page__cta-row { margin-top: 48px; }
.page__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(201,163,90,0.18);
  transition: all .25s var(--ease);
}
.page__cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,163,90,0.28);
}

/* ═══════════════ JOURNAL INDEX ═══════════════ */
.journal-list {
  padding: 0 var(--pad-x) var(--section);
  max-width: 760px;
  margin: 0 auto;
}
.journal-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.journal-card {
  border-top: 1px solid rgba(232,226,214,0.08);
}
.journal-card:last-child { border-bottom: 1px solid rgba(232,226,214,0.08); }
.journal-card__link {
  display: block;
  padding: 36px 0;
  transition: padding-left .35s var(--ease);
}
.journal-card__link:hover { padding-left: 8px; }
.journal-card__date {
  display: block;
  margin-bottom: 14px;
  color: var(--mist);
}
.journal-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 14px;
  transition: color .25s var(--ease);
}
.journal-card__link:hover .journal-card__title { color: var(--gold-soft); }
.journal-card__excerpt {
  color: var(--bone);
  opacity: 0.72;
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 16px;
}
.journal-card__more {
  color: var(--gold-soft);
}

/* ═══════════════ ACCOUNT ═══════════════ */
.account__form {
  display: flex;
  gap: 8px;
  width: min(100%, 520px);
  margin-top: 8px;
  padding: 6px;
  border: 1px solid rgba(232,226,214,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: border-color .3s var(--ease);
}
.account__form:focus-within { border-color: var(--gold); }
.account__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--bone);
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
}
.account__form input::placeholder { color: var(--mist); }
.account__submit {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.account__submit:hover:not(:disabled) {
  background: var(--gold-soft);
  transform: translateY(-1px);
}
.account__submit:disabled { opacity: 0.6; cursor: default; }

.account__msg {
  margin-top: 16px;
  min-height: 1.4em;
  color: var(--mist);
}
.account__msg--ok  { color: var(--gold-soft); }
.account__msg--err { color: #d97a6c; }

.account__loading {
  color: var(--mist);
  margin-top: 8px;
}

.account__section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.account__section--actions {
  border-top: 0;
  padding-top: 16px;
  margin-top: 32px;
}
.account__section-title {
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.account__profile {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 8px 32px;
}
.account__profile div { display: contents; }
.account__profile dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,226,214,0.05);
}
.account__profile dd {
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,226,214,0.05);
  color: var(--bone);
}
.account__profile-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--mist);
  opacity: 0.8;
}

.account__signout {
  background: transparent;
  border: 1px solid rgba(232,226,214,0.18);
  color: var(--bone);
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: var(--mono);
  transition: all .25s var(--ease);
}
.account__signout:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.account__orders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account__orders-loading,
.account__orders-empty {
  color: var(--mist);
}
.account__orders-empty a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201,163,90,0.4);
}

.account__order {
  border: 1px solid rgba(232,226,214,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.015);
}
.account__order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--mist);
}
.account__order-id { color: var(--gold-soft); }
.account__order-items {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account__order-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
}
.account__order-item-qty { opacity: 0.5; }
.account__order-item-amt { color: var(--bone); }
.account__order-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.account__order-total { font-size: 18px; color: var(--bone); font-weight: 500; }

.account-verify .account__verify-actions { margin-top: 32px; }

/* ═══════════════ BUY BUTTON ═══════════════ */
.variant__buy {
  margin-top: 16px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(201,163,90,0.18);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.variant__buy:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,163,90,0.28);
}
.variant__buy:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

/* ═══════════════ CHECKOUT MODAL ═══════════════ */
.checkout {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.checkout[data-open] {
  opacity: 1;
  pointer-events: auto;
}
.checkout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.checkout__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(900px, 92vh);
  background: var(--void);
  border: 1px solid rgba(232, 226, 214, 0.10);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 163, 90, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(8px) scale(0.985);
  transition: transform .35s var(--ease);
}
.checkout[data-open] .checkout__panel { transform: none; }

.checkout__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.08);
  flex-shrink: 0;
}
.checkout__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.checkout__logo {
  width: 78px;
  height: 16px;
  color: var(--bone);
  fill: currentColor;
}
.checkout__variant {
  color: var(--gold-soft);
}
.checkout__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(232, 226, 214, 0.12);
  border-radius: 999px;
  color: var(--bone);
  transition: all .25s var(--ease);
}
.checkout__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.checkout__body {
  position: relative;
  flex: 1;
  min-height: 420px;
  overflow-y: auto;
  background: var(--void);
}
.checkout__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--mist);
  pointer-events: none;
}
.checkout__loading[hidden] { display: none; }
.checkout__spinner {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(232, 226, 214, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: checkout-spin 0.9s linear infinite;
}
@keyframes checkout-spin { to { transform: rotate(360deg); } }

.checkout__mount {
  min-height: 420px;
}
.checkout__mount:empty { display: none; }

.checkout__error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  padding: 24px;
  text-align: center;
}
.checkout__error[hidden] { display: none; }

body[data-checkout-open] { overflow: hidden; }

@media (max-width: 560px) {
  .checkout { padding: 0; }
  .checkout__panel {
    border-radius: 0;
    max-height: 100vh;
    width: 100%;
    height: 100vh;
  }
}
