/* =========================================================
   Tripped Cheer & Dance — shared styles
   Direction: Lemonhead-inspired beauty-editorial, with Half Magic
   touches (chartreuse accent, condensed caps, serif editorial overlays).
   Soft grey page, near-black type, typewriter-mono headings,
   lime announcement bar, lavender CTAs, violet accent,
   purple/magenta grainy hero with chrome stars.
   Corners stay sharp throughout.
   ========================================================= */
:root {
  --ink: #1a1a1a;
  --ink-2: #2f2645;          /* body copy */
  --ink-3: #44386a;          /* meta text */
  --bg: #e2d4ff;             /* page (fallback under the lilac gradient) */
  --tile: rgba(255, 255, 255, .38);   /* product tiles: translucent so the lilac shows through */
  --white: #ffffff;
  --line: #c3b0f0;           /* lilac hairlines */
  --surface: rgba(255, 255, 255, .42);   /* panels, cards, FAQ, steps */
  --surface-solid: #fbf9ff;              /* drawer, modal, mobile menu */
  --field-line: #cdbff0;
  --lime: #ebef66;          /* chartreuse */
  --lavender: #d9ccff;
  --lavender-2: #ece6ff;
  --violet: #cb26ff;
  --plum: #2a0a3d;
  --magenta: #b8238f;
  --chrome: linear-gradient(135deg, #f7f8fa 0%, #b3b8c0 20%, #ffffff 36%, #8a9099 52%, #eceef1 68%, #a4a9b2 84%, #f3f4f6 100%);

  --mono: "Space Mono", ui-monospace, "Courier New", monospace;   /* headings */
  --ui: "Rubik", "Helvetica Neue", Arial, sans-serif;              /* labels, nav, buttons, body */
  --serif: "Instrument Serif", "Times New Roman", serif;           /* hero title card */
  --hand: "Instrument Serif", "Times New Roman", serif;            /* italic accent notes */
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;          /* nav, product names, buttons */
  --gutter: clamp(16px, 3.4vw, 48px);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; color: var(--ink);
  /* high-contrast gradient: white → lilac → dark lilac → lilac → white, repeating down the page */
  background:
    radial-gradient(55vw 55vw at 0% 14%, rgba(255, 255, 255, .9), transparent 70%),
    radial-gradient(60vw 60vw at 100% 30%, rgba(140, 105, 230, .55), transparent 70%),
    radial-gradient(55vw 55vw at 100% 52%, rgba(255, 255, 255, .85), transparent 70%),
    radial-gradient(60vw 60vw at 0% 76%, rgba(140, 105, 230, .55), transparent 70%),
    radial-gradient(55vw 55vw at 100% 96%, rgba(255, 255, 255, .8), transparent 70%),
    linear-gradient(180deg,
      #ffffff 0%, #e4d8ff 10%, #bba1f5 24%, #ab90f0 30%, #d9caff 40%,
      #ffffff 50%, #e1d4ff 60%, #b99ef4 72%, #a98def 78%, #d6c6ff 88%, #f7f3ff 100%) var(--bg);
  font-family: var(--ui); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip (not hidden) keeps sticky stacking cards working */
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Type ---------- */
.display {
  font-family: var(--mono); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1.08; margin: 0;
}
.h2 { font-size: clamp(22px, 2.4vw, 32px); }
.h3 { font-size: clamp(18px, 1.8vw, 24px); }
.script { font-family: var(--hand); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.kicker::before { content: "★"; font-size: 11px; }
.lede { font-size: clamp(15px, 1.2vw, 17px); color: var(--ink-2); max-width: 58ch; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons & tags ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 26px; border: 1px solid var(--ink);
  font-family: var(--ui); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  background: var(--ink); color: var(--white); transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: #333; border-color: #333; }
.btn--pink {                              /* primary: lavender, mono, arrow */
  background: var(--lavender); color: var(--ink); border: 1.5px solid var(--ink);
  font-family: var(--mono); font-weight: 400; font-size: 15px; letter-spacing: 0.06em;
}
.btn--pink::after { content: "⟶"; font-family: var(--ui); font-size: 18px; line-height: 1; }
.btn--pink:hover { background: var(--lavender-2); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--lavender); border-color: var(--lavender); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn--sm.btn--pink { font-size: 13px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px;
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  background: var(--surface); border: 1px solid var(--line);
}
.pill svg { width: 12px; height: 12px; color: var(--violet); }
.badge {
  display: inline-block; padding: 5px 9px; font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--ink);
}
.badge.hot { background: var(--lime); }

/* ---------- Announcement + header ---------- */
.announce {
  background: var(--lime); color: var(--ink); text-align: center; padding: 11px 16px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
}
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244, 238, 255, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; height: 72px; }
.nav-text { display: flex; gap: clamp(16px, 2.4vw, 38px); }
.nav-text a {
  text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 1px solid transparent;
}
.nav-text a:hover, .nav-text a[aria-current="page"] { border-color: var(--ink); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; justify-self: center; }
.brand img { height: 36px; width: auto; }
.brand-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  padding: 4px 7px; background: var(--ink); color: var(--white);
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-link { font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.header-link:hover { color: var(--violet); }
.icon-btn { position: relative; display: inline-grid; place-items: center; width: 40px; height: 40px; background: none; border: 0; color: var(--ink); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 50%;
  background: var(--violet); color: var(--white); font-size: 10px; font-weight: 700; display: grid; place-items: center;
}
.cart-count:empty { display: none; }
.menu-btn { display: none; }
@media (max-width: 1080px) {
  .nav-text, .header-link { display: none; }
  .menu-btn { display: inline-grid; justify-self: start; }
  .header-row { grid-template-columns: 48px 1fr 48px; }
  .header-actions { gap: 4px; }
}
@media (max-width: 480px) {
  .brand img { height: 28px; }
  .brand-tag { font-size: 9px; padding: 3px 5px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--surface-solid); color: var(--ink);
  padding: 80px var(--gutter) 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(-100%); visibility: hidden; transition: transform .4s cubic-bezier(.7,0,.2,1), visibility 0s .4s; overflow-y: auto;
}
.mobile-menu.is-open { transform: none; visibility: visible; transition: transform .4s cubic-bezier(.7,0,.2,1); }
.mobile-menu a {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(24px, 7vw, 40px); line-height: 1.2; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a[aria-current="page"] { color: var(--violet); }
.mobile-menu .close { position: absolute; top: 16px; right: var(--gutter); }

/* ---------- Soft lavender glow (inner page heroes) ---------- */
.glow { position: relative; isolation: isolate; }
.glow::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 70% at 15% 100%, rgba(217, 204, 255, .9), transparent 70%),
    radial-gradient(40% 70% at 85% 100%, rgba(244, 196, 255, .7), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.18), transparent);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 70px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .display { font-size: clamp(34px, 6vw, 84px); }
.page-hero .script { display: block; font-size: clamp(28px, 3.4vw, 44px); color: var(--violet); line-height: 1; margin-bottom: 6px; }
.page-hero .lede { margin: 22px auto 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Home hero: grainy purple collage ---------- */
.lh-hero {
  position: relative; isolation: isolate; overflow: hidden; color: var(--white);
  height: clamp(620px, calc(100svh - 112px), 880px);
  /* stage backdrop matched to the (purple-graded) hero photo */
  background:
    radial-gradient(28% 40% at 10% 80%, rgba(91, 39, 218, .7), transparent 70%),
    radial-gradient(30% 45% at 92% 58%, rgba(91, 39, 218, .7), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(67, 2, 129, .85), transparent 75%),
    linear-gradient(180deg, #050008 0%, #1a0133 45%, #2e025c 100%);
}
.lh-hero::after {                           /* film grain */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.lh-photo {
  /* Zoomed so her eyes (and the stickers) sit near the centre of the hero. */
  position: absolute; z-index: 1; top: -6%; left: 50%; transform: translateX(-50%);
  height: 142%; aspect-ratio: 1142 / 928; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.lh-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; }
.lh-copy {
  position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); left: clamp(20px, 4vw, 64px);
  width: min(430px, 32vw); color: var(--white);
}
.lh-copy { isolation: isolate; }
.lh-copy::before {                 /* soft shade so the copy stays legible over her hair */
  content: ""; position: absolute; z-index: -1; inset: -90px -140px -90px -260px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(14, 2, 26, .62), rgba(14, 2, 26, .35) 60%, transparent);
}
.lh-sub { margin: 0 0 20px; max-width: 17em; font-size: clamp(20px, 1.75vw, 26px); font-weight: 500; line-height: 1.3; letter-spacing: -.005em; color: var(--white); }
.lh-points { font-size: 15px; }
.lh-points { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 6px; font-size: 14px; font-weight: 500; color: var(--white); }
.lh-points li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 10px; background: var(--lavender); color: var(--ink); font-size: 11px; font-weight: 700; }
.lh-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.lh-ctas .btn--pink { font-size: 16px; padding: 15px 24px; }
.lh-wearing {                                /* the one tilted element */
  position: absolute; z-index: 4; top: 6%; left: calc(clamp(20px, 4vw, 64px) + min(430px, 32vw) + 10px); transform: rotate(-8deg);
  font-family: var(--hand); font-style: italic; font-weight: 400; font-size: clamp(24px, 2.2vw, 32px); color: var(--white); line-height: 1;
}
.lh-wearing svg { display: block; width: 70px; margin: 4px 0 0 60%; color: var(--white); }


/* 35mm filmstrip laid across the hero: tilted, see-through perforations, edge markings, light leak */
.filmstrip {
  position: absolute; z-index: 2; top: -16%; bottom: -16%; right: clamp(40px, 6.5vw, 120px); width: clamp(190px, 15vw, 232px);
  transform: rotate(7deg); filter: drop-shadow(12px 20px 24px rgba(10, 0, 20, .55));
}
.film {
  position: relative; height: 100%; padding: 0 34px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 14% 86%, rgba(255,255,255,.08)),
    linear-gradient(180deg, #22170d, #140d08 45%, #1f150c);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='24'><rect x='1' y='6' width='12' height='12' rx='2.5'/></svg>") left 8px top 0 / 14px 24px repeat-y, url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='24'><rect x='1' y='6' width='12' height='12' rx='2.5'/></svg>") right 8px top 0 / 14px 24px repeat-y, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='24'><rect x='1' y='6' width='12' height='12' rx='2.5'/></svg>") left 8px top 0 / 14px 24px repeat-y, url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='24'><rect x='1' y='6' width='12' height='12' rx='2.5'/></svg>") right 8px top 0 / 14px 24px repeat-y, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.film::after {                        /* warm light leak + faint sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background:
    radial-gradient(120% 22% at 30% 4%, rgba(255, 120, 40, .55), transparent 70%),
    radial-gradient(90% 14% at 80% 97%, rgba(255, 60, 120, .35), transparent 70%),
    linear-gradient(115deg, transparent 40%, rgba(255,255,255,.07) 50%, transparent 60%);
}
.edge {
  position: absolute; top: 0; bottom: 0; width: 12px; overflow: hidden; white-space: nowrap;
  writing-mode: vertical-rl; font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em; color: var(--lime); opacity: .9;
}
.edge.l { left: 21px; }
.edge.r { right: 21px; transform: rotate(180deg); }
.frame { position: relative; flex: none; aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; }
.frame img {
  /* each frame sets its own focal point (--x/--y) and zoom (--z) to crop in on the stickers */
  width: 100%; height: 100%; object-fit: cover; object-position: var(--x, 50%) var(--y, 40%);
  transform: scale(var(--z, 1)); transform-origin: var(--x, 50%) var(--y, 40%);
  filter: grayscale(1) contrast(1.25) brightness(1.05);   /* black-and-white film */
}
.frame.prod img { filter: grayscale(1) contrast(1.08) brightness(1.02); }
.frame::after { content: ""; position: absolute; inset: 0; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.55), inset 0 0 18px rgba(0,0,0,.35); }

@media (max-width: 1100px) { .lh-wearing { display: none; } }
@media (max-width: 1000px) {
  .lh-hero { height: auto; padding: 40px 0 0; display: flex; flex-direction: column; align-items: center; }
  .lh-photo { position: relative; top: auto; left: auto; transform: none; height: auto; width: 165%; margin: -10px -32.5% 0; order: 2; flex: none; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 80%, transparent 100%); mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 80%, transparent 100%); }
  .lh-copy { position: relative; top: auto; left: auto; transform: none; width: auto; order: 3; text-align: center; padding: 0 20px 36px; margin-top: -40px; }
  .lh-points { display: inline-grid; justify-items: start; text-align: left; }
  .lh-sub { margin-left: auto; margin-right: auto; }
  .lh-copy::before { inset: -40px 0 0; background: linear-gradient(180deg, transparent, rgba(14, 2, 26, .5) 30%); }
  .lh-ctas { justify-content: center; }
    .lh-wearing { display: none; }
    .filmstrip { display: none; }
}

