/* ------------------------------------------------------------------
   Choker · Nocturne (v7)
   Pink on dark — boudoir glow. Deep plum ground, hot pink & rose
   gold accents, soft cream text. Instrument Serif + Manrope.
------------------------------------------------------------------ */

:root {
  --night: #120a10;
  --night-2: #1a0f17;
  --night-3: #241620;
  --plum: #3a1f2c;
  --wine: #5c2840;
  --wine-2: #7a334f;
  --rose-hot: #ff2e88;
  --rose: #e91e63;
  --rose-dim: #c21857;
  --pink-soft: #f7b8cf;
  --rose-gold: #dfb09a;
  --cream: #fdf3ea;
  --cream-dim: #c6b5ab;
  --cream-quiet: #887a73;
  --line: rgba(253, 243, 234, 0.1);
  --line-strong: rgba(253, 243, 234, 0.26);
  --glow: 0 0 40px rgba(255, 46, 136, 0.22);

  --f-display: "Instrument Serif", "Cormorant Garamond", serif;
  --f-body: "Manrope", -apple-system, sans-serif;

  --pad: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 30% 0%, rgba(255, 46, 136, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(233, 30, 99, 0.05) 0%, transparent 60%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 400; letter-spacing: -0.005em; line-height: 0.98; }
p { margin: 0 0 1em; }
::selection { background: var(--rose-hot); color: var(--night); }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Atoms ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-hot);
}
.eyebrow::before { content: "✦ "; color: var(--pink-soft); }

.italic {
  font-family: var(--f-display);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid transparent;
}
.btn--pink {
  background: var(--rose-hot);
  color: var(--night);
  box-shadow: var(--glow);
}
.btn--pink:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 46, 136, 0.5);
}
.btn--outline {
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn--outline:hover {
  border-color: var(--rose-hot);
  color: var(--rose-hot);
  box-shadow: var(--glow);
}
.btn--ghost {
  background: var(--night-2);
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--plum); border-color: var(--rose-hot); }
.btn--block { width: 100%; }

.link-u {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-hot);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rose-hot);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  font-weight: 500;
}
.link-u:hover { gap: 14px; color: var(--pink-soft); border-color: var(--pink-soft); }

/* ---------- Age strip ---------- */
.age-strip {
  background: var(--rose-hot);
  color: var(--night);
  padding: 10px var(--pad);
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.age-strip button {
  background: var(--night);
  color: var(--cream);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.age-strip button:hover { background: var(--pink-soft); color: var(--night); }
.age-strip.is-hidden { display: none; }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  padding: 12px 0;
  background: var(--night-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 400;
}
.ticker__track {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll 55s linear infinite;
  padding-left: 44px;
}
.ticker__track em {
  color: var(--rose-hot);
  font-style: normal;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: -1px;
  text-shadow: 0 0 18px rgba(255, 46, 136, 0.4);
}
.ticker__track .dot { color: var(--rose-hot); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(18, 10, 16, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}
.brand__dot {
  width: 8px; height: 8px;
  background: var(--rose-hot);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--rose-hot);
  animation: pulse 2.5s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.brand__word {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
  font-weight: 400;
}
.primary-nav {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.primary-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose-hot);
  box-shadow: 0 0 8px var(--rose-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--rose-hot); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-tools {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}
.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--cream-dim);
  transition: background .3s var(--ease), color .3s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--night-2); color: var(--rose-hot); }
.bag-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--rose-hot);
  color: var(--night);
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0 4px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 10px rgba(255, 46, 136, 0.5);
}
.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 10vw, 140px) var(--pad) clamp(60px, 8vw, 120px);
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__halo {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 46, 136, 0.18) 0%, rgba(233, 30, 99, 0.1) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: halo 10s ease-in-out infinite alternate;
}
@keyframes halo {
  from { transform: translateX(-50%) scale(1); }
  to { transform: translateX(-50%) scale(1.12); }
}
.hero__content { position: relative; z-index: 2; }
.hero__mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 14px;
  background: rgba(255, 46, 136, 0.12);
  border: 1px solid rgba(255, 46, 136, 0.35);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-hot);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fade .8s 0.15s var(--ease) forwards;
}
.hero__mark::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--rose-hot);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--rose-hot);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -0.015em;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__title .row {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s var(--ease) forwards;
}
.hero__title .row:nth-child(1) { animation-delay: 0.2s; }
.hero__title .row:nth-child(2) { animation-delay: 0.35s; }
.hero__title .row:nth-child(3) { animation-delay: 0.5s; }
.hero__title em {
  font-style: italic;
  color: var(--rose-hot);
  text-shadow: 0 0 48px rgba(255, 46, 136, 0.4);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }

