:root {
  --bg:      #07030f;
  --bg2:     #0d0620;
  --pink:    #e8196b;
  --pglow:   rgba(232,25,107,0.35);
  --violet:  #9333ea;
  --lilac:   #d8b4fe;
  --fuchsia: #e879f9;
  --white:   #f5f0ff;
  --off:     #c4b8dc;
  --muted:   #9d91b8;
  --dim:     rgba(157,145,184,0.45);
  --error:   #ff3a6e;
  --success: #22d3a1;
  --bg3:     rgba(255,255,255,0.03);
  --r:       6px;
  --gap:     2px;
  --ease:    cubic-bezier(.22,1,.36,1);
  --spring:  cubic-bezier(.16,1,.3,1);
  --t:       0.38s var(--ease);
  --fd:      'Montserrat', sans-serif;
  --fc:      'Cormorant Garamond', serif;
  --fs:      'Lora', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--white); font-family: var(--fd); height: 100%; }
body.grid-view { overflow: hidden; }
body.contact-view, body.spoil-view { overflow-y: auto; height: auto; }
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,25,107,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,51,234,0.012) 1px, transparent 1px);
  background-size: 100px 100px;
}

.grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr min-content;
  grid-template-areas:
    "banner banner banner banner banner"
    "posa   posb   posc   posd   pose";
  width: 100vw; height: 100vh; height: 100dvh;
  gap: var(--gap); overflow: hidden;
}
.grid > .pos-a,
.grid > .pos-b,
.grid > .pos-c,
.grid > .pos-d,
.grid > .pos-e { aspect-ratio: 1 / 1; }

.cell { position: relative; overflow: hidden; background: var(--bg2); cursor: pointer; transition: opacity 0.7s var(--ease), filter 0.7s var(--ease); }
.cell-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform var(--t);
  pointer-events: none; user-select: none; -webkit-user-drag: none;
}
.cell-ph {
  position: absolute; inset: 0; transition: transform var(--t);
}
.cell-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(7,3,15,0.04) 0%, rgba(7,3,15,0.28) 55%, rgba(7,3,15,0.68) 100%);
}
.cell::after {
  content: ''; position: absolute; inset: 0; z-index: 10;
  border: 1px solid transparent; transition: border-color 0.25s; pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .grid:has(.cell:hover) .cell:not(:hover) { opacity: 0.28; filter: saturate(0.3) brightness(0.8); }
  .grid:has(.cell:hover) .cell:not(:hover) .cell-overlay { background: linear-gradient(180deg, rgba(7,3,15,0.55) 0%, rgba(7,3,15,0.85) 100%) !important; }
  .cell:hover .cell-media { transform: scale(1.025); }
  .cell:hover .cell-ph { transform: scale(1.025); }
  .cell:hover::after { border-color: rgba(232,25,107,0.12); }
}

@media (hover: none), (pointer: coarse) {
  .cell:active { transform: scale(0.98); }
  .cell:active::after { border-color: rgba(232,25,107,0.55); }
  .cell:active .cell-media { transform: scale(1.02); }
}

.cell-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 1rem 1.2rem 1.2rem;
  transform: translateY(8px); transition: transform 0.6s var(--ease);
}
.cell:hover .cell-info { transform: translateY(0); }
.cell-eyebrow {
  display: block; font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--pink); opacity: 0.88; margin-bottom: 0.3rem;
}
.cell-name {
  display: block; font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 700; color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.25;
}
.cell-sub {
  display: block; font-size: 0.75rem; color: var(--muted);
  font-family: var(--fs); font-style: italic; margin-top: 0.12rem;
}
.cell-cta {
  display: inline-block; margin-top: 0.55rem;
  padding: 0.2rem 0.65rem;
  background: transparent;
  border: 1px solid rgba(232,25,107,0.3);
  border-radius: 99px; font-size: 0.46rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.35s, border-color 0.35s;
}
.cell:hover .cell-cta {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-color: transparent;
  color: #fff;
}
.cell:hover .cell-cta { opacity: 1; transform: translateY(0); }

.ph-label {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.54rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.07); pointer-events: none;
}

.contact-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 1rem 1.2rem 1.2rem;
  transform: translateY(0);
  pointer-events: none;
}
.contact-label span {
  display: block;
  font-family: var(--fd); font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); line-height: 1.25;
  text-shadow: 0 2px 12px rgba(7,3,15,0.9);
}

.pos-banner { grid-area: banner; cursor: default; }
.pos-a      { grid-area: posa; }
.pos-b      { grid-area: posb; }
.pos-c      { grid-area: posc; }
.pos-d      { grid-area: posd; }
.pos-e      { grid-area: pose; }
.pos-f      { grid-area: posf; }

.ph-banner { background: radial-gradient(ellipse at 18% 55%, rgba(232,25,107,0.16) 0%, transparent 48%), radial-gradient(ellipse at 80% 30%, rgba(147,51,234,0.12) 0%, transparent 50%), linear-gradient(135deg,#0a0220,#07030f); }
.ph-a      { background: radial-gradient(ellipse at 30% 60%, rgba(232,25,107,0.12) 0%, transparent 55%), var(--bg2); }
.ph-b      { background: radial-gradient(ellipse at 40% 50%, rgba(147,51,234,0.14) 0%, transparent 55%), radial-gradient(ellipse at 72% 28%, rgba(232,25,107,0.08) 0%, transparent 50%), var(--bg2); }
.ph-c      { background: radial-gradient(ellipse at 55% 45%, rgba(232,25,107,0.12) 0%, transparent 55%), var(--bg2); }
.ph-d      { background: radial-gradient(ellipse at 65% 40%, rgba(147,51,234,0.14) 0%, transparent 55%), var(--bg2); }
.ph-e      { background: radial-gradient(ellipse at 62% 56%, rgba(232,25,107,0.10) 0%, transparent 55%), radial-gradient(ellipse at 24% 35%, rgba(147,51,234,0.08) 0%, transparent 50%), var(--bg2); }
.ph-f      { background: radial-gradient(ellipse at 50% 50%, rgba(147,51,234,0.14) 0%, transparent 55%), radial-gradient(ellipse at 80% 25%, rgba(232,25,107,0.08) 0%, transparent 50%), var(--bg2); }

.banner-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  transition: opacity 1.6s ease;
}
.banner-slide.hidden { opacity: 0; pointer-events: none; }
.banner-bg { position: absolute; inset: 0; transition: transform var(--t); }
.pos-banner:hover .banner-bg { transform: scale(1.03); }
.banner-bg img, .banner-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
  pointer-events: none; user-select: none; -webkit-user-drag: none;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.pos-banner:hover .banner-bg img,
.pos-banner:hover .banner-bg video {
  animation-play-state: paused;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,3,15,0.40) 0%, rgba(7,3,15,0.15) 50%, rgba(7,3,15,0.02) 100%);
}
.banner-content { position: relative; z-index: 3; padding: 3.5rem 4rem 4rem; max-width: 640px; }

.banner-logo-wrap {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  z-index: 20;
  pointer-events: none;
}
.banner-logo-wrap img {
  display: block;
  max-height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.08) drop-shadow(0 2px 12px rgba(0,0,0,0.5));
  user-select: none;
  -webkit-user-drag: none;
}
.banner-logo-fallback {
  font-family: var(--fd); font-size: 1rem; font-weight: 900;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--white);
  opacity: 0.9;
}

.banner-contact {
  position: absolute;
  top: 1.4rem;
  right: 1.75rem;
  z-index: 25;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.25rem;
  background: rgba(7,3,15,0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,255,0.22);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--fd);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.banner-contact::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pglow);
}
.banner-contact:hover {
  border-color: rgba(232,25,107,0.55);
  background: rgba(232,25,107,0.12);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .banner-contact {
    top: 0.95rem; right: 0.95rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.5rem;
    letter-spacing: 0.3em;
  }
}

.banner-eyebrow {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--pink); opacity: 0.85; margin-bottom: 0.5rem;
}
.banner-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1.06; white-space: pre-line;
  background: linear-gradient(135deg, #fff 0%, var(--fuchsia) 55%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 28px rgba(232,25,107,0.4)); margin-bottom: 1rem;
}
.banner-btn {
  display: inline-block; padding: 0.9rem 2.6rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-radius: 4px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  animation: btnPulse 2.5s ease infinite;
}
.banner-btn:hover { filter: brightness(1.14); transform: translateY(-2px); }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,25,107,0.32); }
  50%      { box-shadow: 0 0 0 8px rgba(232,25,107,0); }
}
.banner-dots {
  position: absolute; bottom: 1rem; right: 1.25rem; z-index: 6;
  display: flex; gap: 0.38rem; align-items: center;
}
.banner-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.22); border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.banner-dot.active { background: var(--pink); width: 18px; border-radius: 3px; box-shadow: 0 0 8px var(--pglow); }

