/* ============================================================================
   QUEEN COCO — STYLESHEET
   Palette: black void + hot pink neon + champagne gold. Elegant serif on top
   of a grotesque body, with deliberately unhinged motion.
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */
:root {
  --void:      #070005;
  --ink:       #12000b;
  --panel:     #1b0511;
  --panel-2:   #26081a;

  --hot:       #ff1476;
  --bubble:    #ff5fb0;
  --candy:     #ffa8dc;
  --blush:     #ffd9ee;
  --cream:     #fff2f9;

  --gold:      #f5d47a;
  --acid:      #d4ff3f;
  --cyan:      #4df3ff;

  --line:      color-mix(in oklab, var(--hot) 30%, transparent);
  --glow:      0 0 24px color-mix(in oklab, var(--hot) 55%, transparent);
  --glow-soft: 0 0 60px color-mix(in oklab, var(--hot) 28%, transparent);

  --serif:  'Playfair Display', 'Didot', Georgia, serif;
  --sans:   'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --deco:   'Monoton', var(--serif);

  --shell:  min(1180px, 92vw);
  --r:      18px;
  --ease:   cubic-bezier(.22, 1, .36, 1);
}

/* -------------------------------------------------------------- foundation */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--void);
  color: var(--blush);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* live backdrop: three drifting pink blobs + film grain */
body::before {
  content: '';
  position: fixed;
  inset: -25%;
  z-index: -2;
  background:
    radial-gradient(38% 32% at 18% 18%, color-mix(in oklab, var(--hot) 42%, transparent), transparent 70%),
    radial-gradient(34% 30% at 82% 26%, color-mix(in oklab, #8a00ff 34%, transparent), transparent 72%),
    radial-gradient(44% 38% at 50% 92%, color-mix(in oklab, var(--bubble) 30%, transparent), transparent 74%);
  filter: blur(30px) saturate(140%);
  animation: drift 26s var(--ease) infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1)   rotate(0deg); }
  50%  { transform: translate3d(-4%, 3%, 0) scale(1.14) rotate(8deg); }
  100% { transform: translate3d(5%, -4%, 0) scale(1.06) rotate(-6deg); }
}

a { color: var(--candy); text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--hot); color: #fff; }

/* pink scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #10000a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--hot), #8a00ff);
  border-radius: 99px;
  border: 2px solid #10000a;
}

/* ------------------------------------------------------------ custom cursor */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  will-change: transform;
}
.cursor {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--hot);
  border-radius: 50%;
  box-shadow: var(--glow);
  transition: width .25s var(--ease), height .25s var(--ease),
              margin .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease);
}
.cursor.grow {
  width: 62px; height: 62px; margin: -31px 0 0 -31px;
  background: color-mix(in oklab, var(--hot) 18%, transparent);
  border-color: var(--gold);
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
  background: var(--cream); border-radius: 50%;
}
.spark {
  position: fixed; z-index: 9999; pointer-events: none;
  font-size: 13px; animation: sparkUp .9s ease-out forwards;
}
@keyframes sparkUp {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -220%) scale(.3) rotate(140deg); }
}

/* --------------------------------------------------------------- typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.7rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.6rem); }

.script { font-style: italic; font-weight: 400; }

.chrome {
  background: linear-gradient(178deg, #fff 6%, var(--candy) 34%, var(--hot) 58%, #7a0037 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--hot);
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem;
}
.eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--hot), transparent);
}
/* centred variant: rules on both sides instead of one trailing line */
.eyebrow.center { justify-content: center; }
.eyebrow.center::before {
  content: ''; flex: 1; height: 1px; max-width: 90px;
  background: linear-gradient(270deg, var(--hot), transparent);
}
.eyebrow.center::after { max-width: 90px; }

.lede { font-size: 1.13rem; color: color-mix(in oklab, var(--blush) 80%, transparent); max-width: 62ch; }
.muted { color: color-mix(in oklab, var(--blush) 52%, transparent); font-size: .9rem; }