/* ---------- Ticker strip ---------- */
.marquee { background: rgba(255, 255, 255, .3); color: var(--ink); padding: 14px 0; overflow: hidden; border-block: 1px solid var(--line); }
.marquee.alt { background: var(--lime); border-top: 0; }
.marquee-inner { display: flex; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee.alt .marquee-inner { animation-direction: reverse; }
.marquee span {
  font-family: var(--ui); font-weight: 500; text-transform: uppercase; letter-spacing: .14em;
  font-size: 13px; padding-right: 3em; white-space: nowrap; word-spacing: .4em;
}
.marquee span em { font-style: normal; padding: 0 2.2em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Tabs + product rail ---------- */
.shelf { padding: 40px 0 70px; }
.tabs { display: flex; justify-content: center; gap: 34px; margin-bottom: 30px; }
.tabs button {
  background: none; border: 0; padding: 6px 0; font-family: var(--mono); font-size: 16px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 1px solid transparent;
}
.tabs button[aria-selected="true"] { color: var(--ink); border-color: var(--ink); }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px) / 4); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (max-width: 1000px) { .rail { grid-auto-columns: calc((100% - 20px) / 2.2); } }
@media (max-width: 560px) { .rail { grid-auto-columns: 72%; } }
.rail-nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }
.rail-nav button { width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--line); font-size: 18px; }
.rail-nav button:hover { border-color: var(--ink); }