.pos-tall .cell-overlay {
  background: linear-gradient(180deg, rgba(7,3,15,0.08) 0%, rgba(7,3,15,0.42) 55%, rgba(7,3,15,0.8) 100%);
}


/* ═══════════════ POPUPS — minimalist/editorial redesign ════════════════ */
.popup-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(7,3,15,0.65);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
  display: flex; align-items: flex-end; justify-content: center;
}
.popup-backdrop.open { opacity: 1; pointer-events: all; }
.popup-panel {
  width: min(520px, 96vw);
  background: rgba(9,3,22,0.99);
  border: 1px solid rgba(245,240,255,0.07);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 2rem 1.75rem 2.75rem;
  transform: translateY(100%);
  transition: transform 0.52s var(--spring);
  max-height: 88vh; overflow-y: auto; position: relative;
}
.popup-backdrop.open .popup-panel { transform: translateY(0); }
.popup-panel::-webkit-scrollbar { width: 3px; }
.popup-panel::-webkit-scrollbar-track { background: transparent; }
.popup-panel::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }
.popup-handle { width: 32px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 99px; margin: 0 auto 1.6rem; }
.popup-eyebrow {
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--pink); opacity: 0.7; margin-bottom: 0.15rem;
}
.popup-heading {
  font-size: 1.55rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.6rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--lilac) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.popup-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: 1px solid rgba(255,255,255,0.06); color: var(--muted); font-size: 0.75rem;
  cursor: pointer; width: 28px; height: 28px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  letter-spacing: 0; font-family: var(--fd);
}
.popup-close:hover { background: rgba(232,25,107,0.1); border-color: rgba(232,25,107,0.3); color: var(--pink); }

@keyframes popIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-backdrop.open .excl-item,
.popup-backdrop.open .social-card,
.popup-backdrop.open .pay-item {
  animation: popIn 0.38s var(--spring) both;
}
.popup-backdrop.open .excl-item:nth-child(1) { animation-delay: 0.06s; }
.popup-backdrop.open .excl-item:nth-child(2) { animation-delay: 0.13s; }
.popup-backdrop.open .social-card:nth-child(1) { animation-delay: 0.06s; }
.popup-backdrop.open .social-card:nth-child(2) { animation-delay: 0.13s; }
.popup-backdrop.open .social-card:nth-child(3) { animation-delay: 0.20s; }
.popup-backdrop.open .social-card:nth-child(4) { animation-delay: 0.27s; }
.popup-backdrop.open .social-card:nth-child(5) { animation-delay: 0.34s; }
.popup-backdrop.open .pay-item:nth-child(1) { animation-delay: 0.06s; }
.popup-backdrop.open .pay-item:nth-child(2) { animation-delay: 0.12s; }
.popup-backdrop.open .pay-item:nth-child(3) { animation-delay: 0.18s; }
.popup-backdrop.open .pay-item:nth-child(4) { animation-delay: 0.24s; }
.popup-backdrop.open .pay-item:nth-child(5) { animation-delay: 0.30s; }

/* Exclusive links list */
.excl-list { display: flex; flex-direction: column; gap: 0.6rem; }
.excl-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; text-decoration: none; transition: all 0.22s; position: relative; overflow: hidden;
}
.excl-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--c); opacity: 0; transition: opacity 0.3s; }
.excl-item:hover { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); transform: translateX(2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.excl-item:hover::before { opacity: 0.9; }
.excl-name { font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.excl-sub { font-size: 0.72rem; color: var(--muted); font-family: var(--fs); font-style: italic; margin-top: 0.12rem; }
.excl-arrow { margin-left: auto; color: var(--muted); font-size: 0.9rem; transition: transform 0.2s, color 0.2s; }
.excl-item:hover .excl-arrow { transform: translateX(3px); color: var(--white); }

/* Social cards — editorial minimal */
.social-grid { display: flex; flex-direction: column; gap: 0.55rem; }
.social-card {
  display: flex; align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; text-decoration: none;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  position: relative; overflow: hidden; gap: 0.85rem;
}
.social-card:hover { border-color: rgba(var(--c), 0.35); background: rgba(255,255,255,0.04); transform: translateX(2px); }
/* Left accent bar — always visible, thickens on hover */
.sc-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; border-radius: 0 1px 1px 0;
  opacity: 0.35; transition: opacity 0.22s, width 0.22s;
}
.social-card:hover .sc-accent { opacity: 0.9; width: 3px; }
.sc-icon { font-size: 1.3rem; transition: transform 0.22s; line-height: 1; min-width: 32px; text-align: center; flex-shrink: 0; }
.social-card:hover .sc-icon { transform: scale(1.08); }
.sc-text { display: flex; flex-direction: column; gap: 0.12rem; flex: 1; }
.sc-name { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.sc-sub { font-size: 0.66rem; color: var(--muted); font-family: var(--fs); font-style: italic; }
.sc-arrow { color: var(--muted); font-size: 0.9rem; transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.social-card:hover .sc-arrow { transform: translateX(3px); color: var(--white); }

/* Payment items */
.pay-list { display: flex; flex-direction: column; gap: 0.6rem; }
.pay-item {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; cursor: pointer; transition: all 0.22s; position: relative; overflow: hidden;
}
.pay-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--c); opacity: 0; transition: opacity 0.3s; }
.pay-item:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); transform: translateX(2px); }
.pay-item:hover::before { opacity: 0.85; }
.pay-icon { font-size: 1.3rem; min-width: 32px; text-align: center; transition: transform 0.22s; line-height: 1; }
.pay-item:hover .pay-icon { transform: scale(1.1); }
.pay-text { flex: 1; }
.pay-name { font-size: 0.84rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.pay-sub { font-size: 0.69rem; color: var(--muted); font-family: var(--fs); font-style: italic; }
.pay-wallet { font-size: 0.6rem; color: var(--muted); font-family: monospace; word-break: break-all; margin-top: 0.2rem; }
.pay-action { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 0.28rem 0.6rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; transition: all 0.18s; white-space: nowrap; }
.pay-item:hover .pay-action { border-color: var(--c); color: var(--white); }
.copied { color: #22d3a1 !important; border-color: #22d3a1 !important; }

/* Mobile grid */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; overflow-y: auto; height: auto; min-height: 100dvh; background: var(--bg); }
  .grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "banner banner"
      "posa   posb"
      "posc   posc"
      "posd   pose";
    width: 100vw; height: auto; min-height: 100dvh; overflow: visible;
    gap: 6px;
  }
  .pos-banner {
    aspect-ratio: auto;
    height: clamp(220px, 36dvh, 360px);
    min-height: 0;
    max-height: none;
  }
  .grid > .pos-a,
  .grid > .pos-b,
  .grid > .pos-d,
  .grid > .pos-e {
    aspect-ratio: 1 / 1;
    min-height: 0; max-height: none;
  }
  .grid > .pos-c {
    aspect-ratio: 2.6 / 1;
    min-height: 0; max-height: none;
  }
  .banner-content { padding: 1.4rem 1.5rem 1.6rem; }
  .banner-logo-wrap img { max-height: 28px; }
  .banner-logo-fallback { font-size: 0.85rem; }
  .banner-title { font-size: 1.4rem; }
}
@media (max-width: 420px) {
  .pos-banner { height: clamp(200px, 34dvh, 320px); }
  .grid > .pos-c { aspect-ratio: 2.4 / 1; }
}

.qty-stepper-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,25,107,0.25);
  border-radius: 6px;
  color: var(--pink); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s;
  line-height: 1; flex-shrink: 0;
}
.qty-stepper-btn:hover {
  background: rgba(232,25,107,0.1);
  border-color: rgba(232,25,107,0.5);
}

/* ═══════════════════════════════════════════════════════
   WISHLIST / DESIRED — spoilView
   ═══════════════════════════════════════════════════════ */

#spoilView {
  display: none;
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
}
#spoilView::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 160px; opacity: .45; mix-blend-mode: overlay;
}
.wl-amb { position: fixed; pointer-events: none; z-index: 0; border-radius: 50%; }
.wl-amb-1 { top: -20vh; left: -15vw; width: 70vw; height: 70vh; background: radial-gradient(circle, rgba(232,25,107,0.055), transparent 65%); }
.wl-amb-2 { bottom: -10vh; right: -20vw; width: 60vw; height: 60vh; background: radial-gradient(circle, rgba(147,51,234,0.045), transparent 65%); }
.wl-amb-3 { top: 30vh; left: 40%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(147,51,234,0.03), transparent 65%); }

.wl-wrapper { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HERO BANNER ── */
.wl-hero-banner {
  position: relative; overflow: hidden;
  width: 100%; height: clamp(260px, 38vw, 540px);
  background: var(--bg2);
}
.wl-hero-banner video,
.wl-hero-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55; display: block;
}
.wl-hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,3,15,0.08) 0%, rgba(7,3,15,0.55) 65%, var(--bg) 100%);
}