.hero__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--cream-dim);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease) forwards;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.85s var(--ease) forwards;
}

/* Hero feature plate */
.hero__plate {
  margin: clamp(60px, 8vw, 100px) auto 0;
  max-width: 520px;
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 46, 136, 0.25);
  box-shadow: 0 30px 80px -30px rgba(255, 46, 136, 0.5), 0 0 120px -20px rgba(255, 46, 136, 0.2);
  opacity: 0;
  animation: fadeUp 1.4s 0.5s var(--ease) forwards;
}
.hero__plate svg { width: 100%; height: 100%; }
.hero__plate-label {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(18, 10, 16, 0.72);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid rgba(255, 46, 136, 0.2);
}
.hero__plate-label strong {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}
.hero__plate-label .price { color: var(--rose-hot); font-weight: 500; }

/* ---------- Section ---------- */
.section {
  padding: clamp(60px, 9vw, 140px) var(--pad);
  position: relative;
}
.section--panel {
  background: var(--night-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 1320px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.section-head--centered {
  text-align: center;
  grid-template-columns: 1fr;
  max-width: 800px;
}
.section-head .eyebrow { margin-bottom: 20px; display: inline-block; }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
  max-width: 14ch;
  letter-spacing: -0.01em;
}
.section-head--centered h2 { margin: 0 auto; }
.section-head h2 em {
  font-style: italic;
  color: var(--rose-hot);
  text-shadow: 0 0 32px rgba(255, 46, 136, 0.3);
}
.section-head__lede {
  font-size: 15px;
  max-width: 48ch;
  color: var(--cream-dim);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}
.section-head--centered .section-head__lede { margin: 20px auto 0; }

/* ---------- Collections (glowy cards) ---------- */
.collections {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coll {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.coll:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 136, 0.5);
  box-shadow: 0 20px 60px -20px rgba(255, 46, 136, 0.4), 0 0 100px -20px rgba(255, 46, 136, 0.15);
}
.coll__art {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--plum);
}
.coll__art svg { width: 100%; height: 100%; transition: transform 1.2s var(--ease); }
.coll:hover .coll__art svg { transform: scale(1.06); }
.coll__num {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 12px;
  background: rgba(18, 10, 16, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 46, 136, 0.3);
  border-radius: 999px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-hot);
}
.coll__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.coll__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
}
.coll__title em { font-style: italic; color: var(--rose-hot); }
.coll__desc {
  font-size: 13.5px;
  color: var(--cream-dim);
  margin: 4px 0 14px;
  max-width: 36ch;
  font-weight: 300;
  line-height: 1.7;
}
.coll__link {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-hot);
  margin-top: auto;
  transition: letter-spacing .3s var(--ease);
}
.coll:hover .coll__link { letter-spacing: 0.3em; }

/* ---------- Product grid ---------- */
.shop-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 3vw, 48px) clamp(24px, 2vw, 32px);
}
.pcard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.pcard:hover { transform: translateY(-6px); }
.pcard__media {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--night-3);
  border: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pcard:hover .pcard__media {
  border-color: rgba(255, 46, 136, 0.4);
  box-shadow: 0 20px 60px -15px rgba(255, 46, 136, 0.4);
}
.pcard__media svg {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease);
}
.pcard:hover .pcard__media svg { transform: scale(1.05); }
.pcard__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  background: rgba(18, 10, 16, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-hot);
  border: 1px solid rgba(255, 46, 136, 0.3);
  z-index: 2;
}
.pcard__qv {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  background: var(--rose-hot);
  color: var(--night);
  padding: 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.4);
}
.pcard:hover .pcard__qv { opacity: 1; transform: translateY(0); }
.pcard__qv:hover { background: var(--pink-soft); }
.pcard__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 0 4px;
}
.pcard__name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--cream);
  font-weight: 400;
  margin: 0 0 4px;
}
.pcard__name em { font-style: italic; color: var(--rose-hot); }
.pcard__material {
  font-size: 11px;
  color: var(--cream-quiet);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.pcard__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-hot);
  white-space: nowrap;
  font-weight: 400;
}

/* ---------- Big quote ---------- */
.big-quote {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  position: relative;
}
.big-quote::before, .big-quote::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--rose-hot), transparent);
  left: 50%;
}
.big-quote::before { top: -80px; }
.big-quote::after { bottom: -80px; transform: translateY(100%); }
.big-quote p {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.04;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.big-quote em {
  font-style: italic;
  color: var(--rose-hot);
  text-shadow: 0 0 32px rgba(255, 46, 136, 0.35);
}
.big-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
}

