/* GLITZER — chrome, static, black & white. One stylesheet for every page. */

:root {
  --bg: #050505;
  --bg-2: #0d0d0e;
  --ink: #edebe6;
  --mute: #8b8984;
  --line: rgba(237, 235, 230, 0.12);
  --line-2: rgba(237, 235, 230, 0.28);
  --gold: #c9a961;
  --err: #e0766a;
  --chrome: linear-gradient(180deg, #ffffff 0%, #c9ccd2 30%, #55585e 48%, #1c1d20 52%, #9a9da3 70%, #f4f5f7 100%);
  --display: "Cinzel", "Times New Roman", serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --surface: #0f0f10;
  --surface-2: #1c1c1e;
  --live: #1affa3;
  --r: 12px;
  --r-sm: 8px;
  color-scheme: dark;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -1%); }
}
main { flex: 1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
button:disabled { cursor: not-allowed; opacity: 0.4; }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }
::selection { background: var(--ink); color: var(--bg); }
[hidden] { display: none !important; }

.wrap { width: min(1320px, 100%); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow, .opt-label, .pill, .bar-btn, .nav a, dt, h4 {
  font: 400 11px/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.cap, :is(.head, .legal-hero, .state, .manifesto, .join, .checkout, .contact, .review-write) .eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 40px;
  background: var(--surface-2);
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8f8f8f;
}
a.cap { transition: color 0.2s, background 0.2s; }
a.cap:hover { color: var(--ink); background: #2a2a2d; }
.link { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: border-color 0.2s; }
.link:hover { border-color: var(--ink); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 60; background: var(--ink); color: var(--bg); padding: 8px 12px; }
.empty { padding: 48px 0; text-align: center; color: var(--mute); font-family: var(--mono); font-size: 13px; line-height: 2; }

/* ---------- buttons & fields ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.btn::before { /* chrome sweep on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover:not(:disabled)::before { transform: translateX(120%); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.arrow { padding-right: 7px; gap: 18px; }
.btn.arrow::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.1);
  font: 400 16px/1 var(--sans);
  letter-spacing: 0;
  transition: transform 0.5s var(--ease), background 0.3s;
}
.btn.ghost.arrow::after { background: var(--surface-2); }
.btn.arrow:hover:not(:disabled)::after { transform: rotate(-45deg); }
.btn.arrow:disabled::after { display: none; }

.field { display: grid; gap: 8px; }
.field span { font: 400 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
input[type="email"], input[type="text"], input[type="number"], textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--ink); background: rgba(255, 255, 255, 0.03); }
textarea { resize: vertical; min-height: 120px; }
select {
  appearance: none;
  padding-right: 36px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23edebe6'/%3E%3C/svg%3E") no-repeat right 14px center;
}
select option { background: var(--bg); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form { display: grid; gap: 16px; }
.note { min-height: 1.4em; margin: 0; font: 400 12px/1.5 var(--mono); color: var(--mute); }
.note.ok { color: var(--gold); }
.note.err { color: var(--err); }

/* ---------- header ---------- */

.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.scrolled .bar, .nav-open .bar { background: rgba(5, 5, 5, 0.82); backdrop-filter: blur(14px); border-color: var(--line); }
.logo { font: 700 15px/1 var(--display); letter-spacing: 0.24em; white-space: nowrap; }
.logo span { display: inline-block; margin-right: 10px; transition: transform 0.6s var(--ease); }
.logo:hover span { transform: rotate(180deg); }
.nav { display: flex; gap: 28px; margin: 0 auto; }
.nav a { position: relative; padding: 6px 0; transition: color 0.2s; }
.nav a:hover, .nav a[aria-current] { color: var(--ink); }
.nav a[aria-current]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); }
.bar-btn { color: var(--ink); padding: 8px 0; }
.bar-btn .count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0;
}
.menu-btn { display: none; }