/* ── HEADER ── */
.wl-intro {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 0 2.25rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both;
}
.wl-eyebrow { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.wl-eyebrow-text { font-size: .72rem; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; color: var(--pink); opacity: .9; }
.wl-eyebrow-line { width: 40px; height: 1px; background: rgba(232,25,107,.3); }
.wl-back {
  font-size: .55rem; font-weight: 700; letter-spacing: .4em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: .55; transition: opacity .2s, color .2s;
  margin-left: auto; background: none; border: none; cursor: pointer;
}
.wl-back:hover { opacity: 1; color: var(--white); }
.wl-title {
  font-family: var(--fc); font-weight: 300;
  font-size: clamp(2.6rem, 9vw, 7rem);
  letter-spacing: -.02em; line-height: .9;
  color: var(--white); margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}
.wl-title em {
  font-style: italic; font-weight: 300;
  color: rgba(245,240,255,.72);
  -webkit-text-fill-color: rgba(245,240,255,.72);
}
.wl-intro-body { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.wl-intro-sub { font-family: var(--fs); font-style: italic; font-size: clamp(1rem,1.7vw,1.12rem); color: var(--muted); line-height: 1.7; max-width: 42ch; }
.wl-intro-note { font-size: .55rem; font-weight: 600; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); opacity: .5; text-align: right; line-height: 2; }

/* ── TIER INDICATOR ── */
.wl-tier-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,3,15,0.97);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .06s both;
  padding: 0;
}
.wl-tier-inner {
  padding: .9rem 1.5rem .55rem;
  max-width: 1360px; margin: 0 auto;
  position: relative;
}
.wl-tier-current {
  display: flex; align-items: baseline; gap: .55rem;
  margin-bottom: .7rem;
}
.wl-tier-current-label {
  font-size: .44rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase;
  color: var(--muted); opacity: .38;
}
.wl-tier-current-name {
  font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tier-active-color, var(--white));
  transition: color .4s ease;
}
.wl-tier-track-wrap {
  position: relative; height: 28px;
  display: flex; align-items: center;
  margin-bottom: .55rem;
}
.wl-tier-track-bg {
  position: absolute; left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 1px; background: rgba(255,255,255,.07);
  border-radius: 1px;
}
.wl-tier-track-fill {
  position: absolute; left: 0;
  top: 50%; transform: translateY(-50%);
  height: 1px; background: var(--fill-gradient, rgba(167,139,186,.2));
  border-radius: 1px;
  transition: width .55s cubic-bezier(.22,1,.36,1);
  width: 0%;
  pointer-events: none;
}
.wl-tier-markers {
  position: relative; width: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
}
.wl-tier-mk {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; position: relative;
  background: none; border: none; padding: 4px 0 0;
  font-family: var(--fd);
  -webkit-tap-highlight-color: transparent;
  z-index: 1; gap: 0;
  min-width: 36px; min-height: 32px;
  justify-content: center;
}
.wl-tier-mk-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background .3s, transform .3s, box-shadow .3s;
  flex-shrink: 0; position: relative; z-index: 2;
}
.wl-tier-mk.passed .wl-tier-mk-dot { background: var(--tc); opacity: .5; }
.wl-tier-mk.active .wl-tier-mk-dot {
  background: var(--tc);
  transform: scale(1.8);
  box-shadow: 0 0 0 4px rgba(var(--tc-raw), .12), 0 0 12px rgba(var(--tc-raw), .4);
}
.wl-tier-mk:not(.active):not(.disabled):hover .wl-tier-mk-dot { background: rgba(255,255,255,.45); transform: scale(1.3); }
.wl-tier-mk-name {
  position: absolute; top: calc(100% + .3rem);
  font-size: .42rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: var(--muted); opacity: .32;
  white-space: nowrap;
  transition: opacity .25s, color .25s;
  pointer-events: none;
}
.wl-tier-mk.active .wl-tier-mk-name { color: var(--tc); opacity: .75; }
.wl-tier-mk:not(.active):not(.disabled):hover .wl-tier-mk-name { opacity: .55; color: var(--white); }
.wl-tier-mk.disabled { opacity: .15; cursor: default; pointer-events: none; }
.wl-tier-track-spacer { height: .9rem; }
@media (max-width: 480px) {
  .wl-tier-inner { padding: .75rem 1.2rem .45rem; }
  .wl-tier-mk-name { font-size: .38rem; }
  .wl-tier-current-name { font-size: .6rem; }
}

/* ── COLLECTIONS ── */
.wl-collections-wrap { padding: 3rem 0 0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .1s both; overflow: hidden; }
.wl-collections-scroll {
  display: flex; gap: 1rem;
  overflow-x: auto; scrollbar-width: none;
  padding: 0 0 1.5rem;
  cursor: grab;
}
.wl-collections-scroll:active { cursor: grabbing; }
.wl-collections-scroll::-webkit-scrollbar { display: none; }
.wl-coll-card {
  position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0;
  width: clamp(200px, 28vw, 340px);
  aspect-ratio: 2/3;
  background: var(--bg2); border-radius: 2px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.wl-coll-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.wl-coll-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1); display: block; }
.wl-coll-card:hover .wl-coll-card-img { transform: scale(1.07); }
.wl-coll-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,3,15,0.04) 0%, rgba(7,3,15,.45) 50%, rgba(7,3,15,.94) 100%);
  transition: background .4s;
}
.wl-coll-card:hover .wl-coll-veil {
  background: linear-gradient(180deg, rgba(7,3,15,0.18) 0%, rgba(7,3,15,.6) 40%, rgba(7,3,15,.97) 100%);
}
.wl-coll-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem 1.25rem; }
.wl-coll-name { font-family: var(--fd); font-size: 1.05rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: .4rem; }
.wl-coll-desc { font-family: var(--fs); font-style: italic; font-size: .88rem; color: var(--muted); line-height: 1.5; margin-bottom: .85rem; }
.wl-coll-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--pink); opacity: 0; transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.wl-coll-card:hover .wl-coll-cta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .wl-coll-cta { opacity: .7; transform: translateY(0); } }
.wl-coll-frame { position: absolute; inset: 0; pointer-events: none; border: 1px solid transparent; transition: border-color .4s; }
.wl-coll-card:hover .wl-coll-frame { border-color: rgba(232,25,107,.18); }

.wl-back-collections {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .55rem; font-weight: 700; letter-spacing: .4em; text-transform: uppercase;
  color: var(--muted); opacity: .55; background: none; border: none; cursor: pointer;
  transition: opacity .2s; margin: 2rem 0 1rem;
}
.wl-back-collections:hover { opacity: 1; color: var(--white); }

/* ── GALLERY ── */
.wl-gallery-wrap { padding: 2.5rem 0 4rem; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .14s both; }
.wl-hot-label {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem 0 1rem;
}
.wl-hot-label-text {
  font-size: .68rem; font-weight: 800; letter-spacing: .4em; text-transform: uppercase;
  color: var(--pink); white-space: nowrap;
  display: flex; align-items: center; gap: .55rem;
}
.wl-hot-label-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--pink);
  animation: hotDot 1.4s ease infinite;
}
@keyframes hotDot { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity: .4; transform: scale(.5); } }
.wl-hot-label-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(232,25,107,.25), transparent); }

.wl-gallery {
  columns: 2; column-gap: .85rem;
}
@media(min-width:1025px) { .wl-gallery { columns: 3; column-gap: 1rem; } }
@media(min-width:1280px) { .wl-gallery { columns: 4; column-gap: 1rem; } }