/* ---------- Story (feature) ---------- */
.story {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 0 var(--pad);
}
.story__art {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 46, 136, 0.25);
  box-shadow: 0 30px 80px -30px rgba(255, 46, 136, 0.4);
}
.story__art svg { width: 100%; height: 100%; }
.story__art .cap {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(18, 10, 16, 0.7);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-hot);
  border: 1px solid rgba(255, 46, 136, 0.25);
}
.story__body .eyebrow { margin-bottom: 20px; display: inline-block; }
.story__body h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.story__body h2 em { font-style: italic; color: var(--rose-hot); text-shadow: 0 0 32px rgba(255, 46, 136, 0.3); }
.story__body p {
  color: var(--cream-dim);
  max-width: 46ch;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 1em;
}

/* ---------- Notes / whispers ---------- */
.notes {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.note {
  padding: 36px 28px;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.note:hover { transform: translateY(-4px); border-color: rgba(255, 46, 136, 0.4); }
.note:nth-child(2) {
  background: linear-gradient(135deg, var(--night-2) 0%, var(--plum) 100%);
}
.note__mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 44px;
  color: var(--rose-hot);
  line-height: 0.7;
  text-shadow: 0 0 20px rgba(255, 46, 136, 0.4);
}
.note p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
  font-weight: 400;
}
.note .who {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-quiet);
  margin-top: auto;
}
.note .who strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose-hot);
  font-weight: 400;
  margin-bottom: 2px;
}

/* ---------- Materials ---------- */
.materials {
  max-width: 900px;
  margin: 0 auto;
}
.mat {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s var(--ease);
  border-radius: 8px;
}
.mat:first-child { border-top: 1px solid var(--line); }
.mat:hover { background: var(--night-2); padding-left: 20px; padding-right: 20px; }
.mat__swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px var(--line-strong), 0 0 24px -6px color-mix(in srgb, var(--c) 70%, transparent);
}
.mat__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  font-weight: 400;
}
.mat__origin {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 12px;
  color: var(--cream-quiet);
  letter-spacing: 0.08em;
  margin-top: 3px;
  font-weight: 300;
}
.mat__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--rose-hot);
}

/* ---------- Letter ---------- */
.letter {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad);
  position: relative;
}
.letter__ornament {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--rose-hot);
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(255, 46, 136, 0.4);
}
.letter h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.letter h2 em {
  font-style: italic;
  color: var(--rose-hot);
  text-shadow: 0 0 32px rgba(255, 46, 136, 0.3);
}
.letter p {
  color: var(--cream-dim);
  max-width: 48ch;
  margin: 0 auto 36px;
  font-weight: 300;
}
.letter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
  background: var(--night-2);
  border: 1px solid rgba(255, 46, 136, 0.25);
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
}
.letter__form:focus-within { border-color: var(--rose-hot); box-shadow: var(--glow); }
.letter__form input {
  padding: 14px 0;
  outline: 0;
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
  min-width: 0;
}
.letter__form input::placeholder { color: var(--cream-quiet); font-style: italic; }
.letter__form button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--rose-hot);
  color: var(--night);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.3);
}
.letter__form button:hover { background: var(--pink-soft); }
.letter__note {
  grid-column: 1 / -1;
  margin: 14px 20px 0 !important;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-hot);
  min-height: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night-2);
  color: var(--cream);
  padding: clamp(50px, 7vw, 100px) var(--pad) 24px;
  border-top: 1px solid rgba(255, 46, 136, 0.15);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-hot), transparent);
  box-shadow: 0 0 20px var(--rose-hot);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: var(--cream-dim);
  margin: 16px 0 0;
  font-size: 13px;
  max-width: 34ch;
  line-height: 1.7;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-hot);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--cream-dim);
  font-size: 13px;
  font-weight: 300;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--rose-hot); }
.footer-col p {
  font-size: 12px;
  color: var(--cream-quiet);
  margin: 14px 0 0;
  line-height: 1.7;
  font-weight: 300;
}
.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream-quiet);
}
.footer-bottom a { color: inherit; transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--rose-hot); }