/* ---------- Product cards ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin: 10px 0 40px; }
.filters button {
  background: none; border: 0; border-bottom: 1px solid transparent; padding: 6px 0;
  font-family: var(--mono); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
}
.filters button[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; background: none; }
.card-media { position: relative; aspect-ratio: 1; display: grid; place-items: center; width: 100%; padding: 0; border: 0; background: var(--tile) !important; }
.card-media img { width: 76%; transition: transform .5s; filter: drop-shadow(0 14px 18px rgba(0,0,0,.12)); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .badge { position: absolute; top: 12px; left: 12px; }
.card-media .quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; opacity: 0; transition: opacity .2s;
  justify-content: center; background: var(--ink); color: var(--white); border-color: var(--ink);
}
.card:hover .quick, .card-media:focus-visible .quick { opacity: 1; }
.card-body { padding: 16px 4px 0; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; flex: 1; }
.card-top { display: contents; }
.card h3 { margin: 0; font-family: var(--ui); font-weight: 500; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.card .cost { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.card .cost s { color: var(--ink-3); margin-left: 6px; }
.card .cost .sale { color: #5c0896; font-weight: 600; }
.card p { margin: 0; color: var(--ink-2); font-size: 13px; max-width: 34ch; }
.dots { display: flex; gap: 6px; }
.dots i { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line); background: var(--chrome); }
.dots i.gold { background: linear-gradient(135deg, #fff1b8, #c7962b 55%, #f6dd8b); }
.card-actions { display: flex; gap: 8px; margin-top: auto; width: 100%; padding-top: 6px; }
.card select { flex: 1; min-width: 0; padding: 10px 12px; font-size: 13px; }

/* ---------- Press-style quote ---------- */
.press-quote { padding: 40px 0 70px; text-align: center; }
.press-quote blockquote {
  margin: 0 auto; max-width: 980px; font-family: var(--mono); text-transform: uppercase;
  font-size: clamp(16px, 1.7vw, 22px); line-height: 1.6; letter-spacing: .06em;
}
.press-quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Reviews carousel ---------- */
.reviews { padding: 50px 0 80px; }
.reviews-head { text-align: center; margin-bottom: 34px; }
.reviews-head h2 { margin: 0; font-family: var(--ui); font-weight: 400; font-size: 20px; }
.reviews-head .stars { font-size: 18px; letter-spacing: 3px; margin: 4px 0; }
.reviews-head small { font-size: 13px; color: var(--ink-2); }
.review-wrap { position: relative; }
.review-row { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 40px) / 3); gap: 40px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 56px; }
.review-row::-webkit-scrollbar { display: none; }
@media (max-width: 900px) { .review-row { grid-auto-columns: 85%; padding: 0 8px; } }
.review { scroll-snap-align: start; margin: 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.review .thumb { width: 96px; height: 96px; object-fit: contain; background: var(--tile); padding: 8px; }
.review .prod { font-size: 12px; color: var(--ink-2); }
.review .stars { letter-spacing: 3px; font-size: 16px; }
.review h3 { margin: 0; font-family: var(--ui); font-weight: 500; font-size: 16px; }
.review p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.6; max-width: 40ch; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--white); font-size: 13px; margin-top: 6px; }
.review cite { font-style: normal; font-size: 12px; color: var(--ink-3); }
.review-arrow { position: absolute; top: 40%; width: 40px; height: 40px; background: var(--surface); border: 1px solid var(--line); font-size: 18px; }
.review-arrow.prev { left: 0; }
.review-arrow.next { right: 0; }
@media (max-width: 900px) { .review-arrow { display: none; } }