/* ── CARD ── */
.wl-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg2); border-radius: 2px;
  break-inside: avoid; display: block; margin-bottom: .75rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s, transform .45s;
}
@media(min-width:600px) { .wl-card { margin-bottom: 1rem; } }
.wl-card.visible { opacity: 1; transform: translateY(0); }
.wl-card-img { width: 100%; height: auto; display: block; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s; }
.wl-card:hover .wl-card-img { transform: scale(1.06); filter: brightness(.85); }
.wl-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,3,15,0) 0%, rgba(7,3,15,.08) 40%, rgba(7,3,15,.85) 100%);
  transition: background .5s;
}
.wl-card:hover .wl-card-veil { background: linear-gradient(180deg, rgba(7,3,15,.12) 0%, rgba(7,3,15,.32) 35%, rgba(7,3,15,.95) 100%); }
.wl-card-tag {
  position: absolute; top: .75rem; right: 0;
  padding: .35rem .6rem .35rem .7rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: #fff;
  background: rgba(232, 25, 107, 0.45);
  border-left: 3px solid #e8196b;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  box-shadow: 0 4px 16px rgba(232,25,107,0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wl-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.3rem 1rem 1rem; transform: translateY(4px); opacity: .95; transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .45s; }
.wl-card:hover .wl-card-body { transform: translateY(0); opacity: 1; }
.wl-card-story { font-family: var(--fs); font-style: italic; font-size: .92rem; line-height: 1.55; color: rgba(245,240,255,.82); margin-bottom: .6rem; max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1); }
.wl-card:hover .wl-card-story { max-height: 100px; }
.wl-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: .4rem; }
.wl-card-title { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; line-height: 1.22; color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,.7); flex: 1; }
.wl-card-price { font-size: 1.1rem; font-weight: 800; color: var(--tc); flex-shrink: 0; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.wl-card-frame { position: absolute; inset: 0; pointer-events: none; border: 1px solid transparent; border-radius: 2px; transition: border-color .35s, box-shadow .35s; }
.wl-card:hover .wl-card-frame { border-color: rgba(var(--tc-raw),.18); box-shadow: inset 0 0 40px rgba(var(--tc-raw),.05); }

.wl-empty { padding: 4rem 0; text-align: center; display: none; font-family: var(--fs); font-style: italic; font-size: 1rem; color: var(--muted); opacity: .5; }

.wl-contact-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .95rem;
  background: rgba(7,3,15,.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,255,.18);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--fd);
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: transparent;
  transition: border-color .3s, background .3s, color .3s;
  white-space: nowrap;
}
.wl-contact-btn::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 6px var(--pglow); flex-shrink: 0;
}
.wl-contact-btn:hover { border-color: rgba(232,25,107,.5); background: rgba(232,25,107,.1); color: #fff; }

.wl-cat-strip { display: none; }
.wl-cat-btn { display: none; }

/* ── EDITORIAL SECTION BRIDGE ── */
.wl-section-bridge {
  position: relative; display: flex; align-items: center;
  padding: 2.8rem 0 1.6rem;
  overflow: visible;
}
.wl-section-bridge-bg {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fc); font-weight: 300;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -.02em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.025);
  text-align: left;
  pointer-events: none; user-select: none;
  white-space: nowrap; overflow: hidden;
  padding-left: .05em;
}
.wl-section-bridge-label {
  display: flex; align-items: center; gap: .8rem;
  position: relative; z-index: 1; flex-shrink: 0;
}
.wl-section-bridge-eyebrow {
  font-size: .48rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase;
  color: var(--muted); opacity: .38;
  display: flex; align-items: center; gap: .5rem;
}
.wl-section-bridge-eyebrow::before {
  content: '';
  display: inline-block; width: 18px; height: 1px;
  background: rgba(232,25,107,.3);
}
.wl-section-bridge-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), transparent 70%);
  position: relative; z-index: 1;
}
.wl-section-bridge-line::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, rgba(232,25,107,.18), transparent);
  border-radius: 1px;
}

.wl-gallery-wrap { padding-bottom: 6rem; }

/* ── HOT TAG FILTER — collapsible dropdown ── */
.wl-tags-strip { display: none; }
/* .wl-tag-filter shown by JS — no display:none here */
.wl-tag-filter {
  margin: 0 0 1.5rem;
}
.wl-tag-toggle {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem .8rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--fd);
  font-size: .5rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
  margin-bottom: .65rem;
}
.wl-tag-toggle:hover,
.wl-tag-toggle.open { border-color: rgba(232,25,107,.3); color: var(--white); background: rgba(232,25,107,.04); }
.wl-tag-toggle-arrow {
  font-size: .9rem; line-height: 1; transition: transform .3s var(--spring);
}
.wl-tag-toggle.open .wl-tag-toggle-arrow { transform: rotate(90deg); }
.wl-tag-chips {
  display: none; flex-wrap: wrap; gap: .4rem;
  animation: fadeUp .25s var(--spring) both;
}
.wl-tag-chips.open { display: flex; }
.wl-tag-chip {
  display: inline-flex; align-items: center;
  padding: .3rem .75rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  font-family: var(--fd); font-size: .48rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); background: transparent; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.wl-tag-chip:hover { border-color: rgba(232,25,107,.3); color: var(--off); }
.wl-tag-chip.active {
  border-color: var(--pink); color: var(--white);
  background: rgba(232,25,107,.1);
  box-shadow: 0 0 12px rgba(232,25,107,.12);
}

/* ── MODAL ── */
.wl-modal { display: none; position: fixed; inset: 0; z-index: 200; align-items: stretch; justify-content: stretch; }
.wl-modal.active { display: flex; }
.wl-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(16px); animation: fadeBg .4s ease both; }
@keyframes fadeBg { from { opacity: 0; } to { opacity: 1; } }
.wl-modal-panel {
  position: relative; z-index: 1; width: 100%; height: 100dvh; max-width: 100%;
  background: var(--bg); border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; overflow: hidden;
  animation: slideUp .5s cubic-bezier(.16,1,.3,1) both;
}
@media(min-width:1025px) {
  .wl-modal { align-items: center; justify-content: center; }
  .wl-modal-panel {
    max-width: 1180px; width: 94%; height: auto;
    border: 1px solid rgba(255,255,255,.08); border-radius: 4px;
    flex-direction: row;
    max-height: 88dvh; overflow: hidden;
    animation: panelIn .5s cubic-bezier(.16,1,.3,1) both;
  }
}
@keyframes panelIn { from { opacity: 0; transform: scale(.96) translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
.wl-modal-img-col {
  position: relative; overflow: hidden;
  flex-shrink: 0; width: 100%; height: 42dvh;
  display: flex; flex-direction: column;
}
@media(min-width:1025px) {
  .wl-modal-img-col { width: 58%; height: auto; flex-shrink: 0; }
}
.wl-modal-img-wrap { display: flex; flex-direction: column; width: 100%; height: 100%; }
.wl-modal-img-main { flex: 1; min-height: 0; position: relative; overflow: hidden; }
.wl-modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wl-modal-img-tier { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem .75rem; background: linear-gradient(0deg, rgba(7,3,15,.95), transparent); pointer-events: none; }
.wl-modal-tier-label { font-size: .52rem; font-weight: 800; letter-spacing: .4em; text-transform: uppercase; color: var(--tc); }
.wl-modal-info {
  padding: 1.5rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  overflow-y: auto; flex: 1; min-height: 0;
  background: var(--bg);
  scrollbar-width: thin; scrollbar-color: rgba(147,51,234,.3) transparent;
}
.wl-modal-info::-webkit-scrollbar { width: 3px; }
.wl-modal-info::-webkit-scrollbar-track { background: transparent; }
.wl-modal-info::-webkit-scrollbar-thumb { background: rgba(147,51,234,.3); border-radius: 3px; }
.wl-modal-close { align-self: flex-end; margin-bottom: 1rem; background: none; border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--muted); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; transition: all .2s; font-family: var(--fd); padding: .3rem .75rem; }
.wl-modal-close:hover { border-color: rgba(232,25,107,.35); color: var(--pink); background: rgba(232,25,107,.06); }
.wl-modal-cat { font-size: .5rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--muted); opacity: .55; margin-bottom: .55rem; }
.wl-modal-title { font-family: var(--fc); font-weight: 300; font-size: clamp(1.6rem,3.5vw,2.4rem); line-height: 1.05; color: var(--white); margin-bottom: 1.1rem; letter-spacing: -.01em; }
.wl-modal-story { font-family: var(--fs); font-style: italic; font-size: .9rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.4rem; }
.wl-modal-divider { height: 1px; background: rgba(255,255,255,.05); margin: 0 0 1.1rem; }
.wl-modal-inv-label { font-size: .48rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--muted); opacity: .5; margin-bottom: .3rem; display: block; }
.wl-modal-price { font-family: var(--fc); font-weight: 300; font-size: 2.2rem; letter-spacing: -.01em; color: var(--tc); margin-bottom: 1.25rem; line-height: 1; }
.wl-modal-section-label {
  font-size: .44rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase;
  color: var(--muted); opacity: .42; margin-bottom: .45rem; display: block;
}
/* Payment chips */
.wl-pay-list { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.wl-pay-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  font-family: var(--fd); font-size: .64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  background: rgba(var(--pb-raw),.04);
}
.wl-pay-btn:hover { border-color: var(--pb-color); background: rgba(var(--pb-raw),.1); transform: translateY(-1px); }
.wl-pay-btn-icon { font-size: 1rem; line-height: 1; }
/* ship row */
.wl-ship-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem 0; border-top: 1px solid rgba(255,255,255,.04); margin-top: .5rem; }
.wl-ship-label { font-size: .5rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); opacity: .55; }
.wl-ship-copy-cta { font-size: .5rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); padding: .25rem .65rem; border: 1px solid rgba(255,255,255,.1); border-radius: 3px; background: transparent; cursor: pointer; transition: all .18s; font-family: var(--fd); }
.wl-ship-copy-cta:hover { color: var(--white); border-color: rgba(255,255,255,.25); }
.wl-ship-copy-cta.ok { color: var(--success) !important; border-color: var(--success) !important; }
/* links section */
.wl-links-section { margin-bottom: 1.1rem; }
.wl-links-label { font-size: .44rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--muted); opacity: .42; display: block; margin-bottom: .45rem; }
.wl-links-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.wl-link-chip {
  display: inline-flex; align-items: center;
  padding: .28rem .75rem;
  border: 1px solid rgba(232,25,107,.2);
  border-radius: 99px; font-family: var(--fd); font-size: .52rem;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink); text-decoration: none; transition: all .18s;
}
.wl-link-chip:hover { border-color: var(--pink); background: rgba(232,25,107,.08); color: var(--white); }
/* modal thumbs */
.wl-modal-thumbs {
  display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none;
  padding: .4rem .5rem;
}
.wl-modal-thumbs::-webkit-scrollbar { display: none; }
.wl-modal-thumb {
  width: 46px; height: 46px; flex-shrink: 0;
  object-fit: cover; cursor: pointer; opacity: .45;
  transition: opacity .2s; border: 1px solid transparent;
  display: block;
}
.wl-modal-thumb.active { opacity: 1; border-color: rgba(232,25,107,.6); }
.wl-modal-thumb:hover:not(.active) { opacity: .75; }
.wl-modal-thumbs:empty, .wl-modal-thumbs:has(:only-child) { display: none; }
.wl-modal-hot-cta {
  position: absolute; top: 0; left: 0; right: 0;
  padding: .65rem 1rem;
  background: rgba(var(--tc-raw), .18);
  border-bottom: 1px solid rgba(var(--tc-raw), .3);
  font-family: var(--fd); font-size: .52rem; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--tc); text-align: center;
  cursor: default; display: none;
}
.wl-modal-hot-cta.visible { display: block; }