/* glitch headline */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  -webkit-text-fill-color: currentColor;
  background: none; color: var(--cyan);
  clip-path: inset(0 0 62% 0);
  opacity: 0; mix-blend-mode: screen;
}
.glitch::after { color: var(--acid); clip-path: inset(58% 0 0 0); }
.glitch:hover::before { animation: gl1 .42s steps(2) infinite; opacity: .85; }
.glitch:hover::after  { animation: gl2 .42s steps(2) infinite; opacity: .85; }
@keyframes gl1 { 0%,100% { transform: translate(-4px, -2px); } 50% { transform: translate(4px, 1px); } }
@keyframes gl2 { 0%,100% { transform: translate(4px, 2px); }  50% { transform: translate(-5px, -1px); } }

/* ------------------------------------------------------------------- layout */
.shell { width: var(--shell); margin-inline: auto; }
section { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ------------------------------------------------------------------- header */
.topbar {
  position: sticky; top: 0; z-index: 500;
  backdrop-filter: blur(22px) saturate(180%);
  background: color-mix(in oklab, var(--void) 72%, transparent);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  width: var(--shell); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand {
  font-family: var(--deco);
  font-size: 1.35rem; letter-spacing: .04em;
  color: var(--cream);
  text-shadow: 0 0 18px var(--hot), 0 0 40px color-mix(in oklab, var(--hot) 60%, transparent);
  white-space: nowrap;
}
.brand span { color: var(--hot); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blush);
  padding: .6rem .85rem; border-radius: 99px;
  position: relative; transition: color .2s, background .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: .35rem;
  width: 0; height: 2px; background: var(--hot);
  transform: translateX(-50%); transition: width .28s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 46%; }
.nav a[aria-current="page"] { color: var(--hot); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--candy); border-radius: 10px;
  width: 42px; height: 38px; font-size: 1.1rem; cursor: none;
}

/* -------------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: 99px;
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid transparent; cursor: none;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.99); }

.btn-primary {
  background: linear-gradient(120deg, var(--hot), #ff4fa0 45%, #b3006a);
  color: #fff;
  box-shadow: 0 10px 34px -10px var(--hot), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { box-shadow: 0 16px 48px -10px var(--hot), inset 0 1px 0 rgba(255,255,255,.5); }
/* sweeping shine */
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%);
  transform: translateX(-140%);
  transition: transform .75s var(--ease);
}
.btn-primary:hover::after { transform: translateX(140%); }

.btn-ghost {
  background: color-mix(in oklab, var(--hot) 8%, transparent);
  border-color: var(--line); color: var(--candy);
}
.btn-ghost:hover { border-color: var(--hot); color: #fff; background: color-mix(in oklab, var(--hot) 16%, transparent); }

.btn-gold {
  background: linear-gradient(120deg, #fff6d9, var(--gold) 40%, #b08c30);
  color: #2a1400;
  box-shadow: 0 10px 30px -12px var(--gold);
}

/* ---------------------------------------------------------------- marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #14000c, #2b0016, #14000c);
  overflow: hidden; padding: .7rem 0;
}
.marquee-track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: slide 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; white-space: nowrap;
  color: var(--candy); display: flex; align-items: center; gap: 2.6rem;
}
.marquee-track span::after { content: '♛'; color: var(--hot); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

.marquee.rev .marquee-track { animation-direction: reverse; animation-duration: 34s; }

/* ------------------------------------------------------------------- hero */
.hero {
  min-height: 92vh;
  display: grid; place-items: center;
  text-align: center; position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero-crown {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 0 30px var(--hot));
  animation: hover 5s ease-in-out infinite;
}
@keyframes hover {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-16px) rotate(4deg); }
}
.hero h1 { margin: .3em 0 .25em; }
.hero .tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  color: var(--blush); max-width: 34ch; margin: 0 auto 2.2rem;
}
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* rotating sticker */
.sticker {
  position: absolute; display: grid; place-items: center;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--acid); color: #14000b;
  font-family: var(--sans); font-weight: 800; font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase; text-align: center;
  line-height: 1.35; padding: 1rem;
  box-shadow: 0 0 40px color-mix(in oklab, var(--acid) 45%, transparent);
  /* wobble, not a full spin — a 360° rotation leaves the text upside-down
     for half its cycle, which reads as broken rather than playful */
  animation: wobble 7s ease-in-out infinite;
}
.sticker.a { top: 14%; right: 4%; }
.sticker.b { bottom: 12%; left: 3%; background: var(--gold); animation-delay: -3.5s; }
@keyframes wobble {
  0%, 100% { transform: rotate(-13deg) scale(1); }
  50%      { transform: rotate(13deg) scale(1.05); }
}
.sticker:hover { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- cards */
.card {
  background: linear-gradient(160deg, var(--panel), var(--ink));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%),
              color-mix(in oklab, var(--hot) 16%, transparent), transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.card:hover { border-color: var(--hot); box-shadow: var(--glow-soft); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

.tilt { transform-style: preserve-3d; }

.stat { text-align: center; }
.stat .n {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--hot));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .l {
  font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--candy); margin-top: .6rem;
}