/* ---------- Perks strip (fades into lavender) ---------- */
.perks { background: linear-gradient(180deg, transparent, rgba(190, 160, 255, .45)); padding: 60px 0; }
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.perk svg { width: 26px; height: 26px; margin: 0 auto 12px; }
.perk h3 { margin: 0 0 6px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.perk p { margin: 0; font-size: 13px; color: var(--ink-2); }
@media (max-width: 700px) { .perk-grid { grid-template-columns: 1fr; } }

/* ---------- Featured block (dark) ---------- */
.feature { background: linear-gradient(135deg, #1e0a2e, #2a0a3d 55%, #1a0826); color: var(--white); margin: 0 var(--gutter); overflow: hidden; position: relative; isolation: isolate; }
.feature::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(45% 60% at 78% 50%, rgba(203, 38, 255, .35), transparent 70%),
    radial-gradient(35% 45% at 5% 100%, rgba(217, 204, 255, .25), transparent 70%);
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: clamp(40px, 6vw, 90px) clamp(24px, 5vw, 80px); }
.feature .lede { color: rgba(255,255,255,.75); }
.feature .kicker { color: var(--lavender); }
.feature .display { font-size: clamp(26px, 3.4vw, 46px); }
.price { display: flex; align-items: baseline; gap: 14px; margin: 24px 0 6px; font-family: var(--mono); }
.price s { opacity: .55; font-size: 18px; }
.price strong { font-size: 34px; font-weight: 400; color: var(--lavender); }
.price-note { font-size: 12px; opacity: .65; margin: 0 0 20px; }
.swatches { display: flex; gap: 8px; margin: 4px 0 24px; flex-wrap: wrap; }
.swatch {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4);
  background: transparent; color: inherit; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
}
.swatch i { width: 14px; height: 14px; border-radius: 50%; background: var(--chrome); }
.swatch[data-v*="Gold"] i { background: linear-gradient(135deg, #fff1b8, #c7962b 55%, #f6dd8b); }
.swatch[aria-pressed="true"] { background: var(--white); color: var(--ink); border-color: var(--white); }
.feature-art { display: grid; place-items: center; }
.feature-art img { width: min(100%, 520px); filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); transition: transform .4s; }
.feature-art:hover img { transform: scale(1.03); }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } .feature-art { order: -1; } }