/* ── FLOATING CUSTOM AMOUNT / TIP JAR ── */
.wl-custom-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 100;
}
.wl-custom-trigger {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(7,3,15,.95);
  border: 1px solid rgba(232,25,107,.45);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .25s;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,.5), 0 0 0 0 rgba(232,25,107,.2);
  position: relative;
  font-family: var(--fd);
  color: var(--pink);
}
.wl-custom-trigger:hover { border-color: rgba(232,25,107,.85); transform: scale(1.06); box-shadow: 0 6px 28px rgba(0,0,0,.55), 0 0 0 6px rgba(232,25,107,.08); }
.wl-custom-trigger-glyph { font-size: 1.1rem; line-height: 1; display: block; }
.wl-custom-trigger::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(232,25,107,.25);
  animation: triggerRing 2.4s ease infinite;
}
@keyframes triggerRing {
  0%   { opacity: .8; transform: scale(.9); }
  60%  { opacity: 0;  transform: scale(1.45); }
  100% { opacity: 0;  transform: scale(1.45); }
}
.wl-custom-trigger-label {
  position: absolute; right: calc(100% + .75rem); top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: rgba(7,3,15,.92); border: 1px solid rgba(232,25,107,.2);
  border-radius: 2px; padding: .3rem .7rem;
  font-family: var(--fd); font-size: .44rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  pointer-events: none; opacity: 0; transition: opacity .2s;
}
.wl-custom-trigger:hover .wl-custom-trigger-label { opacity: 1; }

.wl-custom-float::before {
  content: '';
  position: fixed; inset: 0; z-index: 199;
  background: rgba(7,3,15,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease;
}
.wl-custom-float.panel-open::before { opacity: 1; pointer-events: all; }

.wl-custom-panel {
  position: fixed; inset: 0; z-index: 200;
  width: 100%; height: 100dvh; max-height: 100dvh;
  background: rgba(10,4,26,.99);
  border: none; border-radius: 0;
  padding: calc(3.5rem + env(safe-area-inset-top)) 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  display: none; flex-direction: column; gap: 1rem;
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
  -webkit-overflow-scrolling: touch;
}
.wl-custom-panel.open {
  display: flex;
  animation: customPanelInMobile .35s cubic-bezier(.16,1,.3,1) both;
}
@keyframes customPanelInMobile {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media(min-width:1025px) {
  .wl-custom-panel {
    position: fixed; inset: 0 0 0 auto; left: auto;
    width: min(520px, 50vw); height: 100dvh; max-height: 100dvh;
    border-left: 1px solid rgba(232,25,107,.2);
    border-radius: 0;
    padding: 2.5rem 2rem 2rem;
    box-shadow: -30px 0 80px rgba(0,0,0,.7);
  }
  .wl-custom-panel.open { animation: customPanelInDesktop .35s cubic-bezier(.16,1,.3,1) both; }
}
@keyframes customPanelInDesktop {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media(max-width:600px) {
  .wl-custom-float { bottom: 1.25rem; right: 1.25rem; }
  .wl-custom-trigger { width: 40px; height: 40px; }
}

.wl-custom-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  position: sticky; top: 0; padding: .25rem 0 .9rem; margin: -.25rem 0 0;
  background: linear-gradient(180deg, rgba(10,4,26,.98) 70%, rgba(10,4,26,0));
  z-index: 5;
}
.wl-custom-panel-title {
  font-family: var(--fd); font-size: .72rem; font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase; color: var(--white); opacity: .85;
}
.wl-custom-close {
  background: none; border: 1px solid rgba(255,255,255,.1); cursor: pointer; color: var(--muted); font-size: 1rem;
  transition: all .16s; line-height: 1; flex-shrink: 0; padding: .4rem .55rem; border-radius: 3px;
}
.wl-custom-close:hover { color: var(--white); }
.wl-custom-sub {
  font-family: var(--fs); font-style: italic; font-size: .95rem; color: var(--muted); line-height: 1.6;
}
/* Fiat buttons — 2 columns on desktop, 1 column on mobile */
.wl-custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.wl-custom-card {
  display: flex; align-items: center; gap: .7rem;
  padding: .95rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08); border-radius: 4px;
  text-decoration: none; transition: all .2s;
}
.wl-custom-card:hover { background: rgba(var(--gc-raw),.07); border-color: rgba(var(--gc-raw),.3); transform: translateY(-1px); }
.wl-custom-card-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .95rem; color: var(--gc-color, var(--pink)); background: rgba(var(--gc-raw),.1); border: 1px solid rgba(var(--gc-raw),.2); flex-shrink: 0; }
.wl-custom-card-info { flex: 1; min-width: 0; }
.wl-custom-card-name { font-size: .85rem; font-weight: 800; color: var(--white); letter-spacing: .03em; display: block; }
.wl-custom-card-sub { font-family: var(--fs); font-style: italic; font-size: .68rem; color: var(--muted); }
.wl-custom-card-arrow { color: var(--muted); font-size: .85rem; flex-shrink: 0; transition: transform .2s, color .2s; }
.wl-custom-card:hover .wl-custom-card-arrow { transform: translateX(3px); color: var(--gc-color, var(--white)); }

/* Crypto section label */
.wl-custom-crypto-label { font-size: .6rem; font-weight: 700; letter-spacing: .4em; text-transform: uppercase; color: rgba(157,145,184,.55); margin: .8rem 0 .5rem; }
/* Crypto grid: 2 cols on desktop, 1 col on mobile (to match fiat look) */
.wl-custom-crypto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .32rem; }
.wl-crypto-tile {
  background: #030108; border: 1px solid rgba(147,51,234,.14);
  border-top: 2px solid var(--ct-color, var(--violet)); border-radius: 0 0 3px 3px;
  padding: .6rem .7rem .5rem; cursor: pointer; transition: border-color .2s, background .2s;
}
.wl-crypto-tile:hover { background: rgba(147,51,234,.04); border-color: var(--ct-color, var(--violet)); }
.wl-crypto-tile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; }
.wl-crypto-ticker { font-family: 'Courier New', monospace; font-size: .65rem; font-weight: 700; color: var(--ct-color, var(--lilac)); letter-spacing: .06em; }
.wl-crypto-network { font-family: 'Courier New', monospace; font-size: .44rem; color: rgba(157,145,184,.5); letter-spacing: .03em; display: block; margin-bottom: .2rem; }
.wl-crypto-addr { font-family: 'Courier New', monospace; font-size: .46rem; color: rgba(157,145,184,.32); }
.wl-crypto-copy { font-family: 'Courier New', monospace; font-size: .4rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ct-color, var(--violet)); opacity: .55; padding: .1rem .3rem; border: 1px solid var(--ct-color, var(--violet)); border-radius: 2px; transition: opacity .16s; user-select: none; flex-shrink: 0; }
.wl-crypto-tile:hover .wl-crypto-copy { opacity: 1; }
.wl-crypto-copy.ok { color: var(--success) !important; border-color: var(--success) !important; opacity: 1 !important; }