/* ritual ladder */
.rung {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  align-items: start; padding: 1.7rem 0;
  border-bottom: 1px solid color-mix(in oklab, var(--hot) 16%, transparent);
}
.rung:last-child { border-bottom: 0; }
.rung .num {
  font-family: var(--deco); font-size: 1.9rem;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--hot);
  min-width: 3.2ch;
}
.rung h3 { margin-bottom: .3rem; }
.rung:hover .num { color: var(--hot); text-shadow: var(--glow); }

/* price cards */
.price { display: flex; flex-direction: column; }
.price.hot {
  border-color: var(--hot);
  box-shadow: 0 0 0 1px var(--hot), var(--glow-soft);
  background: linear-gradient(160deg, var(--panel-2), var(--ink));
}
.price .badge {
  position: absolute; top: 1rem; right: -.2rem;
  background: var(--hot); color: #fff;
  font-size: .6rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; padding: .35rem 1rem;
  transform: rotate(4deg);
}
.price .name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin-bottom: .2rem;
}
.price .fig {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.4rem, 4.4vw, 3.2rem); line-height: 1;
  color: var(--hot); text-shadow: 0 0 30px color-mix(in oklab, var(--hot) 55%, transparent);
}
/* a worded price ("Negotiated") is far wider than "$250" and overflows the
   card at the numeric size — scale it down and let it wrap */
.price .fig.word {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.price .unit { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--candy); margin-bottom: 1.2rem; }
.price ul { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .55rem; font-size: .92rem; }
.price li { display: flex; gap: .6rem; }
.price li::before { content: '♛'; color: var(--hot); flex: none; font-size: .8rem; }
.price .fine { font-size: .72rem; color: color-mix(in oklab, var(--blush) 45%, transparent); margin-top: auto; font-style: italic; }

/* rules / limits lists */
.rules { list-style: none; padding: 0; margin: 0; counter-reset: r; display: grid; gap: .2rem; }
.rules li {
  counter-increment: r;
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding: 1rem 1.1rem; border-radius: 12px;
  transition: background .3s, transform .3s var(--ease);
}
.rules li::before {
  content: counter(r, decimal-leading-zero);
  font-family: var(--deco); font-size: .95rem; color: var(--hot);
}
.rules li:hover { background: color-mix(in oklab, var(--hot) 10%, transparent); transform: translateX(8px); }

.limits { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.limits li {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem;
  font-size: .94rem;
}
.limits li::before { content: '✕'; color: var(--hot); font-weight: 700; }
.limits.ok li::before { content: '◇'; color: var(--gold); }

/* contract track cards */
.track { text-align: left; display: flex; flex-direction: column; gap: .7rem; }
.track .icon {
  font-size: 2.2rem; filter: drop-shadow(0 0 16px var(--hot));
  transition: transform .4s var(--ease);
}
.track:hover .icon { transform: rotate(-12deg) scale(1.18); }
.track .kicker {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--hot);
}
.track .who {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border-top: 1px solid var(--line);
  padding-top: .8rem; margin-top: auto;
}