/* ---------- home: hero ---------- */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 64px);
  margin-top: -64px;
  padding: 120px var(--gutter) 80px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/images/genesis-creation.jpg") center / cover;
  filter: grayscale(1) contrast(1.2) brightness(0.35);
  animation: drift 30s ease-in-out infinite alternate;
}
.hero::before { /* perspective grid + vignette */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 20%, var(--bg) 78%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px);
}
.hero-logo {
  --flare: 0.14;
  position: relative;
  width: clamp(120px, 22vw, 200px);
  aspect-ratio: 1;
  margin: 0 auto 8px;
  cursor: grab;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, var(--flare)));
}
.hero-logo::before { /* halo behind the chrome */
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.10), transparent 70%);
  animation: halo 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes halo { from { transform: scale(0.85); opacity: 0.6; } to { transform: scale(1.1); opacity: 1; } }
.hero-logo:active { cursor: grabbing; }
.hero-logo canvas { position: absolute; inset: -35%; width: 170%; height: 170%; pointer-events: none; opacity: 0; transition: opacity 1s var(--ease); }
.hero-logo.ready canvas { opacity: 1; }
.hero-logo > span { /* shown until WebGL is up, and if it never is */
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(72px, 13vw, 120px);
  color: var(--ink);
  transition: opacity 0.6s;
}
.hero-logo.ready > span { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .hero-logo::before { animation: none; } }
@keyframes drift { to { transform: scale(1.12) translateY(-2%); } }
.hero .eyebrow { color: var(--ink); opacity: 0.8; }
.hero h1 {
  margin: 20px 0 8px;
  font: 700 clamp(64px, 17vw, 240px)/0.85 var(--display);
  letter-spacing: 0.02em;
  background: var(--chrome);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.12));
}
@keyframes shine { to { background-position: 0 100%; } }
.hero p { max-width: 560px; margin: 16px auto 36px; color: #bdbab3; font-size: 17px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-meta {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  font: 400 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- marquee ---------- */

.marquee { display: flex; overflow: hidden; border-block: 1px solid var(--line); user-select: none; }
.marquee div {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding: 18px 20px;
  font: 600 clamp(18px, 2.4vw, 28px)/1 var(--display);
  letter-spacing: 0.14em;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee i { font-style: normal; color: var(--mute); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- sections ---------- */

.section { padding: clamp(72px, 10vw, 140px) 0; }
.head { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.head h2, .page-title {
  margin: 14px 0 0;
  font: 600 clamp(36px, 6vw, 80px)/0.95 var(--display);
  letter-spacing: 0.02em;
}
.head p { max-width: 380px; margin: 0; color: var(--mute); }



/* ---------- manifesto & newsletter ---------- */

.manifesto { max-width: 1000px; }
.manifesto blockquote { margin: 24px 0 0; font: 500 clamp(26px, 4vw, 52px)/1.2 var(--display); }
.manifesto em { font-style: normal; -webkit-box-decoration-break: clone; box-decoration-break: clone; background: linear-gradient(180deg, #fff, #8e9197); -webkit-background-clip: text; background-clip: text; color: transparent; }
.join { text-align: center; border-top: 1px solid var(--line); background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.07), transparent 60%); }
.join p { max-width: 460px; margin: 16px auto 32px; color: var(--mute); }
.join .form { grid-template-columns: 1fr auto; gap: 0; max-width: 520px; margin: 0 auto; }
.join .note { grid-column: 1 / -1; margin-top: 12px; text-align: center; }

/* ---------- shop grid & cards ---------- */

.toolbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 40px;
  border-radius: 999px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 8px 16px; border-radius: 40px; border: 1px solid var(--line); color: var(--mute); transition: all 0.2s; }
.pill:hover { color: var(--ink); border-color: var(--line-2); }
.pill[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.toolbar-end { display: flex; align-items: center; gap: 16px; padding-right: 4px; font: 400 12px/1 var(--mono); color: var(--mute); }
.toolbar select { width: auto; min-height: 38px; padding-block: 6px; font-size: 13px; }

/* frosted glass — used sparingly: the pane behind each piece, price pills, toolbar */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 56px 24px; }
.card { position: relative; animation: rise 0.8s var(--ease) both; }
.card:nth-child(4n + 2) { animation-delay: 0.08s; }
.card:nth-child(4n + 3) { animation-delay: 0.16s; }
.card:nth-child(4n + 4) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; translate: 0 24px; } }

/* stage for a piece: numeral → glass pane → halo → cutout → detail glow → glare */
.card-media, .stage {
  --x: 50%;
  --y: 40%;
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.035)),
    radial-gradient(120% 80% at 50% 100%, #19191c, var(--bg) 72%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--r);
  box-shadow: /* glass case: lit top edge, thin inner rim, soft floor shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 1px 0 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 -30px 60px -30px rgba(255, 255, 255, 0.05),
    0 30px 60px -34px rgba(0, 0, 0, 0.9);
  transition: border-color 0.5s, box-shadow 0.5s;
}

/* seven looks — one glass shape per creation day: width / aspect / radius / tilt */
.card-media, .stage { --pw: 70%; --pa: 4 / 5; --pr: 28px; --tilt: -4deg; }
[data-look="1"] { --pw: 74%; --pa: 1; --pr: 50%; --tilt: 0deg; }                         /* disc */
[data-look="2"] { --pw: 62%; --pa: 3 / 4; --pr: 999px 999px 18px 18px; --tilt: 0deg; }   /* gothic arch */
[data-look="3"] { --pw: 58%; --pa: 1; --pr: 22px; --tilt: 45deg; }                        /* diamond */
[data-look="4"] { --pw: 44%; --pa: 9 / 19; --pr: 999px; --tilt: 8deg; }                   /* capsule */
[data-look="5"] { --pw: 82%; --pa: 16 / 11; --pr: 50%; --tilt: -7deg; }                   /* lozenge */
[data-look="6"] { --pw: 60%; --pa: 5 / 7; --pr: 999px 999px 24px 24px; --tilt: 5deg; }    /* leaning arch */
.card:hover .card-media {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -30px 60px -30px rgba(255, 255, 255, 0.08),
    0 0 40px -10px rgba(255, 255, 255, 0.08),
    0 30px 60px -34px rgba(0, 0, 0, 0.9);
}
.numeral {
  position: absolute;
  inset: 0;
  z-index: -2;
  padding: 3cqi 0 0 5cqi;
  font: 700 38cqi/0.9 var(--display); /* peeks out above the pane, frosted behind it */
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  user-select: none;
}
.card-media::before, .stage::before { /* the glass pane the piece floats in front of */
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: var(--pw);
  max-height: 80%;
  aspect-ratio: var(--pa);
  translate: -50% -50%;
  z-index: -1;
  border-radius: var(--pr);
  background:
    linear-gradient(118deg, transparent 22%, rgba(255, 255, 255, 0.07) 23%, rgba(255, 255, 255, 0.02) 31%, transparent 32%), /* reflection streak */
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.06));
  /* -webkit-backdrop-filter: blur(12px) saturate(1.4) brightness(1.08); */
  /* backdrop-filter: blur(12px) saturate(1.2) brightness(1.08); */
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
  /* box-shadow: /* bevelled edge: bright top-left, darker bottom-right, glow inside */ */
  /*   inset 1px 1px 0 rgba(255, 255, 255, 0.28), */
  /*   inset -1px -1px 0 rgba(255, 255, 255, 0.06), */
  /*   inset 0 0 24px rgba(255, 255, 255, 0.05), */
  /*   0 20px 50px -20px rgba(0, 0, 0, 0.7); */
  transform: rotate(var(--tilt));
  transition: transform 1.2s var(--ease);
}
.card:hover .card-media::before { transform: rotate(calc(var(--tilt) + 3deg)) scale(1.04); }
.card-media img, .stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 11%;
  transition: transform 1s var(--ease), opacity 0.6s;
}
/* .halo { filter: blur(36px) saturate(2.4) brightness(1.3); opacity: 0.28; transform: scale(0.8); } */
/* .art { z-index: 1; filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.65)); } */
.bloom { /* only the piece's brightest details survive the contrast — and glow */
  z-index: 2;
  pointer-events: none;
  /* mix-blend-mode: screen; */
  /* filter: brightness(0.8) contrast(6) saturate(1.6) blur(6px) drop-shadow(0 0 8px rgba(255, 255, 255, 0.35)); */
  /* opacity: 0.7; */
}
.card:hover .art, .card:hover .bloom { transform: translateY(-8px) scale(1.04); }
.card:hover .bloom { opacity: 0.85; }
.card:hover .halo { opacity: 0.5; transform: scale(0.95); }
.card-media::after { /* pearly pointer glare */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05) 28%, transparent 55%),
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.13) 48%, rgba(255, 255, 255, 0.04) 52%, transparent 58%) 120% 0 / 300% 100% no-repeat;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s, background-position 0s 0.4s;
}
.card:hover .card-media::after { opacity: 1; background-position: 0 0, -20% 0; transition: opacity 0.4s, background-position 1.1s var(--ease); }
@media (prefers-reduced-motion: reduce) { .card:hover .card-media::after { transition: opacity 0.4s; } }
.card-price {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.card.out .art { filter: grayscale(1) brightness(0.45); }
.card.out :is(.halo, .bloom) { display: none; }
.card-body { display: grid; gap: 12px; margin-top: 18px; }
.card-name { font: 600 21px/1.15 var(--display); transition: color 0.2s; }
.card-name:hover { color: #fff; }
.card-blurb { display: none; margin: 0; color: #bdbab3; max-width: 46ch; }
.card-blurb::first-letter { text-transform: uppercase; }
.chips { display: flex; gap: 8px; }
.chip {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: #111 center / cover;
  outline-offset: 2px;
  transition: transform 0.2s;
}
.chip:hover { transform: scale(1.12); }
.chip[aria-pressed="true"] { outline: 1px solid var(--ink); }

/* home: the six days of work in a staggered row, the seventh — rest — alone */
.days-grid { grid-template-columns: repeat(3, 1fr); gap: 72px 32px; }
.days-grid .card:nth-child(3n + 2) { translate: 0 96px; }
.days-grid .card.rest { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-top: 120px; }
.days-grid .rest .card-media { aspect-ratio: 16 / 10; }
.days-grid .rest .card-media img { padding: 7%; }
.days-grid .rest .numeral { font-size: 26cqi; }
.days-grid .rest .card-name { font-size: clamp(34px, 4vw, 60px); }
.days-grid .rest .card-blurb { display: block; }

/* ---------- item page ---------- */

.item { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 6vw, 112px); padding-top: clamp(24px, 4vw, 56px); padding-bottom: clamp(64px, 8vw, 120px); }
.item-gallery { position: sticky; top: 88px; align-self: start; }
.stage { cursor: zoom-in; margin: 0; }
.stage img { padding: 9%; transform-origin: var(--x) var(--y); transition: transform 0.4s var(--ease); }
.stage :is(.art, .bloom) { animation: fade 0.5s both; }
.stage:hover :is(.art, .bloom) { transform: scale(1.7); }
@media (hover: none) { .stage:hover :is(.art, .bloom) { transform: none; } }
@keyframes fade { from { opacity: 0; } }
.stage-count { position: absolute; z-index: 4; top: 16px; right: 16px; padding: 7px 12px; border-radius: 40px; font: 500 11px/1 var(--mono); letter-spacing: 0.12em; }
.stage-nav {
  position: absolute;
  z-index: 4;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.3s, translate 0.4s var(--ease), background 0.2s;
}
.stage-nav.prev { left: 16px; }
.stage-nav.next { right: 16px; }
.stage:hover .stage-nav, .stage-nav:focus-visible { opacity: 1; translate: 0 0; }
@media (hover: none) { .stage-nav { opacity: 1; translate: 0 0; } }
.thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; scrollbar-width: none; }
.thumbs button { flex: none; width: 76px; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); opacity: 0.5; transition: opacity 0.2s, border-color 0.2s; }
.thumbs img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.thumbs button[aria-pressed="true"], .thumbs button:hover { opacity: 1; border-color: var(--ink); }