/* Mobile: crypto tiles as full-width rows (same look as fiat buttons) */
@media(max-width:480px) {
  .wl-custom-crypto-grid {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
  .wl-crypto-tile {
    display: flex; align-items: center; gap: .75rem;
    padding: .9rem 1rem;
    border-top: none;
    border-left: 3px solid var(--ct-color, var(--violet));
    border-radius: 4px;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(147,51,234,.14);
    border-right: 1px solid rgba(147,51,234,.14);
    border-bottom: 1px solid rgba(147,51,234,.14);
  }
  .wl-crypto-tile-top { flex: 0 0 auto; flex-direction: column; align-items: flex-start; gap: .1rem; margin-bottom: 0; min-width: 60px; }
  .wl-crypto-network { margin-bottom: 0; }
  .wl-crypto-addr { flex: 1; font-size: .48rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wl-crypto-copy { align-self: center; }
  .wl-custom-grid { grid-template-columns: 1fr; }
}

/* Freeform section */
.wl-freeform { border-top: 1px solid rgba(255,255,255,.04); padding: 3rem 0 2.5rem; }
.wl-freeform-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .6rem; }
.wl-freeform-head-line { width: 40px; height: 1px; background: rgba(157,145,184,.2); }
.wl-freeform-eyebrow { font-size: .52rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase; color: var(--muted); opacity: .65; }
.wl-freeform-sub { font-family: var(--fs); font-style: italic; font-size: clamp(.88rem,1.8vw,1rem); color: var(--muted); line-height: 1.7; margin-bottom: 1.75rem; max-width: 44ch; }
.wl-freeform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; margin-bottom: .5rem; }
@media(min-width:720px) { .wl-freeform-grid { grid-template-columns: repeat(4, 1fr); } }
.wl-gateway-card {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px; text-decoration: none; transition: all .22s;
}
.wl-gateway-card:hover { background: rgba(var(--gc-raw),.08); border-color: rgba(var(--gc-raw),.3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.wl-gateway-icon { width: 34px; height: 34px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: .95rem; font-weight: 900; color: var(--gc-color, var(--pink)); background: rgba(var(--gc-raw),.08); border: 1px solid rgba(var(--gc-raw),.2); flex-shrink: 0; font-family: var(--fd); }
.wl-gateway-info { flex: 1; min-width: 0; }
.wl-gateway-name { font-size: .78rem; font-weight: 800; color: var(--white); letter-spacing: .04em; display: block; }
.wl-gateway-sub { font-family: var(--fs); font-style: italic; font-size: .58rem; color: var(--muted); }
.wl-gateway-arrow { color: rgba(157,145,184,.3); font-size: .75rem; transition: transform .2s, color .2s; }
.wl-gateway-card:hover .wl-gateway-arrow { transform: translateX(3px); color: var(--gc-color); }
.wl-ff-crypto-label { display: none; }

/* Conv zone */
.wl-conv { position: relative; border-radius: 2px; overflow: hidden; margin: 2.5rem 0 2rem; min-height: 280px; }
.wl-conv-video { width: 100%; height: clamp(280px, 38vw, 520px); object-fit: cover; display: block; filter: saturate(.82) brightness(.6); }
.wl-conv-fallback { width: 100%; height: clamp(280px, 38vw, 520px); background: linear-gradient(135deg, rgba(232,25,107,.1), rgba(10,4,26,.97) 45%, rgba(147,51,234,.08)); }
.wl-conv-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,3,15,.04) 0%, rgba(7,3,15,.28) 42%, rgba(7,3,15,.9) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem 2.5rem; }
.wl-conv-eyebrow { font-size: .55rem; font-weight: 700; letter-spacing: .4em; text-transform: uppercase; color: var(--pink); margin-bottom: .6rem; opacity: .9; }
.wl-conv-title { font-family: var(--fc); font-weight: 300; font-size: clamp(2.2rem, 5.5vw, 4.5rem); line-height: .96; color: var(--white); }
.wl-conv-title em { font-style: italic; color: rgba(245,240,255,.55); }

/* Footer */
.wl-footer { border-top: 1px solid rgba(255,255,255,.04); padding: 2.5rem 0 5rem; }
.wl-footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.wl-footer-copy { font-family: var(--fs); font-style: italic; font-size: .85rem; line-height: 1.7; color: rgba(245,240,255,.35); max-width: 38ch; }
.wl-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.wl-footer-legal a, .wl-footer-legal button { font-size: .52rem; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); opacity: .4; text-decoration: none; transition: opacity .2s; background: none; border: none; cursor: pointer; font-family: var(--fd); }
.wl-footer-legal a:hover, .wl-footer-legal button:hover { opacity: .8; color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media(max-width:680px) {
  .wl-tier-label { display: none; }
  .wl-tier-inner { padding: 0 .5rem; }
}
@media(max-width:1024px) {
  .wl-wrapper { padding: 0 1.25rem; }
  .wl-hero-banner { height: clamp(220px, 42vw, 380px); }
  .wl-intro-body { gap: 1.25rem; }
  .wl-intro-note { text-align: left; }
  .wl-card-title { font-size: 0.55rem; }
  .wl-card-price { font-size: 0.90rem; }
  /* Hide story text in grid cards on mobile — too cramped */
  .wl-card-story { display: none !important; }
  /* Hide story text in zoom modal on mobile */
  .wl-modal-story { display: none; }
  .wl-card-tag { font-size: .55rem; }
  .wl-coll-name { font-size: 1.1rem; }
  .wl-coll-desc { font-size: .92rem; }
  .wl-coll-cta { font-size: .7rem; }
  .wl-tier-name { font-size: .68rem; }
  .wl-gallery { columns: 2 !important; column-gap: .75rem !important; }
}
@media(max-width:480px) {
  .wl-wrapper { padding: 0 1rem; }
  .wl-freeform-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════ CONTACT / FORMS ════════════════════════════ */

#contactView {
  display: none;
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: 0 1rem 4rem;
}
.contact-page {
  max-width: 620px; margin: 0 auto; width: 100%;
}
.contact-header {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(232,25,107,0.12);
}
.contact-header-eyebrow {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--pink); opacity: 0.75;
  margin-bottom: 0.5rem; display: block;
}
.contact-header-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, var(--fuchsia) 55%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 24px rgba(232,25,107,0.22));
}
.contact-header-sub {
  font-family: var(--fs); font-style: italic;
  font-size: 0.9rem; color: var(--muted);
  margin-top: 0.5rem; line-height: 1.6;
}
.tabs-wrap {
  position: relative;
  border-bottom: 1px solid rgba(232,25,107,0.12);
}
.tabs {
  display: flex; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-right: 2.4rem;
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 2.4rem), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 2.4rem), transparent 100%);
}
.tabs::-webkit-scrollbar { display: none; }
.tabs-swipe-hint {
  position: absolute; right: 0.25rem; top: 50%;
  transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 2px;
  pointer-events: none;
  color: var(--pink);
  opacity: 0.85;
  animation: swipeNudge 1.8s ease-in-out infinite;
}
.tabs-swipe-line {
  display: inline-block; width: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
}
.tabs-swipe-arrow {
  font-family: var(--fd); font-size: 1.1rem; line-height: 1;
  font-weight: 400;
}
@keyframes swipeNudge {
  0%, 100% { transform: translate(0, -50%); opacity: 0.55; }
  50%      { transform: translate(4px, -50%); opacity: 1; }
}
.tabs-wrap.tabs-end .tabs-swipe-hint { opacity: 0; transition: opacity 0.3s; }
.tabs-wrap.tabs-end .tabs { mask-image: none; -webkit-mask-image: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 1rem 1.25rem 0.9rem;
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: var(--fd); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--off); }
.tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }

.back-home {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.4rem 0;
  background: none; border: none;
  font-family: var(--fd); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: color 0.25s var(--ease);
}
.back-home .back-home-arrow {
  display: inline-block; font-size: 0.85rem;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.back-home:hover { color: var(--white); }
.back-home:hover .back-home-arrow { transform: translateX(4px); color: var(--pink); }
.tab-panel { display: none; padding: 2.5rem 0; }
.tab-panel.active { display: block; animation: cPanelIn 0.3s var(--ease) both; }
@keyframes cPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-group { margin-bottom: 1.75rem; }
.form-label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem;
}
.form-label .req { color: var(--pink); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(232,25,107,0.2);
  border-radius: 0; padding: 0.6rem 0;
  color: var(--white); font-family: var(--fd); font-size: 0.95rem;
  transition: border-color var(--t); outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--pink); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(157,145,184,0.35); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%239333ea' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 1.2rem; }