/* ------------------------------------------------------------- GALLERY */
.gal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(.6rem, 1.4vw, 1rem);
}
.gal-item {
  position: relative; display: block;
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; background: var(--ink);
  aspect-ratio: 4 / 5;
  cursor: none; padding: 0;
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
}
/* every third one spans two rows for a jolt of rhythm */
.gal-item:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 4 / 6.2; }
.gal-item:hover { transform: translateY(-6px) scale(1.015); border-color: var(--hot); box-shadow: var(--glow-soft); }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s var(--ease), filter .5s;
}
.gal-item:hover img { transform: scale(1.07); }

.gal-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem .95rem .85rem;
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(10,0,6,.92));
  transform: translateY(8px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
}
.gal-item:hover figcaption, .gal-item:focus-visible figcaption { transform: none; opacity: 1; }

/* locked teaser */
.gal-item.locked img { filter: blur(14px) saturate(140%) brightness(.62); transform: scale(1.1); }
.gal-item.locked:hover img { transform: scale(1.13); }
.gal-lock {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: .5rem;
  text-align: center; padding: 1rem;
  background: radial-gradient(circle at 50% 45%, transparent, rgba(12,0,7,.55));
}
.gal-lock .ico { font-size: 1.9rem; filter: drop-shadow(0 0 14px var(--hot)); }
.gal-lock .txt {
  font-size: .64rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cream);
}
.gal-lock .sub { font-size: .66rem; color: var(--candy); letter-spacing: .1em; }
.gal-item.locked:hover .gal-lock { background: radial-gradient(circle at 50% 45%, transparent, rgba(12,0,7,.3)); }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 9200;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 0, 3, .93);
  backdrop-filter: blur(10px) saturate(140%);
  animation: lbIn .3s var(--ease);
}
.lb[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-fig { margin: 0; max-width: min(1000px, 100%); max-height: 100%; text-align: center; }
.lb-fig img {
  max-width: 100%; max-height: calc(100vh - 11rem);
  width: auto; margin-inline: auto;
  border-radius: 14px; border: 1px solid var(--hot);
  box-shadow: 0 30px 90px -25px #000, 0 0 70px -30px var(--hot);
}
.lb-cap {
  margin-top: 1rem; font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--blush);
}
.lb-count { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--candy); margin-top: .4rem; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--hot) 18%, transparent);
  border: 1px solid var(--line); color: var(--cream);
  font-size: 1.3rem; cursor: none;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.lb-btn:hover { background: var(--hot); border-color: var(--hot); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: clamp(.5rem, 2vw, 2rem); }