.caps { display: flex; flex-wrap: wrap; gap: 8px; }
.item-title { margin: 28px 0 0; font: 600 clamp(38px, 4.8vw, 68px)/1 var(--display); letter-spacing: 0.01em; text-wrap: balance; }
.item-title small, .card-name small {
  display: block;
  margin-bottom: 12px;
  font: 400 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.item-blurb { margin: 24px 0 0; color: #bdbab3; font-size: 18px; line-height: 1.55; max-width: 52ch; }
.item-blurb::first-letter { text-transform: uppercase; }
.price-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin: 32px 0 28px; padding: 22px 0; border-block: 1px solid var(--line); }
.item-price { margin: 0; font: 300 clamp(40px, 4vw, 56px)/1 var(--sans); letter-spacing: -0.02em; }
.status { display: inline-flex; align-items: center; gap: 10px; margin: 0; padding: 8px 14px; border-radius: 40px; background: var(--surface-2); font: 500 11px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--live); animation: pulse 2s infinite; }
.status[data-state="low"] i { background: var(--gold); --glow: rgba(201, 169, 97, 0.6); }
.status[data-state="out"] { color: var(--mute); }
.status[data-state="out"] i { background: var(--mute); animation: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--glow, rgba(26, 255, 163, 0.6)); } 70%, 100% { box-shadow: 0 0 0 8px transparent; } }
.opt { margin-bottom: 24px; }
.opt-label b { color: var(--ink); font-weight: 400; margin-left: 8px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.swatch, .size {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 16px 6px 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  font: 400 12px/1 var(--mono);
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s;
}
.swatch img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; background: var(--surface-2); }
.size { padding: 0 18px; min-width: 58px; justify-content: center; }
.swatch:hover, .size:hover:not(:disabled) { border-color: var(--line-2); background: var(--surface-2); }
.swatch[aria-pressed="true"], .size[aria-pressed="true"] { border-color: var(--ink); background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--ink); }
.swatch[data-out] { opacity: 0.45; text-decoration: line-through; }
.size:disabled { text-decoration: line-through; }
.buy { display: flex; gap: 12px; margin-top: 32px; }
.buy-btn { flex: 1; min-height: 52px; }
.buy .stepper button { width: 42px; height: 50px; }
.stepper button { width: 40px; height: 46px; font-size: 16px; }
.stepper span { min-width: 22px; text-align: center; }