.form-select option { background: #0d0620; }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-error { font-size: 0.72rem; color: var(--error); margin-top: 0.3rem; display: none; }
.form-error.show { display: block; }
.section-divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0 1.5rem; }
.section-divider-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--pink); white-space: nowrap; opacity: 0.8; }
.section-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(232,25,107,0.2), transparent); }
.turnoffs-grid { display: grid; grid-template-columns: 55fr 45fr; gap: 0 2rem; margin-bottom: 1.75rem; }
.turnoffs-title { grid-column: 1 / -1; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--error); margin-bottom: 0.9rem; }
.turnoffs-col { display: flex; flex-direction: column; gap: 0.5rem; }
.turnoffs-col li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.78rem; color: var(--off); line-height: 1.4; list-style: none; }
.turnoffs-col li .icon { flex-shrink: 0; width: 14px; height: 14px; margin-top: 1px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 900; background: rgba(255,58,110,0.13); color: var(--error); }
.type-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.75rem; }
.type-card { padding: 0.9rem 0.5rem; background: var(--bg3); border: 1px solid rgba(232,25,107,0.12); border-radius: var(--r); text-align: center; cursor: pointer; transition: all var(--t); user-select: none; }
.type-card:hover { border-color: rgba(232,25,107,0.3); }
.type-card.selected { border-color: var(--pink); background: rgba(232,25,107,0.07); box-shadow: 0 0 24px rgba(232,25,107,0.1); }
.type-card input { display: none; }
.type-card-icon { font-size: 1.1rem; margin-bottom: 0.35rem; display: block; }
.type-card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--off); }
.type-card.selected .type-card-label { color: var(--white); }
.quality-row { display: flex; gap: 0.75rem; margin-bottom: 1.75rem; }
.quality-opt { flex: 1; padding: 0.75rem 1rem; background: var(--bg3); border: 1px solid rgba(232,25,107,0.12); border-radius: var(--r); cursor: pointer; transition: all var(--t); display: flex; flex-direction: column; gap: 0.2rem; user-select: none; }
.quality-opt:hover { border-color: rgba(232,25,107,0.3); }
.quality-opt.selected { border-color: var(--pink); background: rgba(232,25,107,0.07); }
.quality-opt input { display: none; }
.quality-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--off); }
.quality-opt.selected .quality-name { color: var(--white); }
.quality-price { font-size: 0.7rem; color: var(--muted); }
.quality-opt.selected .quality-price { color: var(--pink); }
.addon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; margin-bottom: 1.75rem; }
.addon-chip { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0.9rem; background: var(--bg3); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r); cursor: pointer; transition: all 0.2s; user-select: none; position: relative; }
.addon-chip:hover { border-color: rgba(34,211,161,0.3); background: rgba(34,211,161,0.04); }
.addon-chip.selected { border: 2px solid var(--success); background: rgba(34,211,161,0.09); }
.addon-chip input { display: none; }
.addon-check { flex-shrink: 0; width: 16px; height: 16px; border: 1.5px solid rgba(255,255,255,0.12); border-radius: 3px; background: transparent; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: transparent; transition: all 0.18s; }
.addon-chip.selected .addon-check { background: var(--success); border-color: var(--success); color: #07030f; font-weight: 900; }
.addon-chip-name { flex: 1; font-size: 0.72rem; color: var(--off); }
.addon-chip.selected .addon-chip-name { color: var(--white); font-weight: 600; }
.addon-chip-price { font-size: 0.7rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.addon-chip.selected .addon-chip-price { color: var(--success); }
.delivery-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.5rem; margin-bottom: 1.75rem; }
.delivery-card { padding: 0.75rem 0.4rem; background: var(--bg3); border: 1px solid rgba(147,51,234,0.15); border-radius: var(--r); text-align: center; cursor: pointer; transition: all var(--t); user-select: none; }
.delivery-card:hover { border-color: rgba(147,51,234,0.35); }
.delivery-card.selected { border-color: var(--violet); background: rgba(147,51,234,0.08); }
.delivery-card input { display: none; }
.delivery-name { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--off); display: block; margin-bottom: 0.2rem; }
.delivery-card.selected .delivery-name { color: var(--white); }
.delivery-time { font-size: 0.58rem; color: var(--muted); display: block; margin-bottom: 0.35rem; }
.delivery-badge { font-size: 0.58rem; font-weight: 700; color: var(--violet); display: block; }
.delivery-card.selected .delivery-badge { color: var(--lilac); }
.delivery-card[data-mult="0"] .delivery-badge { color: var(--success); }
.price-summary { background: rgba(232,25,107,0.05); border: 1px solid rgba(232,25,107,0.15); border-radius: var(--r); padding: 1.25rem 1.5rem; margin-bottom: 1.75rem; display: none; }
.price-summary.show { display: block; animation: cPanelIn 0.25s ease both; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.3rem 0; font-size: 0.82rem; }
.price-row-label { color: var(--muted); }
.price-row-val { color: var(--off); font-weight: 500; }
.price-divider { height: 1px; background: rgba(232,25,107,0.12); margin: 0.5rem 0; }
.price-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.05rem; font-weight: 800; }
.price-total-label { color: var(--off); }
.price-total-val { color: var(--fuchsia); }
.price-note { font-size: 0.68rem; color: var(--muted); font-style: italic; font-family: var(--fs); margin-top: 0.5rem; line-height: 1.5; }
.recaptcha-wrap { margin-bottom: 1.75rem; display: flex; justify-content: flex-start; }
.submit-btn { width: 100%; padding: 1rem 1.5rem; background: linear-gradient(135deg, var(--pink), var(--violet)); border: none; border-radius: var(--r); font-family: var(--fd); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; cursor: pointer; position: relative; overflow: hidden; transition: filter var(--t), transform var(--t); }
.submit-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%); opacity: 0; transition: opacity 0.2s; }
.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; filter: none; }
.submit-btn-ghost { width: 100%; padding: 0.75rem; background: transparent; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); font-family: var(--fd); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); cursor: pointer; margin-top: 0.6rem; transition: border-color 0.2s, color 0.2s; }
.submit-btn-ghost:hover { border-color: rgba(255,255,255,0.18); color: var(--off); }
.confirm-panel { text-align: center; padding: 3rem 1rem; display: none; }
.confirm-panel.show { display: block; animation: cPanelIn 0.4s var(--ease) both; }
.confirm-icon { font-size: 2rem; color: var(--pink); margin-bottom: 1rem; display: block; }
.confirm-title { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.6rem; }
.confirm-sub { font-family: var(--fs); font-style: italic; font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 380px; margin: 0 auto 1.5rem; }
.confirm-download { display: inline-block; padding: 0.8rem 2rem; background: rgba(232,25,107,0.1); border: 1px solid rgba(232,25,107,0.3); border-radius: var(--r); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lilac); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.confirm-download:hover { background: rgba(232,25,107,0.18); color: var(--white); }
.page-legal {
  text-align: center; padding: 1.5rem 0;
  border-top: 1px solid rgba(232,25,107,0.08);
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim);
}
.page-legal a { color: rgba(157,145,184,0.55); text-decoration: none; transition: color 0.18s; }
.page-legal a:hover { color: var(--muted); }
.page-legal span { margin: 0 0.5rem; opacity: 0.3; }
.page-legal-copy { display: block; margin-bottom: 0.55rem; color: rgba(157,145,184,0.3); font-size: 0.52rem; letter-spacing: 0.08em; }
@media(max-width: 520px) {
  .form-grid2 { grid-template-columns: 1fr; gap: 0; }
  .addon-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: repeat(3,1fr); }
  .turnoffs-grid { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: repeat(3,1fr); }
}
@media(max-width: 380px) {
  .delivery-grid { grid-template-columns: repeat(2,1fr); }
  .quality-row { flex-direction: column; }
}
@media(max-width: 360px) {
  .cf-turnstile { transform: scale(0.82); transform-origin: left center; }
}


/* ═══════════════ AGE GATE ══════════════════════════════════ */