/* ---------- Stacked sticky cards ---------- */
.stack-sec { padding: clamp(70px, 9vw, 120px) 0; }
.stack-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 80px); }
.stack-copy { position: sticky; top: 120px; align-self: start; }
.stack-copy .display { font-size: clamp(26px, 3.4vw, 46px); }
.stack-copy .lede { margin: 20px 0 24px; }
.cat-list { display: flex; flex-wrap: wrap; gap: 8px; }
.stack { display: grid; gap: 30px; padding-bottom: 20px; }
.stack-card {
  position: sticky; top: calc(100px + var(--i) * 22px);
  overflow: hidden; aspect-ratio: 5 / 4; display: grid; place-items: center; text-decoration: none;
  width: 100%; padding: 0; border: 0; cursor: pointer; color: inherit;
}
.stack-card img { width: 70%; transition: transform .5s; filter: drop-shadow(0 20px 25px rgba(0,0,0,.25)); }
.stack-card:hover img { transform: scale(1.05); }
.stack-card .label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 0 20px; text-align: center; color: var(--white);
  font-family: var(--mono); font-size: clamp(18px, 2.2vw, 28px); letter-spacing: .08em; text-transform: uppercase;
}
.stack-card .tagline { position: absolute; top: 16px; left: 16px; }
.bg-pink, .bg-sun { background: linear-gradient(160deg, #f4f0ff, var(--lavender) 70%, #e9c9ff); }
.bg-pink .label, .bg-sun .label { color: var(--ink); }
.bg-mint, .bg-violet { background: radial-gradient(70% 70% at 50% 40%, #5a1a78, var(--plum) 60%, #12041b); }
.bg-mint .label, .bg-violet .label { background: linear-gradient(180deg, transparent, rgba(18, 4, 27, .9) 60%); }
@media (max-width: 860px) { .stack-grid { grid-template-columns: 1fr; } .stack-copy { position: static; } }

/* ---------- Team CTA (photo band) ---------- */
.squad {
  position: relative; margin: 0 var(--gutter); overflow: hidden; min-height: 560px;
  display: grid; place-items: center; text-align: center; color: var(--white); isolation: isolate;
}
.squad > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; z-index: -2; }
.squad::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(42, 10, 61, .35), rgba(42, 10, 61, .85)); }
.squad-inner { padding: 60px 24px; max-width: 760px; }
.squad .kicker { color: var(--lavender); }
.squad .display { font-size: clamp(28px, 4vw, 54px); margin-top: 12px; }
.squad .lede { color: rgba(255,255,255,.85); margin: 16px auto 26px; }
.inline-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto; background: var(--white); border: 1px solid var(--white); }
.inline-form input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--ink); padding: 0 14px; font: inherit; }
.inline-form input:focus { outline: none; }
.inline-form .btn--pink::after { content: none; }