/* overview grid — label over value, like a project brief */
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; margin: 48px 0 16px; }
.spec div { display: grid; gap: 10px; align-content: start; }
.spec dd { margin: 0; font: 500 17px/1.35 var(--sans); color: var(--ink); text-transform: capitalize; }

/* numbered accordion */
.step { border-bottom: 1px solid var(--line); }
.step summary { display: flex; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font: 500 clamp(18px, 1.8vw, 22px)/1.2 var(--sans); }
.step summary::-webkit-details-marker { display: none; }
.step-n { width: 28px; font: 600 15px/1 var(--mono); color: #3a3a3e; transition: color 0.3s; }
.step[open] .step-n, .step summary:hover .step-n { color: var(--ink); }
.step summary i { position: relative; flex: none; width: 26px; height: 26px; margin-left: auto; border-radius: 6px; background: var(--surface-2); transition: background 0.2s; }
.step summary:hover i { background: #2a2a2d; }
.step summary i::before, .step summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: var(--ink); translate: -50% -50%; transition: rotate 0.4s var(--ease); }
.step summary i::after { rotate: 90deg; }
.step[open] summary i::after { rotate: 0deg; }
.step::details-content { block-size: 0; overflow: hidden; transition: block-size 0.45s var(--ease), content-visibility 0.45s allow-discrete; }
.step[open]::details-content { block-size: auto; }
.step-body { padding: 0 0 26px 48px; color: #bdbab3; font-size: 15px; }
.step-body table { width: 100%; border-collapse: collapse; font: 400 12px/1 var(--mono); }
.step-body th, .step-body td { padding: 11px 0; text-align: left; border-top: 1px solid var(--line); }
.step-body th { color: var(--mute); font-weight: 400; }

/* reviews */
.reviews { border-top: 1px solid var(--line); }
.stars { color: var(--gold); letter-spacing: 0.12em; }
.metrics { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); }
.metrics > p { margin: 0; color: var(--mute); }
.metric { display: grid; gap: 14px; min-width: 170px; }
.metric > span:first-child { padding-bottom: 10px; border-bottom: 1px solid var(--line-2); font: 400 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.metric b { font: 300 clamp(56px, 7vw, 88px)/0.9 var(--sans); letter-spacing: -0.03em; }
.metric small { margin-left: 4px; font-size: 0.3em; letter-spacing: 0; color: var(--mute); }
.review-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 16px; }
.review { display: flex; flex-direction: column; gap: 20px; margin: 0; padding: 32px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color 0.3s; }
.review:hover { border-color: var(--line-2); }
.review blockquote { margin: 0; font: 500 clamp(19px, 1.8vw, 23px)/1.4 var(--sans); text-wrap: pretty; }
.review blockquote::before { content: "“"; }
.review blockquote::after { content: "”"; }
.review figcaption { display: grid; gap: 2px; margin-top: auto; }
.review figcaption span { font: 400 11px/1.4 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.review-write { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 6vw, 96px); margin-top: clamp(64px, 8vw, 112px); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.review-write h3 { margin: 20px 0 16px; font: 600 clamp(28px, 3.4vw, 44px)/1 var(--display); }
.review-write > div > p:last-child { max-width: 40ch; margin: 0; color: var(--mute); }
.review-form { grid-template-columns: 1fr 1fr; }
.review-form > :is(.rate, .field-wide, button, .note) { grid-column: 1 / -1; }
.review-form button { justify-self: start; }
.rate { border: 0; margin: 0; padding: 0; }
.rate-stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rate legend { padding: 0; margin-bottom: 8px; font: 400 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.rate input { position: absolute; opacity: 0; }
.rate label { font-size: 30px; line-height: 1; color: var(--line-2); cursor: pointer; transition: color 0.15s, transform 0.15s; }
.rate label:hover, .rate label:hover ~ label, .rate input:checked ~ label { color: var(--gold); }
.rate label:hover { transform: scale(1.15); }
.rate input:focus-visible + label { outline: 1px solid var(--ink); }

/* scroll reveal — rise into place as each block enters the viewport */
@supports (animation-timeline: view()) {
  .section .head, .spec, .step, .review, .review-write, .manifesto, .facts, .legal-content section {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
  @keyframes reveal { from { opacity: 0; translate: 0 56px; } }
}

/* ---------- lines (bag, checkout, order) ---------- */

.line { display: grid; grid-template-columns: 72px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.line img { width: 72px; aspect-ratio: 4 / 5; object-fit: cover; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); }
.line-body { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; min-width: 0; }
.line-name { font: 600 15px/1.25 var(--display); }
.line-meta { font: 400 11px/1.3 var(--mono); letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase; }
.line .stepper { margin-top: 4px; }
.line .stepper button { width: 32px; height: 32px; }
.line-end { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; font: 700 13px/1 var(--mono); }
.line-x { font: 400 11px/1 var(--mono); color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }
.line-x:hover { color: var(--ink); }
.meter { height: 2px; background: var(--line); overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--chrome); background-size: 100% 400%; transition: width 0.6s var(--ease); }
.bag-ship p, .summary-ship p { margin: 0 0 10px; font: 400 12px/1.4 var(--mono); color: var(--mute); }
.bag-ship b, .summary-ship b { color: var(--ink); }

/* ---------- bag drawer ---------- */

.scrim { position: fixed; inset: 0; z-index: 70; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.bag {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.bag-open { overflow: hidden; }
.bag-open .scrim { opacity: 1; pointer-events: auto; }
.bag-open .bag { transform: none; }
.bag-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.bag-head h2 { margin: 0; font: 600 22px/1 var(--display); letter-spacing: 0.08em; }
.bag-close { font-size: 28px; line-height: 1; }
.bag-ship { padding: 16px 24px 0; }
.bag-ship:empty { display: none; }
.bag-lines { flex: 1; overflow-y: auto; padding: 0 24px; }
.bag-foot { display: grid; gap: 14px; padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.bag-foot small { color: var(--mute); font-size: 12px; text-align: center; }
.row { display: flex; justify-content: space-between; font: 400 13px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }
.row b { font-size: 16px; letter-spacing: 0; }

/* ---------- checkout ---------- */

.checkout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); padding-top: 48px; padding-bottom: 96px; }
.checkout .form { margin-top: 32px; }
.checkout-steps { display: grid; gap: 14px; margin: 40px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; font-size: 14px; color: var(--mute); }
.checkout-steps li { counter-increment: s; }
.checkout-steps li::before { content: "0" counter(s); margin-right: 14px; font: 700 11px/1 var(--mono); color: var(--ink); }
.summary { padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); align-self: start; position: sticky; top: 88px; }
.summary-ship { margin: 16px 0 8px; }
.summary .row { padding: 10px 0; }
.summary .row.total { margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line-2); color: var(--ink); }
.summary .row.total b { font-size: 22px; }

/* ---------- order status (success / cancel / unsubscribe) ---------- */

.state { max-width: 880px; padding-top: clamp(48px, 8vw, 96px); padding-bottom: 96px; }
.state-glyph { display: block; font: 400 48px/1 var(--display); margin-bottom: 24px; animation: spin 12s linear infinite; width: max-content; }
@keyframes spin { to { transform: rotate(360deg); } }
.state .page-title { margin-bottom: 20px; }
.state > p { max-width: 560px; color: #bdbab3; font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.state .form { max-width: 480px; margin-top: 28px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 40px 0; border: 1px solid #2a2927; border-radius: var(--r); overflow: hidden; }
.facts div { padding: 20px; border-right: 1px solid var(--line); background: #0b0b0b;}
.facts div:last-child { border: 0; }
.facts dd { margin: 10px 0 0; font: 700 14px/1.3 var(--mono); word-break: break-word; text-transform: capitalize; }
.facts div:nth-child(3) dd { text-transform: none; }
.order-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.order-ship p { color: #bdbab3; }
.order-ref { font: 400 11px/1.5 var(--mono); color: var(--mute); word-break: break-all; }

/* ---------- legal / help ---------- */

.legal-hero { padding: clamp(48px, 8vw, 96px) 0 48px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 14px 0 0; font: 600 clamp(36px, 6vw, 80px)/0.95 var(--display); }
.legal-hero .updated { margin-top: 16px; font: 400 12px/1.5 var(--mono); color: var(--mute); }
.legal-body { padding: 64px 0 96px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 6vw, 96px); }
.legal-toc { position: sticky; top: 88px; align-self: start; display: grid; gap: 12px; font-size: 14px; }
.legal-toc a { color: var(--mute); transition: color 0.2s, padding 0.3s; }
.legal-toc a:hover { color: var(--ink); padding-left: 6px; }
.legal-content { max-width: 720px; color: #c9c6bf; }
.legal-content section { padding-bottom: 40px; scroll-margin-top: 88px; }
.legal-content h2 { margin: 0 0 20px; font: 600 28px/1.2 var(--display); color: var(--ink); }
.legal-content .n { margin-right: 12px; font: 400 12px/1 var(--mono); color: var(--mute); vertical-align: middle; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink); font-weight: 500; }
.legal-notice { margin-bottom: 40px; padding: 18px 20px; border: 1px dashed var(--gold); color: var(--gold); font-size: 14px; }
.inline-link { color: var(--ink); border-bottom: 1px solid var(--line-2); }
.inline-link:hover { border-color: var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 18px 32px 18px 0; cursor: pointer; list-style: none; position: relative; color: var(--ink); font-weight: 500; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; font-family: var(--mono); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p, .faq-item ul { margin-top: 0; }
.countries { columns: 3 160px; padding: 0; list-style: none; font-size: 14px; }

/* contact */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 6vw, 96px); padding-top: 48px; padding-bottom: 96px; }
.contact .form { margin-top: 32px; }
.contact-info { display: grid; gap: 28px; align-content: start; padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); }
.contact-info h4 { margin: 0 0 8px; }
.contact-info p { margin: 0; color: #bdbab3; }

/* ---------- footer ---------- */

.foot { margin-top: auto; padding-top: 72px; border-top: 1px solid var(--line); overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid p { max-width: 300px; color: var(--mute); font-size: 14px; }
.foot nav { display: grid; gap: 10px; align-content: start; font-size: 14px; }
.foot h4 { margin: 0 0 6px; }
.foot nav a { color: #bdbab3; transition: color 0.2s; }
.foot nav a:hover { color: var(--ink); }
.foot-mark {
  overflow:hidden;
  margin: 48px 0 -0.18em;
  text-align: center;
  font: 700 clamp(72px, 21vw, 340px)/0.8 var(--display);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  user-select: none;
}
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-block: 20px; border-top: 1px solid var(--line); font: 400 11px/1.4 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); position: relative; background: var(--bg); }

/* ---------- cookie notice ---------- */

.cookies {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 460px;
  padding: 20px;
  background: rgba(13, 13, 14, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  animation: rise 0.6s var(--ease) both 0.8s;
}
.cookies p { flex-basis: 100%; margin: 0 0 4px; font-size: 13px; color: #bdbab3; }
.cookies .btn { min-height: 38px; padding: 0 16px; font-size: 10px; flex: 1; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 64px 0 0;
    z-index: 39;
    flex-direction: column;
    gap: 0;
    padding: 24px var(--gutter);
    background: var(--bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font: 600 28px/1 var(--display); letter-spacing: 0.04em; text-transform: none; color: var(--ink); }
  .nav a[aria-current]::after { display: none; }
  .nav-open { overflow: hidden; }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .menu-btn { display: block; margin-left: auto; }
  .item, .checkout, .contact, .order-cols, .legal-layout { grid-template-columns: 1fr; }
  .item-gallery, .summary, .legal-toc { position: static; }
  .review-write { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > div { grid-column: 1 / -1; }
  .legal-toc { display: none; }
  .days-grid { grid-template-columns: 1fr 1fr; gap: 48px 20px; }
  .days-grid .card:nth-child(3n + 2) { translate: none; }
  .days-grid .card:nth-child(2n) { translate: 0 64px; }
  .days-grid .card.rest { grid-template-columns: 1fr; translate: none; margin-top: 64px; }
  .toolbar { top: 68px; }
}
@media (max-width: 640px) {
  .hero-meta span:last-child { display: none; }
  .days-grid { grid-template-columns: 1fr; }
  .days-grid .card:nth-child(2n) { translate: none; }
  .join .form { grid-template-columns: 1fr; gap: 12px; }
  .review-form { grid-template-columns: 1fr; }
  .spec { gap: 24px 16px; }
  .step-body { padding-left: 0; }
  .cookies { right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.notice {
  display: none;
  border: 1px solid #2a2927;
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.8;
  color: #8d8c89;
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

   --card-shadow:     
    0 0 0.5rem 2px hsl(var(--base-hue) 25% 25% / 35%),
    inset 0 0 0.1rem hsl(var(--base-hue) 75% 40% / 20%),
    inset 0 0 0.2rem 0.1rem hsl(var(--base-hue) 75% 40% / 15%),
    inset 0 0 0.3rem 0.2rem hsl(var(--base-hue) 75% 40% / 10%);
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

}