#ageGate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(7,3,15,0.6);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  opacity: 0; pointer-events: none; transition: opacity 0.9s ease;
}
#ageGate.ag-visible { opacity: 1; pointer-events: all; }
#ageGate::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, rgba(0,0,0,0.07) 0px, rgba(0,0,0,0.07) 1px,
    transparent 1px, transparent 3px
  );
}
.ag-card {
  position: relative; width: min(460px, 100%);
  background: rgba(10,4,26,0.94);
  border: 1px solid rgba(232,25,107,0.2);
  border-radius: 3px; padding: 0; overflow: hidden;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.75s cubic-bezier(.22,1,.36,1), opacity 0.75s ease;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(232,25,107,0.05), 0 40px 80px rgba(0,0,0,0.75), 0 0 100px rgba(147,51,234,0.07);
}
#ageGate.ag-visible .ag-card { transform: translateY(0) scale(1); opacity: 1; transition-delay: 0.15s; }
.ag-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--fuchsia), var(--pink));
  background-size: 300% 100%;
  animation: agBarFlow 3s linear infinite;
}
@keyframes agBarFlow { 0% { background-position: 0% 0%; } 100% { background-position: 300% 0%; } }
.ag-body { padding: 2.6rem 2.4rem 1.8rem; }
.ag-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1.5px solid rgba(232,25,107,0.35); border-radius: 50%;
  font-family: var(--fd); font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.06em; color: var(--pink);
  margin-bottom: 1.5rem; position: relative;
}
.ag-badge::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; border: 1px solid rgba(232,25,107,0.1);
}
.ag-eyebrow {
  font-family: var(--fd); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--pink); opacity: 0.7; margin-bottom: 0.5rem;
}
.ag-title {
  font-family: var(--fd); font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1.08; margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #fff 0%, var(--fuchsia) 60%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(232,25,107,0.22));
}
.ag-sub {
  font-family: var(--fs); font-size: 0.83rem; font-style: italic;
  color: var(--muted); line-height: 1.65; margin-bottom: 1.8rem;
}
.ag-divider { height: 1px; margin-bottom: 1.6rem; background: linear-gradient(90deg, transparent, rgba(232,25,107,0.18), transparent); }
.ag-check-row { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.6rem; cursor: pointer; }
.ag-check-row input[type="checkbox"] { display: none; }
.ag-checkmark {
  flex-shrink: 0; margin-top: 2px;
  width: 17px; height: 17px;
  border: 1.5px solid rgba(232,25,107,0.3);
  border-radius: 3px; background: transparent;
  transition: all 0.2s ease; position: relative;
}
.ag-check-row:hover .ag-checkmark { border-color: var(--pink); }
.ag-check-row input:checked ~ .ag-checkmark { background: var(--pink); border-color: var(--pink); box-shadow: 0 0 10px var(--pglow); }
.ag-check-row input:checked ~ .ag-checkmark::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.ag-check-label { font-family: var(--fd); font-size: 0.7rem; font-weight: 500; color: var(--off); line-height: 1.55; letter-spacing: 0.02em; }
.ag-check-label a { color: var(--lilac); text-decoration: none; border-bottom: 1px solid rgba(216,180,254,0.25); transition: color 0.18s, border-color 0.18s; }
.ag-check-label a:hover { color: var(--fuchsia); border-color: var(--fuchsia); }
.ag-btns { display: flex; flex-direction: column; gap: 0.6rem; }
.ag-btn-enter {
  position: relative; width: 100%; padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  border: none; border-radius: 3px;
  font-family: var(--fd); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
  cursor: pointer; overflow: hidden;
  transition: filter 0.22s, transform 0.22s, opacity 0.22s;
}
.ag-btn-enter::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%); opacity: 0; transition: opacity 0.22s; }
.ag-btn-enter:hover:not(:disabled)::before { opacity: 1; }
.ag-btn-enter:hover:not(:disabled) { filter: brightness(1.12); transform: translateY(-1px); }
.ag-btn-enter:disabled { opacity: 0.3; cursor: not-allowed; transform: none; filter: none; animation: none; }
.ag-btn-enter:not(:disabled) { animation: agPulse 2.8s ease infinite; }
@keyframes agPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,25,107,0.3); } 50% { box-shadow: 0 0 0 10px rgba(232,25,107,0); } }
.ag-btn-exit {
  width: 100%; padding: 0.65rem 1.5rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  font-family: var(--fd); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: border-color 0.22s, color 0.22s;
}
.ag-btn-exit:hover { border-color: rgba(255,255,255,0.16); color: var(--off); }
.ag-legal { margin-top: 1.5rem; text-align: center; font-family: var(--fd); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(124,110,153,0.45); }
.ag-legal a { color: rgba(124,110,153,0.55); text-decoration: none; transition: color 0.18s; }
.ag-legal a:hover { color: var(--muted); }
.ag-legal span { margin: 0 0.4rem; opacity: 0.35; }
.ag-corner { position: absolute; width: 16px; height: 16px; border-color: rgba(232,25,107,0.25); border-style: solid; }
.ag-corner-tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.ag-corner-tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.ag-corner-bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.ag-corner-br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }


/* ═══════════════ INLINE-STYLE REPLACEMENTS ═════════════════ */

.banner-contact.spoil-contact-fixed {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 45;
}
.wl-hero-banner .wl-hero-img { opacity: .52; }
#wlCustomFloat    { display: none; }
#wlCollectionSingle { display: none; }
#wlLinksSection   { display: none; }
.wl-tier-sticky {
  max-width: 100%;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.form-intro {
  font-family: var(--fs);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-intro--press {
  font-family: var(--fs);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-intro--custom {
  font-family: var(--fs);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.qty-units-hint  { opacity: 0.55; }
.qty-units-row   { display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0; }
.qty-units-val   { font-size: 1.25rem; font-weight: 800; color: var(--white); min-width: 28px; text-align: center; }
.qty-units-label { font-size: 0.68rem; color: var(--muted); font-family: var(--fs); font-style: italic; }
.textarea-tall { min-height: 110px; }
.label-faint { opacity: 0.5; }


/* ═══════════════ BIO V2 — EDITORIAL OVERRIDES ══════════════ */

/* Root class added by bio-v2.js: body.bio-v2 */
.bio-v2 .cell-info.v2-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 0; transform: none;
  display: flex; align-items: flex-end;
}
.bio-v2 .v2-cell-inner {
  width: 100%; padding: .85rem 1rem 1rem;
  display: flex; flex-direction: column; gap: .18rem;
}
.bio-v2 .v2-eyebrow {
  display: block;
  font-size: .42rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(232,25,107,.7); margin-bottom: .1rem;
}
.bio-v2 .v2-name {
  display: block;
  font-family: var(--fc); font-weight: 300;
  font-size: clamp(.95rem, 1.3vw, 1.25rem);
  color: var(--white); letter-spacing: .01em; line-height: 1.1;
  transition: color .3s;
}
.bio-v2 .cell:hover .v2-name { color: #fff; }
.bio-v2 .v2-cta {
  display: inline-block; margin-top: .35rem;
  font-size: .44rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(245,240,255,.5);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .5s var(--spring), transform .5s var(--spring), color .3s;
}
.bio-v2 .cell:hover .v2-cta { opacity: 1; transform: translateX(0); color: var(--pink); }

/* Thin bottom reveal line */
.bio-v2 .v2-cell-line {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 8;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--spring);
}
.bio-v2 .cell:hover .v2-cell-line { transform: scaleX(1); }

/* Index number */
.bio-v2 .v2-idx {
  position: absolute; top: .75rem; left: .85rem; z-index: 7;
  font-size: .38rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(245,240,255,.12); font-family: var(--fd);
  transition: color .3s;
}
.bio-v2 .cell:hover .v2-idx { color: rgba(245,240,255,.35); }

/* V2 banner content: more austere, left-aligned big type */
.bio-v2 .v2-banner-eyebrow {
  font-size: .52rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(245,240,255,.45); margin-bottom: .45rem;
  display: flex; align-items: center; gap: .6rem;
}
.bio-v2 .v2-banner-eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: rgba(232,25,107,.5);
}
.bio-v2 .v2-banner-title {
  font-family: var(--fc); font-weight: 300;
  font-size: clamp(3rem, 7vw, 7.5rem);
  letter-spacing: -.025em; line-height: .88;
  color: var(--white); margin-bottom: 1.5rem;
}
/* V2 CTA: thin underline/ghost style */
.bio-v2 .v2-banner-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .55rem 0;
  border: none; border-bottom: 1px solid rgba(245,240,255,.25);
  font-family: var(--fd); font-size: .56rem; font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase;
  color: rgba(245,240,255,.75); text-decoration: none;
  transition: color .25s, border-color .25s;
  background: transparent;
}
.bio-v2 .v2-banner-btn::after {
  content: '→';
  transition: transform .3s var(--spring);
}
.bio-v2 .v2-banner-btn:hover { color: var(--white); border-color: var(--pink); }
.bio-v2 .v2-banner-btn:hover::after { transform: translateX(4px); }

/* V2 logo: slightly bigger */
.bio-v2 .v2-logo-fallback {
  font-family: var(--fc); font-size: 1.1rem; font-weight: 300;
  letter-spacing: .55em; text-transform: uppercase; color: rgba(245,240,255,.85);
}

/* V2 nav (progress bar + slide counter) */
.bio-v2 .v2-banner-nav {
  position: absolute; bottom: 1.25rem; left: 1.5rem; z-index: 8;
  display: flex; align-items: center; gap: .85rem;
  pointer-events: none;
}
.bio-v2 .v2-banner-counter {
  font-size: .42rem; font-weight: 700; letter-spacing: .35em;
  color: rgba(245,240,255,.35); font-family: var(--fd);
}
.bio-v2 .v2-banner-progress {
  width: 80px; height: 1px; background: rgba(245,240,255,.1);
  position: relative; overflow: hidden;
}
.bio-v2 .v2-banner-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: rgba(232,25,107,.7);
  width: 0%;
}

/* V2 enter animation: cells fade-up on load */
.bio-v2 .v2-cell-enter {
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s var(--spring), transform .55s var(--spring);
}
.bio-v2 .v2-cell-entered { opacity: 1; transform: translateY(0); }

/* V2 cell info: less vignette on banner */
.bio-v2 .pos-banner .banner-overlay {
  background: linear-gradient(135deg, rgba(7,3,15,.55) 0%, rgba(7,3,15,.1) 55%, rgba(7,3,15,.02) 100%);
}

/* V2 popup: popup heading inherits the base redesign — no additional overrides needed */