.lb-next { right: clamp(.5rem, 2vw, 2rem); }
.lb-x {
  position: absolute; top: clamp(.8rem, 2vw, 1.6rem); right: clamp(.8rem, 2vw, 1.6rem);
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: none; border: 1px solid var(--line); color: var(--candy);
  font-size: 1.1rem; cursor: none; transition: all .25s;
}
.lb-x:hover { border-color: var(--hot); color: #fff; background: color-mix(in oklab, var(--hot) 16%, transparent); }

@media (max-width: 560px) {
  .gal { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .gal-item:nth-child(3n+1) { grid-row: span 1; aspect-ratio: 4 / 5; }
  .lb-btn { width: 44px; height: 44px; }
  .gal-item figcaption { opacity: 1; transform: none; font-size: .84rem; }
}

/* --------------------------------------------------------------- FAQ */
.faq { display: grid; gap: .6rem; }
details.q {
  border: 1px solid var(--line); border-radius: 14px;
  background: color-mix(in oklab, var(--panel) 70%, transparent);
  overflow: hidden; transition: border-color .3s;
}
details.q[open] { border-color: var(--hot); }
details.q summary {
  cursor: none; padding: 1.1rem 1.3rem;
  font-weight: 600; font-size: 1rem; color: var(--cream);
  display: flex; justify-content: space-between; gap: 1rem;
  list-style: none;
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after { content: '+'; color: var(--hot); font-size: 1.4rem; line-height: 1; transition: transform .3s; }
details.q[open] summary::after { transform: rotate(45deg); }
details.q .a { padding: 0 1.3rem 1.2rem; color: color-mix(in oklab, var(--blush) 78%, transparent); font-size: .94rem; }

/* ------------------------------------------------------------ forms */
.field { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.field > label {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--candy);
}
input[type=text], input[type=email], input[type=number], textarea, select {
  width: 100%; padding: .9rem 1.1rem;
  background: #0f0008; color: var(--cream);
  border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: .96rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  cursor: none;
}
textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--hot);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--hot) 22%, transparent);
  background: #150009;
}
input::placeholder, textarea::placeholder { color: color-mix(in oklab, var(--blush) 30%, transparent); }
select option { background: #150009; }

.check {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem;
  align-items: start; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: .6rem; font-size: .9rem;
  transition: border-color .25s, background .25s;
}
.check:hover { border-color: var(--hot); background: color-mix(in oklab, var(--hot) 7%, transparent); }
.check input { accent-color: var(--hot); width: 18px; height: 18px; margin-top: .18rem; cursor: none; }
.check.req { border-left: 3px solid var(--hot); }

.honey { position: absolute; left: -9999px; opacity: 0; }

.note {
  padding: 1rem 1.2rem; border-radius: 12px; font-size: .9rem;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--hot) 8%, transparent);
}
.note.warn { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 9%, transparent); color: #fff6de; }
.note.ok   { border-color: var(--acid); background: color-mix(in oklab, var(--acid) 10%, transparent); color: #f2ffd6; }
.note.bad  { border-color: #ff4d4d; background: rgba(255,77,77,.1); color: #ffdede; }
.note strong { color: var(--cream); }

/* ------------------------------------------------------- contract layout */
.tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.tab {
  padding: .8rem 1.5rem; border-radius: 99px;
  border: 1px solid var(--line); background: none;
  color: var(--candy); font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; cursor: none;
  transition: all .3s var(--ease);
}
.tab:hover { border-color: var(--hot); color: #fff; transform: translateY(-2px); }
.tab[aria-selected="true"] {
  background: linear-gradient(120deg, var(--hot), #b3006a);
  border-color: var(--hot); color: #fff; box-shadow: var(--glow);
}

.doc {
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(170deg, var(--panel), var(--ink));
  padding: clamp(1.5rem, 3.6vw, 3rem);
}
.doc h2 { margin-bottom: .2em; }
.doc .clause { padding: 1.4rem 0; border-bottom: 1px dashed color-mix(in oklab, var(--hot) 20%, transparent); }
.doc .clause:last-of-type { border-bottom: 0; }
.doc .clause h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase; color: var(--hot);
  margin-bottom: .6rem;
}
.doc .clause p { margin: 0 0 .7rem; font-size: .96rem; }
.doc .clause p:last-child { margin-bottom: 0; }
.seal {
  display: inline-grid; place-items: center;
  width: 74px; height: 74px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--gold);
  font-size: 1.8rem; box-shadow: 0 0 30px color-mix(in oklab, var(--gold) 30%, transparent);
}

.sig {
  font-family: 'Playfair Display', cursive !important;
  font-style: italic; font-size: 1.4rem !important;
  letter-spacing: .02em;
}

/* -------------------------------------------------------------- age gate */
.gate {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 40%, #2a0016, #050003 70%);
  padding: 2rem;
}
.gate.hide { animation: gateOut .6s var(--ease) forwards; }
@keyframes gateOut { to { opacity: 0; visibility: hidden; transform: scale(1.08); } }
.gate-box { max-width: 520px; }
.gate h2 { font-size: clamp(2rem, 6vw, 3.4rem); }
.gate .crown { font-size: 3.4rem; filter: drop-shadow(0 0 26px var(--hot)); margin-bottom: 1rem; }
.gate-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* --------------------------------------------------------------- chatbot */
.chat-fab {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 8000;
  width: 66px; height: 66px; border-radius: 50%;
  border: none; cursor: none;
  background: linear-gradient(140deg, var(--hot), #8a0050);
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 14px 40px -8px var(--hot), inset 0 1px 0 rgba(255,255,255,.4);
  display: grid; place-items: center;
  transition: transform .35s var(--ease);
}
.chat-fab:hover { transform: scale(1.1) rotate(8deg); }
.chat-fab::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1.5px solid var(--hot);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.chat-fab .lbl {
  position: absolute; right: 80px; white-space: nowrap;
  background: var(--ink); border: 1px solid var(--line);
  color: var(--candy); font-family: var(--sans);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem .9rem; border-radius: 99px;
  opacity: 0; transform: translateX(10px); transition: all .3s var(--ease);
  pointer-events: none;
}
.chat-fab:hover .lbl { opacity: 1; transform: translateX(0); }

.chat {
  /* it is built as a <section>, so the global section padding would otherwise
     apply ~144px of inner padding and crush the message log to nothing */
  padding: 0;
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 8001;
  width: min(408px, calc(100vw - 2rem));
  height: min(620px, calc(100vh - 3rem));
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #1d0612, #0b0006);
  border: 1px solid var(--hot);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px -20px #000, 0 0 60px -20px var(--hot);
  transform-origin: bottom right;
  animation: chatIn .42s var(--ease);
}
.chat[hidden] { display: none; }
@keyframes chatIn {
  from { opacity: 0; transform: scale(.86) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-head {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(120deg, #34001d, #180009);
  border-bottom: 1px solid var(--line);
}
.chat-head .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--hot), #7a0045);
  display: grid; place-items: center; font-size: 1.15rem;
  box-shadow: var(--glow);
}
.chat-head .who { flex: 1; min-width: 0; }
.chat-head .nm {
  font-family: var(--deco); font-size: .95rem; color: var(--cream);
  letter-spacing: .04em;
}
.chat-head .st { font-size: .68rem; color: var(--candy); display: flex; align-items: center; gap: .4rem; }
.chat-head .st::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid); box-shadow: 0 0 8px var(--acid);
  animation: blink 2s infinite;
}
@keyframes blink { 50% { opacity: .35; } }
.chat-x {
  background: none; border: 1px solid var(--line); color: var(--candy);
  width: 32px; height: 32px; border-radius: 9px; cursor: none; font-size: 1rem;
  transition: all .25s;
}
.chat-x:hover { border-color: var(--hot); color: #fff; background: color-mix(in oklab, var(--hot) 15%, transparent); }

.chat-log {
  flex: 1; overflow-y: auto; padding: 1.1rem;
  display: flex; flex-direction: column; gap: .8rem;
  scrollbar-width: thin;
}
.msg { max-width: 86%; font-size: .92rem; line-height: 1.55; }
.msg .bub { padding: .8rem 1.05rem; border-radius: 16px; }
.msg.bot { align-self: flex-start; }
.msg.bot .bub {
  background: linear-gradient(150deg, #34001e, #1e0011);
  border: 1px solid var(--line); border-bottom-left-radius: 5px;
  color: var(--blush);
}
.msg.me { align-self: flex-end; }
.msg.me .bub {
  background: linear-gradient(140deg, var(--hot), #a80062);
  color: #fff; border-bottom-right-radius: 5px;
  box-shadow: 0 6px 20px -8px var(--hot);
}
.msg .bub p { margin: 0 0 .55rem; }
.msg .bub p:last-child { margin: 0; }
.msg .bub ul, .msg .bub ol { margin: .4rem 0; padding-left: 1.2rem; }
.msg .bub strong { color: #fff; }
.msg .bub code {
  background: rgba(0,0,0,.35); padding: .1rem .35rem;
  border-radius: 5px; font-size: .85em;
}

.typing { display: flex; gap: .3rem; padding: 1rem 1.1rem; }
.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--hot);
  animation: bounce 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-7px); opacity: 1; } }

.chips { display: flex; gap: .45rem; flex-wrap: wrap; padding: 0 1.1rem .8rem; }
.chip {
  background: color-mix(in oklab, var(--hot) 12%, transparent);
  border: 1px solid var(--line); color: var(--candy);
  font-family: var(--sans); font-size: .73rem;
  padding: .45rem .85rem; border-radius: 99px; cursor: none;
  transition: all .25s var(--ease);
}
.chip:hover { background: var(--hot); color: #fff; border-color: var(--hot); transform: translateY(-2px); }

.chat-form {
  display: flex; gap: .55rem; padding: .9rem;
  border-top: 1px solid var(--line);
  background: #14000b;
}
.chat-form input {
  flex: 1; padding: .8rem 1rem; border-radius: 99px;
  background: #21000f; border: 1px solid var(--line); color: var(--cream);
  font-family: var(--sans); font-size: .92rem;
}
.chat-send {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  border: none; cursor: none; font-size: 1rem;
  background: linear-gradient(140deg, var(--hot), #8a0050); color: #fff;
  box-shadow: 0 6px 18px -6px var(--hot);
  transition: transform .25s var(--ease);
}
.chat-send:hover:not(:disabled) { transform: scale(1.1); }
.chat-send:disabled { opacity: .45; }
.chat-foot {
  font-size: .62rem; text-align: center; padding: 0 1rem .7rem;
  color: color-mix(in oklab, var(--blush) 38%, transparent);
  background: #14000b;
}

/* --------------------------------------------------------------- footer */
footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, #12000a);
  padding: 4rem 0 2.5rem; margin-top: 3rem;
}
.foot-grid { display: grid; gap: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.foot-grid h4 {
  font-family: var(--sans); font-size: .68rem; font-weight: 800;
  letter-spacing: .24em; text-transform: uppercase; color: var(--hot);
}
.foot-grid a { display: block; padding: .28rem 0; font-size: .9rem; color: var(--blush); transition: color .2s, transform .2s; }
.foot-grid a:hover { color: var(--hot); transform: translateX(5px); }
.legal {
  margin-top: 2.8rem; padding-top: 1.6rem;
  border-top: 1px solid color-mix(in oklab, var(--hot) 14%, transparent);
  font-size: .74rem; color: color-mix(in oklab, var(--blush) 42%, transparent);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ------------------------------------------------------- scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9500;
  background: linear-gradient(90deg, var(--hot), var(--gold), var(--cyan));
  width: 0; box-shadow: var(--glow);
}

/* ---------------------------------------------------------- responsive */
@media (max-width: 860px) {
  .burger { display: grid; place-items: center; }
  .nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #14000b; border-bottom: 1px solid var(--hot);
    padding: .6rem; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .9rem 1rem; text-align: center; }
  .sticker { display: none; }
  .topbar-in { position: relative; }
}

@media (max-width: 560px) {
  .hero { min-height: 86vh; }
  .chat { width: 100vw; height: 100vh; right: 0; bottom: 0; border-radius: 0; border: none; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .btn, .tab, .chip, input, textarea, select, button { cursor: pointer; }
}

/* pointer devices without hover (touch): restore normal cursor */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .btn, .tab, .chip, input, textarea, select, button, summary { cursor: pointer; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

@media print {
  body::before, body::after, .topbar, .chat-fab, .chat, .marquee, .gate, .sticker { display: none !important; }
  body { background: #fff; color: #000; cursor: auto; }
  .doc { border-color: #000; background: #fff; }
  h1, h2, h3, h4, .chrome { color: #000 !important; -webkit-text-fill-color: #000 !important; }
}