/* ---------- Features (inner pages / value cards) ---------- */
.features { padding: clamp(70px, 9vw, 110px) 0 40px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.feat { padding: 30px; background: var(--surface); }
.feat .ico { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; background: var(--lavender) !important; color: var(--ink) !important; }
.feat .ico svg { width: 24px; height: 24px; }
.feat h3 { font-family: var(--mono); font-weight: 400; text-transform: uppercase; font-size: 17px; letter-spacing: .05em; margin: 0 0 8px; }
.feat p { margin: 0; color: var(--ink-2); }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; margin-top: 34px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field legend { font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.field .hint { font-size: 13px; color: var(--ink-3); font-weight: 400; text-transform: none; letter-spacing: 0; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--field-line); background: var(--white); font: inherit; color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
fieldset { border: 0; padding: 0; margin: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: inline-block; padding: 9px 14px; border: 1px solid var(--field-line); background: var(--white); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.choice input:focus-visible + span { outline: 2px solid var(--violet); outline-offset: 2px; }
.form-success { display: none; padding: 28px; background: var(--lavender); text-align: center; color: var(--ink); }
.form-success h3 { font-family: var(--mono); font-weight: 400; text-transform: uppercase; margin: 0 0 6px; font-size: 20px; }
form.is-sent { display: none; }
form.is-sent + .form-success { display: block; }

/* ---------- Generic sections ---------- */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.panel { padding: clamp(24px, 4vw, 46px); background: var(--surface); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.photo-card { overflow: hidden; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }

/* Steps */
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 30px; align-items: center; padding: 26px; background: var(--surface); }
.step-num { font-family: var(--mono); font-size: 44px; line-height: 1; color: var(--violet); }
.step h3 { font-family: var(--mono); font-weight: 400; font-size: clamp(18px, 2vw, 24px); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 8px; }
.step p { margin: 0; color: var(--ink-2); }
.step-img { overflow: hidden; aspect-ratio: 16/10; display: grid; place-items: center; background: var(--tile) !important; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-img.pack img { object-fit: contain; width: 72%; height: auto; }
@media (max-width: 860px) { .step { grid-template-columns: 1fr; gap: 14px; } .step-num { font-size: 36px; } }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier { padding: 30px; background: var(--surface); position: relative; }
.tier.pop { background: var(--ink); color: var(--white); }
.tier.pop .badge { position: absolute; top: -12px; left: 26px; background: var(--lime); }
.tier .size { font-weight: 500; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.tier.pop .size { color: rgba(255,255,255,.65); }
.tier .off { font-family: var(--mono); font-size: 64px; line-height: 1; margin: 12px 0 4px; }
.tier.pop .off { color: var(--lavender); }
.tier ul { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 8px; font-size: 14px; }
.tier li::before { content: "★ "; font-size: .8em; color: var(--violet); }
.tier.pop li::before { color: var(--lavender); }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }

/* Calculator */
.calc { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.calc-out { background: var(--ink); color: var(--white); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.calc-out .row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 14px; }
.calc-out .total { font-family: var(--mono); font-size: clamp(38px, 4.4vw, 56px); line-height: 1; color: var(--lavender); }
.calc-out .save { color: var(--lime); font-weight: 500; }
input[type="range"] { width: 100%; accent-color: var(--violet); }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 1px; max-width: 880px; margin: 36px auto 0; background: var(--line); border: 1px solid var(--line); }
.faq details { background: var(--surface-solid); padding: 0 24px; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 500; font-size: 15px; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 22px; color: var(--ink-2); }

/* Contact cards */
.contact-cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { display: flex; gap: 16px; align-items: center; padding: 20px; text-decoration: none; background: var(--surface); transition: background .2s; }
.contact-card:hover { background: var(--lavender-2); }
.contact-card .ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: var(--lavender) !important; color: var(--ink) !important; }
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card b { display: block; font-weight: 500; font-size: 15px; }
.contact-card small { color: var(--ink-2); font-size: 13px; }

/* Values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value { padding: 26px; background: var(--surface) !important; }
.value:nth-child(even) { background: var(--lavender-2) !important; }
.value h3 { font-family: var(--mono); font-weight: 400; text-transform: uppercase; font-size: 16px; letter-spacing: .05em; margin: 0 0 8px; }
.value p { margin: 0; font-size: 14px; color: var(--ink-2); }
.value .step-num { color: var(--violet) !important; font-size: 36px !important; margin-bottom: 10px; }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* ---------- Cart drawer & modal ---------- */
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 80; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); z-index: 90; background: var(--surface-solid);
  transform: translateX(100%); visibility: hidden; transition: transform .4s cubic-bezier(.7,0,.2,1), visibility 0s .4s; display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; visibility: visible; transition: transform .4s cubic-bezier(.7,0,.2,1); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font-family: var(--mono); font-weight: 400; text-transform: uppercase; font-size: 16px; letter-spacing: .08em; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; display: grid; gap: 16px; align-content: start; }
.drawer-foot { padding: 18px 22px 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.drawer-foot .sub { display: flex; justify-content: space-between; font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; }
.drawer-foot small { color: var(--ink-2); }
.line-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; font-size: 13px; }
.line-item img { width: 72px; height: 72px; object-fit: contain; background: var(--tile); padding: 6px; }
.line-item b { display: block; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.line-item small { color: var(--ink-2); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); margin-top: 6px; }
.qty button { width: 28px; height: 26px; border: 0; background: none; }
.qty span { min-width: 22px; text-align: center; font-size: 13px; }
.empty { text-align: center; padding: 50px 10px; color: var(--ink-2); }

.modal {
  position: fixed; z-index: 90; inset: 50% auto auto 50%; transform: translate(-50%, -46%); opacity: 0; pointer-events: none;
  width: min(980px, calc(100% - 32px)); max-height: calc(100svh - 40px); overflow-y: auto; background: var(--surface-solid); transition: .25s;
}
.modal.is-open { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-media { padding: 22px; }
.modal-main { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: var(--tile) !important; }
.modal-main img { width: 100%; height: 100%; object-fit: contain; }
.modal-main.is-photo img { object-fit: cover; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumbs button { width: 60px; height: 60px; padding: 0; overflow: hidden; border: 1px solid var(--line); background: var(--tile); }
.thumbs button[aria-pressed="true"] { border-color: var(--ink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 34px 30px 30px 10px; display: flex; flex-direction: column; gap: 14px; }
.modal-info h2 { margin: 0; font-family: var(--mono); font-weight: 400; text-transform: uppercase; font-size: 30px; letter-spacing: .04em; line-height: 1.1; }
.modal-info .cost { font-size: 18px; }
.modal-info .cost s { font-size: 14px; color: var(--ink-3); margin-right: 8px; }
.modal-info ul { margin: 0; padding-left: 20px; color: var(--ink-2); font-size: 14px; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pills button { border: 1px solid var(--field-line); background: var(--white); padding: 8px 12px; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.variant-pills button[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.modal .close { position: absolute; top: 12px; right: 12px; z-index: 2; }
@media (max-width: 760px) { .modal-grid { grid-template-columns: 1fr; } .modal-info { padding: 0 22px 26px; } .modal-info h2 { font-size: 24px; } }

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 100; transform: translate(-50%, 160%); transition: transform .3s;
  background: var(--ink); color: var(--white); padding: 13px 22px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
.site-footer { background: #1f1f1f; color: var(--white); margin-top: 0; padding: 60px 0 40px; position: relative; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1fr .8fr .8fr 1.3fr; gap: 40px; }
.site-footer .brand { justify-self: start; }
.site-footer .brand img { height: 46px; }
.site-footer .brand-tag { background: var(--white); color: var(--ink); }
.site-footer p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.foot-links { display: grid; gap: 10px; align-content: start; font-size: 13px; }
.foot-links h3, .foot-news h3 { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; color: var(--white); }
.foot-links a { text-decoration: none; color: rgba(255,255,255,.7); }
.foot-links a:hover { color: var(--white); }
.foot-news .big { font-family: var(--mono); text-transform: uppercase; font-size: 18px; letter-spacing: .06em; margin: 0 0 14px; color: var(--white); }
.line-field { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); color: var(--white); padding: 10px 0; font: inherit; margin-bottom: 8px; }
.line-field::placeholder { color: rgba(255,255,255,.55); }
.line-field:focus { outline: none; border-color: var(--lavender); }
.foot-news button { margin-top: 12px; }
.btn--violet { background: var(--violet); border-color: var(--violet); color: var(--white); }
.btn--violet:hover { background: #b10fe6; border-color: #b10fe6; }
.foot-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.foot-word { display: none; }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; color: rgba(255,255,255,.8); }
.socials a:hover { color: var(--white); }
.socials svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; translate: 0 24px; transition: opacity .8s ease, translate .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; translate: none; }
}

/* =========================================================
   Half Magic touches
   ========================================================= */
.announce, .nav-text a, .header-link, .btn:not(.btn--pink), .card h3, .badge, .marquee span, .tier .size, .pill, .choice span, .variant-pills button {
  font-family: var(--cond); font-weight: 600; letter-spacing: .04em;
}
.announce { font-size: 14px; }
.nav-text a, .header-link { font-size: 16px; }
.btn:not(.btn--pink) { font-size: 15px; }
.btn--sm:not(.btn--pink) { font-size: 14px; }
.card h3 { font-size: 16px; }
.marquee span { font-size: 16px; letter-spacing: .1em; }
.pill, .choice span, .variant-pills button { font-size: 13px; }
.badge { font-size: 12px; letter-spacing: .06em; }

/* Product tiles: corner tags + full-width chartreuse add button */
.card-media .badge { left: auto; right: 12px; background: var(--ink); color: var(--white); }
.card-media .badge.hot { background: var(--lime); color: var(--ink); }
.card-actions { flex-direction: column; }
.btn--lime { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.btn--lime:hover { background: #dfe34f; border-color: #dfe34f; color: var(--ink); }

/* "In the wild" creator carousel */
.wild { padding: clamp(70px, 8vw, 110px) 0 40px; text-align: center; overflow: hidden; }
.wild .eyebrow { font-family: var(--cond); font-weight: 600; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.wild h2 { margin: 6px 0 40px; font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.wild-row { display: flex; justify-content: center; align-items: center; gap: 18px; }
.wild-card { flex: none; width: clamp(150px, 15vw, 220px); aspect-ratio: 9/14; overflow: hidden; background: var(--tile); }
.wild-card img { width: 100%; height: 100%; object-fit: cover; }
.wild-card.big { width: clamp(200px, 21vw, 300px); }
.wild-card.far { opacity: .8; }
.wild small { display: block; margin-top: 22px; font-size: 13px; color: var(--ink-2); }
@media (max-width: 760px) { .wild-card.far { display: none; } .wild-card { width: 28vw; } .wild-card.big { width: 38vw; } }

/* ---------- Loading screen (matches trippedcosmetics.com) ----------
   Near-black panel, chrome-shine Tripped logo, then the panel wipes away downward.
   Plays once per visit; skipped for reduced-motion users. */
.pixel-loader { position: fixed; inset: 0; z-index: 999999; }
.pixel-loader__panel { position: absolute; inset: 0; background: #0b0710; clip-path: inset(0 0 0 0); }
.pixel-loader__mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; transition: opacity .5s ease;
}
.pixel-loader.is-visible .pixel-loader__mark { opacity: 1; }
.pixel-loader__logo-chrome, .pixel-loader__sub {
  background-image: linear-gradient(100deg, #6b6f73 0%, #d8dcdf 18%, #ffffff 32%, #9a9ea2 42%, #eef1f3 55%, #ffffff 65%, #7d8185 78%, #c9cdd0 92%, #6b6f73 100%);
  background-size: 250% 100%;
  animation: pixel-loader-shine 2.2s linear infinite;
}
.pixel-loader__logo-chrome {
  width: 160px; aspect-ratio: 425 / 220;
  -webkit-mask: url("images/logo.webp") center / contain no-repeat;
  mask: url("images/logo.webp") center / contain no-repeat;
  filter: drop-shadow(0 0 28px rgba(217, 239, 247, .35));
}
.pixel-loader__sub {
  font-family: var(--mono); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; padding-left: .32em;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes pixel-loader-shine { 0% { background-position: 100% 0; } 100% { background-position: -150% 0; } }
.pixel-loader.is-hiding .pixel-loader__mark { opacity: 0; transition: opacity .4s ease; }
.pixel-loader.is-hiding .pixel-loader__panel { clip-path: inset(105% 0 0 0); transition: clip-path .9s cubic-bezier(.65, 0, .35, 1); }
.pixel-loader.is-done { display: none; }
@media (prefers-reduced-motion: reduce) { .pixel-loader { display: none; } }

/* ---------- Safety, age & privacy notes ---------- */
.form-note { margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: var(--ink-3); }
.form-note a, .safety-line a, .age-note a, .foot-safety a { color: inherit; text-decoration: underline; }
.form-note--dark { color: rgba(255,255,255,.7); }
.safety-line { margin: 0; font-size: 12px; line-height: 1.5; color: var(--ink-2); }
.safety-line--block { max-width: 820px; margin: 34px auto 0; padding: 14px 18px; text-align: center; background: var(--surface); border: 1px solid var(--line); }
.age-note { color: var(--ink-2); }
.foot-bottom a { color: inherit; }
.foot-safety { margin: 14px 0 0; font-size: 11px; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 900px; }
/* policy pages */
.policy { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }
.policy h2 { font-family: var(--mono); font-weight: 400; text-transform: uppercase; letter-spacing: .05em; font-size: 18px; margin: 40px 0 10px; }
.policy p, .policy li { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.policy ul { padding-left: 20px; }
.policy .updated { font-size: 13px; color: var(--ink-3); }
/* footer newsletter field: beat the generic white input style so the placeholder is visible */
.site-footer input.line-field { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); color: var(--white); padding: 12px 0; }
.site-footer input.line-field:focus { border-bottom-color: var(--lavender); }