/* ---------- Page head ---------- */
.page-head {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 140px) var(--pad) clamp(30px, 4vw, 56px);
  text-align: center;
  position: relative;
}
.page-head::before {
  content: "";
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 46, 136, 0.12) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.page-head > * { position: relative; z-index: 1; }
.page-head .eyebrow { margin-bottom: 24px; display: inline-block; }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.92;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.page-head h1 em { font-style: italic; color: var(--rose-hot); text-shadow: 0 0 40px rgba(255, 46, 136, 0.4); }
.page-head__lede {
  max-width: 54ch;
  margin: 24px auto 0;
  color: var(--cream-dim);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

/* ---------- Shop ---------- */
.shop {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
}
.shop__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 48px;
}
.shop__chips { display: inline-flex; gap: 4px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  transition: all .3s var(--ease);
}
.chip:hover { color: var(--rose-hot); }
.chip.is-active {
  background: var(--rose-hot);
  color: var(--night);
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.4);
}
.sort {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--night);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23ff2e88' stroke-width='1.6'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--night);
  cursor: pointer;
}

/* ---------- Quick view ---------- */
.quick {
  position: fixed; inset: 0;
  z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
}
.quick[hidden] { display: none; }
.quick__backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 10, 16, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.quick__panel {
  position: relative;
  background: var(--night-2);
  border: 1px solid rgba(255, 46, 136, 0.3);
  border-radius: 18px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7), 0 0 80px -10px rgba(255, 46, 136, 0.25);
  animation: pop .4s var(--ease);
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.quick__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--night);
  color: var(--rose-hot);
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  transition: background .3s var(--ease), transform .3s var(--ease);
  border: 1px solid rgba(255, 46, 136, 0.3);
}
.quick__close:hover { background: var(--rose-hot); color: var(--night); transform: rotate(90deg); }
.quick__art {
  aspect-ratio: 1;
  background: var(--plum);
  border-right: 1px solid var(--line);
  border-radius: 18px 0 0 18px;
}
.quick__art svg { width: 100%; height: 100%; }
.quick__body { padding: 44px 40px 40px; }
.quick__ref {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-hot);
  margin: 0 0 12px;
  font-weight: 500;
}
.quick__body h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 10px;
}
.quick__body h3 em { font-style: italic; color: var(--rose-hot); }
.quick__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-hot);
  margin: 0 0 22px;
  text-shadow: 0 0 24px rgba(255, 46, 136, 0.3);
}
.quick__desc {
  color: var(--cream-dim);
  font-size: 14px;
  margin: 0 0 22px;
  max-width: 42ch;
  font-weight: 300;
  line-height: 1.75;
}
.quick__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 22px;
  font-size: 12px;
}
.quick__specs dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-quiet);
  align-self: center;
  font-weight: 500;
}
.quick__specs dd { margin: 0; color: var(--cream); font-weight: 300; }
.quick__size { margin-bottom: 22px; }
.quick__size > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-quiet);
  margin-bottom: 10px;
}
.quick__sizes { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.quick__sizes button {
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  transition: all .3s var(--ease);
}
.quick__sizes button:hover { border-color: var(--rose-hot); color: var(--rose-hot); }
.quick__sizes button.is-selected {
  background: var(--rose-hot);
  color: var(--night);
  border-color: var(--rose-hot);
  box-shadow: 0 0 16px rgba(255, 46, 136, 0.4);
}
.quick__note {
  margin-top: 14px;
  font-size: 11px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--cream-quiet);
  text-align: center;
}

/* ---------- Switcher ---------- */
.switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  padding: 4px;
  background: rgba(18, 10, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 46, 136, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 46, 136, 0.15);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.switcher a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--cream-dim);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.switcher a:hover { color: var(--rose-hot); }
.switcher a.is-current {
  background: var(--rose-hot);
  color: var(--night);
  box-shadow: 0 0 14px rgba(255, 46, 136, 0.4);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--night);
    padding: 12px var(--pad);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    z-index: 70;
  }
  .primary-nav.is-open a {
    padding: 16px 0;
    font-size: 17px;
    font-family: var(--f-display);
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .section-head { grid-template-columns: 1fr; }
  .collections { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__art { max-width: 480px; margin: 0 auto; }
  .notes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quick__panel { grid-template-columns: 1fr; }
  .quick__art { border-radius: 18px 18px 0 0; border-right: 0; border-bottom: 1px solid var(--line); max-height: 40vh; }
  .quick__body { padding: 24px; }
  .letter__form { grid-template-columns: 1fr; padding: 14px; border-radius: 20px; }
  .letter__form button { width: 100%; }
  .switcher { bottom: 12px; right: 12px; font-size: 10px; }
  .switcher a { padding: 6px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
