/* ============================================================
   KIDS COLORS — minimal · colorful · playful
   inspired by the clean-but-joyful energy of creatures.co.jp
   ============================================================ */

:root {
  /* palette — true primaries from the brand shape set */
  --red:    #F5301A;
  --blue:   #2412E6;
  --yellow: #FFE100;
  --green:  #1FB566;
  --pink:   #FF8FB1;
  --purple: #8A3FD4;   /* the paint "K" in the logo */

  --paper:  #FCFAF4;   /* warm off-white canvas */
  --ink:    #1B1B1F;

  /* active theme (JS swaps these) */
  --accent: var(--red);
  --accent-soft: #FFE3E0;

  --font-display: "Fredoka", sans-serif;
  --font-mono: "Azeret Mono", monospace;

  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
}

body[data-theme="red"]    { --accent: var(--red);    --accent-soft: #FFE1DC; }
body[data-theme="blue"]   { --accent: var(--blue);   --accent-soft: #E0DDFC; }
body[data-theme="yellow"] { --accent: var(--yellow); --accent-soft: #FFF6C4; }
body[data-theme="green"]  { --accent: var(--green);  --accent-soft: #DAF4E5; }
body[data-theme="pink"]   { --accent: var(--pink);   --accent-soft: #FFE6EE; }
body[data-theme="purple"] { --accent: var(--purple); --accent-soft: #EDE0FA; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  transition: background .6s var(--ease-smooth);
  /* subtle paper-dot texture */
  background-image: radial-gradient(rgba(27,27,31,.045) 1px, transparent 1px);
  background-size: 26px 26px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--accent); color: var(--paper); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: grid; place-content: center; gap: 22px;
  transition: opacity .5s var(--ease-smooth), visibility .5s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__dots { display: flex; gap: 12px; justify-content: center; }
.pdot {
  width: 20px; height: 20px; border-radius: 50%;
  animation: pbounce .9s var(--ease-pop) infinite;
}
.pdot--red    { background: var(--red); }
.pdot--blue   { background: var(--blue);   animation-delay: .08s; }
.pdot--yellow { background: var(--yellow); animation-delay: .16s; }
.pdot--green  { background: var(--green);  animation-delay: .24s; }
.pdot--pink   { background: var(--pink);   animation-delay: .32s; }
@keyframes pbounce {
  0%, 100% { transform: translateY(0) scale(1); }
  40%      { transform: translateY(-22px) scale(1.15); }
  60%      { transform: translateY(0) scale(.9, 1.05); }
}
.preloader__word {
  font-family: var(--font-mono); font-size: 13px; text-align: center;
  color: var(--ink); opacity: .55; letter-spacing: .08em;
}

/* ============================================================
   CURSOR — colored dot that grows on hover targets
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-pop), height .25s var(--ease-pop),
              opacity .25s, background .4s;
  mix-blend-mode: multiply;
  opacity: 0;
}
body.has-cursor .cursor { opacity: .9; }
.cursor.is-grown { width: 52px; height: 52px; opacity: .35; }
@media (hover: none) { .cursor { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: transform .4s var(--ease-smooth), background .3s, box-shadow .3s;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,27,31,.07);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav__logo { display: flex; align-items: center; gap: 8px; }
.nav__logo img {
  height: 38px; width: auto;
  mix-blend-mode: multiply; /* hide the white png background on paper */
  transition: transform .35s var(--ease-pop);
}
.nav__logo:hover img { transform: rotate(-4deg) scale(1.08); }
.nav__logo-text { font-weight: 700; letter-spacing: .05em; font-size: 17px; color: var(--accent); transition: color .4s; }

.nav__links { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav__links a {
  font-weight: 500; font-size: 15px; position: relative; padding: 4px 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; border-radius: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease-smooth);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 640px) { .nav__links { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  padding: 12px 22px; font-size: 15px;
  transition: background .3s, transform .3s var(--ease-pop), box-shadow .3s;
  will-change: transform;
}
.btn:hover { background: var(--accent); transform: scale(1.05); box-shadow: 0 8px 24px -8px var(--accent); }
.btn__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  transition: background .3s;
  animation: blink 1.6s infinite;
}
.btn:hover .btn__dot { background: var(--paper); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.btn--big { padding: 17px 32px; font-size: 17px; }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2.5px var(--ink);
}
.btn--ghost:hover { background: var(--accent-soft); color: var(--ink); box-shadow: inset 0 0 0 2.5px var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero__kicker {
  font-family: var(--font-mono); font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); opacity: .6; margin-bottom: 18px;
}

.hero__title {
  font-weight: 700;
  font-size: clamp(64px, 15vw, 200px);
  line-height: .92;
  letter-spacing: -.015em;
  user-select: none;
}
.hero__line { display: block; }
.hl {
  display: inline-block;
  transition: transform .35s var(--ease-pop), color .3s;
  animation: letter-in .7s var(--ease-pop) both;
  cursor: default;
}
/* stagger the entrance */
.hero__line:nth-child(1) .hl:nth-child(1) { animation-delay: .05s; }
.hero__line:nth-child(1) .hl:nth-child(2) { animation-delay: .12s; }
.hero__line:nth-child(1) .hl:nth-child(3) { animation-delay: .19s; }
.hero__line:nth-child(1) .hl:nth-child(4) { animation-delay: .26s; }
.hero__line:nth-child(2) .hl:nth-child(1) { animation-delay: .33s; }
.hero__line:nth-child(2) .hl:nth-child(2) { animation-delay: .40s; }
.hero__line:nth-child(2) .hl:nth-child(3) { animation-delay: .47s; }
.hero__line:nth-child(2) .hl:nth-child(4) { animation-delay: .54s; }
.hero__line:nth-child(2) .hl:nth-child(5) { animation-delay: .61s; }
.hero__line:nth-child(2) .hl:nth-child(6) { animation-delay: .68s; }
@keyframes letter-in {
  from { transform: translateY(60px) rotate(8deg) scale(.6); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.hl:hover { transform: translateY(-14px) rotate(-6deg) scale(1.12); }
.hl--red    { color: var(--red); }
.hl--blue   { color: var(--blue); }
.hl--yellow { color: var(--yellow); }
.hl--green  { color: var(--green); }
.hl--pink   { color: var(--pink); }
.hl--purple { color: var(--purple); }

.hero__sub {
  margin-top: 26px;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 400; line-height: 1.55;
  opacity: .82;
}
.hero__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* rotating badge */
.hero__badge {
  position: absolute; right: clamp(16px, 6vw, 90px); bottom: clamp(70px, 12vh, 130px);
  width: clamp(90px, 11vw, 150px); height: clamp(90px, 11vw, 150px);
  display: grid; place-items: center;
}
.hero__badge svg {
  position: absolute; inset: 0;
  animation: spin 14s linear infinite;
  fill: var(--ink);
}
.hero__badge text { font-family: var(--font-mono); font-size: 15.5px; letter-spacing: .12em; font-weight: 600; }
.hero__badge-face {
  width: 46%; height: 46%; border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: clamp(22px, 3vw, 34px);
  transition: background .4s, transform .3s var(--ease-pop);
}
.hero__badge:hover .hero__badge-face { transform: rotate(20deg) scale(1.15); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 700px) { .hero__badge { display: none; } }

/* scroll hint */
.hero__scrollhint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2.5px solid var(--ink); border-radius: 14px;
  opacity: .45;
}
.hero__scrollhint span {
  position: absolute; top: 7px; left: 50%; margin-left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  animation: scrollhint 1.6s var(--ease-smooth) infinite;
}
@keyframes scrollhint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- floating shapes ---------- */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.shape { position: absolute; will-change: transform; }
.shape svg { width: 100%; height: 100%; overflow: visible; }

.shape--blob1 {
  width: clamp(120px, 16vw, 240px); height: clamp(120px, 16vw, 240px);
  top: 12%; left: 6%;
  background: var(--yellow);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  animation: blobmorph 9s ease-in-out infinite alternate, floaty 7s ease-in-out infinite alternate;
  opacity: .9;
}
@keyframes blobmorph {
  0%   { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; }
  50%  { border-radius: 45% 55% 40% 60% / 60% 42% 58% 40%; }
  100% { border-radius: 52% 48% 62% 38% / 42% 60% 40% 58%; }
}
@keyframes floaty {
  from { transform: translateY(-14px) rotate(-3deg); }
  to   { transform: translateY(16px) rotate(4deg); }
}

.shape--ring {
  width: clamp(70px, 9vw, 130px); height: clamp(70px, 9vw, 130px);
  top: 18%; right: 10%;
  border: clamp(14px, 2vw, 24px) solid var(--blue);
  border-radius: 50%;
  animation: floaty 6s ease-in-out infinite alternate-reverse;
}

.shape--squiggle {
  width: clamp(110px, 14vw, 210px);
  bottom: 24%; left: 9%;
  color: var(--red);
  animation: floaty 8s ease-in-out infinite alternate;
}

.shape--star {
  width: clamp(52px, 6vw, 90px);
  top: 44%; right: 20%;
  color: var(--pink);
  animation: spin 18s linear infinite, floaty 5s ease-in-out infinite alternate;
}

.shape--halfmoon {
  width: clamp(80px, 10vw, 150px); height: clamp(40px, 5vw, 75px);
  bottom: 14%; right: 7%;
  background: var(--green);
  border-radius: 150px 150px 0 0;
  animation: floaty 7.5s ease-in-out infinite alternate-reverse;
}

.shape--pill {
  width: clamp(90px, 11vw, 170px); height: clamp(36px, 4.5vw, 66px);
  top: 62%; left: 16%;
  background: var(--purple);
  border-radius: 999px;
  transform: rotate(-18deg);
  animation: floaty 6.5s ease-in-out infinite alternate;
  opacity: .85;
}

.shape--flower {
  width: clamp(64px, 8vw, 120px);
  top: 8%; right: 34%;
  color: var(--red);
  animation: spin 26s linear infinite reverse, floaty 9s ease-in-out infinite alternate;
}

@media (max-width: 700px) {
  .shape--pill, .shape--flower, .shape--star { display: none; }
}

/* ============================================================
   3D SHAPES — the shape store, in CSS
   ============================================================ */
/* rotating cube */
.cube {
  --cube-size: clamp(56px, 7vw, 100px);
  width: var(--cube-size); height: var(--cube-size);
  position: absolute;
  transform-style: preserve-3d;
  animation: cube-spin 12s linear infinite;
}
.cube__face {
  position: absolute; inset: 0;
  background: var(--yellow);
  border: 2px solid rgba(0,0,0,.08);
}
.cube__face--front  { transform: translateZ(calc(var(--cube-size) / 2)); }
.cube__face--back   { transform: rotateY(180deg) translateZ(calc(var(--cube-size) / 2)); background: #E8CD00; }
.cube__face--right  { transform: rotateY(90deg) translateZ(calc(var(--cube-size) / 2)); background: #D9BF00; }
.cube__face--left   { transform: rotateY(-90deg) translateZ(calc(var(--cube-size) / 2)); background: #D9BF00; }
.cube__face--top    { transform: rotateX(90deg) translateZ(calc(var(--cube-size) / 2)); background: #FFF056; }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(calc(var(--cube-size) / 2)); background: #C4AD00; }
@keyframes cube-spin {
  from { transform: rotateX(-18deg) rotateY(0deg); }
  to   { transform: rotateX(-18deg) rotateY(360deg); }
}
.cube-scene {
  position: absolute;
  perspective: 700px;
  width: clamp(56px, 7vw, 100px); height: clamp(56px, 7vw, 100px);
}

/* gradient sphere */
.sphere {
  position: absolute;
  width: clamp(56px, 8vw, 120px); height: clamp(56px, 8vw, 120px);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #7A6FFF 0%, var(--blue) 42%, #12066E 100%);
  animation: floaty 6s ease-in-out infinite alternate;
}
.sphere::after {
  content: ""; position: absolute;
  left: 10%; bottom: -18%;
  width: 80%; height: 16%;
  border-radius: 50%;
  background: rgba(18, 6, 110, .18);
  filter: blur(4px);
}
.sphere--red { background: radial-gradient(circle at 32% 28%, #FF8A76 0%, var(--red) 45%, #8E1104 100%); }
.sphere--red::after { background: rgba(142, 17, 4, .18); }

/* pyramid — two shaded faces via clip-path */
.pyramid {
  position: absolute;
  width: clamp(64px, 8vw, 120px); height: clamp(58px, 7.2vw, 108px);
  animation: floaty 7s ease-in-out infinite alternate-reverse;
}
.pyramid::before, .pyramid::after { content: ""; position: absolute; inset: 0; }
.pyramid::before { clip-path: polygon(50% 0, 0 100%, 58% 100%); background: var(--red); }
.pyramid::after  { clip-path: polygon(50% 0, 58% 100%, 100% 100%); background: #A81E0E; }

/* ---------- LOOSE SHAPES — scattered brand confetti ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco svg { width: 100%; height: 100%; overflow: visible; }
.deco--drift  { animation: floaty 7s ease-in-out infinite alternate; }
.deco--drift2 { animation: floaty 9s ease-in-out infinite alternate-reverse; }
.deco--spin   { animation: spin 24s linear infinite; }
.deco--wobble { animation: wobble 5s ease-in-out infinite; }
@keyframes wobble {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(10deg) translateY(-8px); }
}
/* sections that host decos need a stacking context */
.collection, .colors, .story, .drop, .spike { position: relative; overflow: visible; }
.section-head, .collection__grid, .colors__swatches, .colors__current,
.story__inner, .drop__card, .spike__inner, .collection__more { position: relative; z-index: 1; }

/* blend away white backgrounds on brand photos */
.blend { mix-blend-mode: multiply; }

/* ============================================================
   SPIKE — brand ambassador
   ============================================================ */
.spike { background: var(--paper); }
.spike__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 860px) { .spike__inner { grid-template-columns: 1fr; } }

.spike__portrait {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 10px 10px 0 var(--accent);
  transition: box-shadow .4s, transform .35s var(--ease-pop);
  rotate: -2deg;
}
.spike__portrait:hover { transform: rotate(3deg) scale(1.02); }
.spike__portrait { cursor: pointer; }
.spike__portrait img { width: 100%; position: relative; z-index: 1; }

/* paint splats — friends throwing color at spike */
.spike__splats { position: absolute; inset: 0; overflow: hidden; border-radius: 26px; }
.splat {
  position: absolute;
  width: 64px; height: 64px;
  color: var(--red);
  animation: splat-in .45s var(--ease-pop) both;
  z-index: 0;
}
.splat svg { width: 100%; height: 100%; }
@keyframes splat-in {
  from { transform: scale(0) rotate(-40deg); opacity: 0; }
  60%  { transform: scale(1.25) rotate(6deg); opacity: 1; }
  to   { transform: scale(1) rotate(0deg); opacity: .9; }
}
.spike__bubble {
  position: absolute; top: -22px; right: -14px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700; font-size: clamp(14px, 1.6vw, 18px);
  rotate: 6deg;
  animation: wobble 4s ease-in-out infinite;
}
.spike__tag {
  position: absolute; bottom: -16px; left: 22px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  padding: 7px 14px; border-radius: 999px;
  rotate: -3deg;
}

.spike__copy .section-head__title { margin-bottom: 8px; }
.spike__copy > p {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6; opacity: .85;
  max-width: 54ch;
}
.spike__copy strong { color: var(--accent); transition: color .4s; }

.spike__collar {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 600; font-size: 15px;
  transition: background .5s;
}
.spike__collar-dot {
  flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--ink);
  display: grid; place-items: center;
  overflow: hidden;
}
.spike__collar-dot img { width: 70%; }

/* sticker sheet */
.spike__stickers {
  max-width: 1200px;
  margin: clamp(56px, 8vw, 100px) auto 0;
  text-align: center;
  position: relative; z-index: 1;
}
.spike__stickers h3 {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700; letter-spacing: -.01em;
}
.spike__stickers > p { margin-top: 10px; opacity: .7; font-size: clamp(15px, 1.8vw, 18px); }
.sticker-sheet {
  display: block;
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 34px auto 0;
  background: #fff;
  border: 3px dashed var(--ink);
  border-radius: 26px;
  padding: clamp(18px, 3vw, 38px);
  position: relative;
  rotate: 1.5deg;
  transition: rotate .35s var(--ease-pop);
}
.sticker-sheet:hover { rotate: -1deg; }
.sticker-sheet img { display: block; width: 100%; height: auto; }
.sticker-sheet::before, .sticker-sheet::after {
  content: "";
  position: absolute;
  width: 92px; height: 30px;
  background: var(--accent);
  opacity: .55;
  transition: background .5s;
}
.sticker-sheet::before { top: -14px; left: 12%; rotate: -4deg; }
.sticker-sheet::after  { bottom: -14px; right: 12%; rotate: 5deg; }
.sticker-sheet__count {
  position: absolute; top: -20px; right: -18px;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-content: center; line-height: 1.05;
  font-weight: 700; font-size: 15px;
  rotate: 10deg;
  animation: wobble 5s ease-in-out infinite;
}
.sticker-sheet__count strong { font-size: 26px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  transition: background .5s;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: .1em; font-weight: 500;
  white-space: nowrap;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADS
   ============================================================ */
section { padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 64px); }

.section-head { max-width: 1200px; margin: 0 auto clamp(48px, 7vw, 90px); }
.section-head--center { text-align: center; }
.section-head__label {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; font-weight: 600;
  transition: color .4s;
}
.section-head__title {
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 700; line-height: .96; letter-spacing: -.02em;
}
.section-head__note {
  margin-top: 18px; font-size: clamp(15px, 1.8vw, 19px);
  opacity: .7; line-height: 1.5;
}

/* ============================================================
   COLLECTION
   ============================================================ */
.collection__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
/* offset alternating cards for that broken-grid feel */
@media (min-width: 900px) {
  .card:nth-child(3n+2) { transform: translateY(44px); }
  .card:nth-child(3n+2).is-visible { transform: translateY(44px); }
}

.card { position: relative; }
.card__art {
  position: relative; overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  transition: transform .45s var(--ease-pop), box-shadow .45s;
}
.card:hover .card__art {
  transform: rotate(-1.5deg) scale(1.025);
  box-shadow: 0 24px 48px -20px var(--card-shadow, rgba(27,27,31,.35));
}
/* slideshow: color-fill cover + man/girl photos */
.slideshow { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .55s var(--ease-smooth);
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%;
  transition: transform .6s var(--ease-smooth);
}
.card:hover .slide.is-active img { transform: scale(1.05); }

/* the color-fill cover — solid brand color + silhouette frame */
.slide--cover { background: var(--card-bg); }
.slide--cover .placeholder-model {
  width: 100%; height: 100%; display: block;
  transition: transform .6s var(--ease-smooth);
}
.card:hover .slide--cover .placeholder-model { transform: scale(1.05); }

/* dots */
.dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.dots__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .3s var(--ease-pop), background .3s;
}
.dots__dot.is-active { background: #fff; transform: scale(1.35); }
.card[data-color="yellow"] .dots__dot { background: rgba(27,27,31,.35); box-shadow: none; }
.card[data-color="yellow"] .dots__dot.is-active { background: var(--ink); }

/* per-card colorways */
.card[data-color="red"]    { --card-bg: var(--red);    --card-ink: #FFD9D6; --card-shadow: rgba(255,75,62,.45); }
.card[data-color="blue"]   { --card-bg: var(--blue);   --card-ink: #D7E4FB; --card-shadow: rgba(45,108,223,.45); }
.card[data-color="yellow"] { --card-bg: var(--yellow); --card-ink: #7A5A00; --card-shadow: rgba(255,197,49,.5); }
.card[data-color="green"]  { --card-bg: var(--green);  --card-ink: #D5F3E6; --card-shadow: rgba(39,179,118,.45); }
.card[data-color="pink"]   { --card-bg: var(--pink);   --card-ink: #7E2743; --card-shadow: rgba(255,143,177,.5); }
.card[data-color="purple"] { --card-bg: var(--purple); --card-ink: #EBDCFA; --card-shadow: rgba(155,93,229,.45); }

.card__num {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
  color: var(--card-ink);
  opacity: .85;
  z-index: 2;
}
.card__soon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-mono); font-weight: 600; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: #111;
  background: #fff;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 2px 8px -2px rgba(27,27,31,.3);
  animation: blink 2.4s ease-in-out infinite;
}
.card__meta { padding: 18px 6px 0; display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; }
.card__meta h3 { font-size: 20px; font-weight: 600; }
.card__meta p { grid-column: 1; font-size: 14.5px; opacity: .65; }
.card__price {
  grid-row: 1 / span 2; grid-column: 2; align-self: start;
  font-family: var(--font-mono); font-weight: 600; font-size: 16px;
  background: var(--accent-soft); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  transition: background .4s;
}
.collection__more { text-align: center; margin-top: clamp(48px, 7vw, 88px); }

/* ============================================================
   COLORS — swatch picker
   ============================================================ */
.colors { background: var(--accent-soft); transition: background .6s var(--ease-smooth); border-radius: clamp(28px, 5vw, 64px); margin: 0 clamp(10px, 2vw, 28px); }

.colors__swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2.2vw, 26px);
  justify-items: center; align-items: center;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 700px) { .colors__swatches { grid-template-columns: repeat(3, 1fr); } }
.swatch {
  width: clamp(84px, 11vw, 130px); height: clamp(84px, 11vw, 130px);
  border-radius: 50%;
  position: relative;
  display: grid; place-items: center;
  transition: transform .35s var(--ease-pop), box-shadow .35s;
  box-shadow: 0 6px 0 rgba(27,27,31,.14);
}
.swatch:hover { transform: translateY(-8px) rotate(-4deg) scale(1.06); }
.swatch:active { transform: translateY(2px) scale(.96); }
.swatch.is-active {
  box-shadow: 0 6px 0 rgba(27,27,31,.14), 0 0 0 5px var(--paper), 0 0 0 9px var(--ink);
}
.swatch span {
  font-weight: 600; font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 3px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s var(--ease-pop);
}
.swatch:hover span, .swatch.is-active span { opacity: 1; transform: none; }
.swatch--red    { background: var(--red); }
.swatch--blue   { background: var(--blue); }
.swatch--yellow { background: var(--yellow); }
.swatch--yellow span { color: #6b4e00; text-shadow: none; }
.swatch--green  { background: var(--green); }
.swatch--pink   { background: var(--pink); }
.swatch--purple { background: var(--purple); }

.colors__current {
  text-align: center; margin-top: clamp(36px, 5vw, 56px);
  font-size: clamp(18px, 2.4vw, 26px);
}
.colors__current strong { color: var(--accent); transition: color .4s; font-weight: 700; }

/* ============================================================
   STORY
   ============================================================ */
.story__inner { max-width: 980px; margin: 0 auto; }
.story__manifesto {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 500; line-height: 1.22; letter-spacing: -.01em;
}
.mline {
  display: block;
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}
.mline.is-visible { opacity: 1; transform: none; }
.story__manifesto em { font-style: normal; font-weight: 700; }
.story__manifesto s { text-decoration-thickness: 6px; text-decoration-color: var(--red); opacity: .55; }
.c-red    { color: var(--red); }
.c-blue   { color: var(--blue); }
.c-yellow { color: var(--yellow); }
.c-green  { color: var(--green); }

.story__facts {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 72px);
  margin-top: clamp(48px, 7vw, 88px);
}
.fact strong {
  display: block; font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; color: var(--accent); transition: color .4s;
  line-height: 1;
}
.fact span { font-family: var(--font-mono); font-size: 13.5px; letter-spacing: .06em; opacity: .65; }

/* ============================================================
   DROP
   ============================================================ */
.drop__card {
  max-width: 760px; margin: 0 auto;
  background: var(--ink); color: var(--paper);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(44px, 7vw, 80px) clamp(28px, 6vw, 72px);
  text-align: center;
  position: relative; overflow: hidden;
}
.drop__card h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 700; letter-spacing: -.015em; }
.drop__card > p { margin-top: 14px; opacity: .75; font-size: clamp(15px, 1.8vw, 18px); line-height: 1.55; }

.drop__form {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.drop__form input {
  font: inherit; font-size: 16px;
  background: rgba(252,250,244,.12);
  border: 2px solid rgba(252,250,244,.25);
  color: var(--paper);
  border-radius: 999px;
  padding: 15px 24px;
  min-width: min(320px, 100%);
  outline: none;
  transition: border-color .3s, background .3s;
}
.drop__form input::placeholder { color: rgba(252,250,244,.5); }
.drop__form input:focus { border-color: var(--accent); background: rgba(252,250,244,.18); }
.drop__form .btn { background: var(--accent); }
.drop__form .btn:hover { background: var(--paper); color: var(--ink); }
.drop__done { margin-top: 22px; font-size: 18px; color: var(--accent); font-weight: 600; }

/* confetti dots inside drop card */
.drop__confetti span {
  position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  opacity: .85;
  animation: confetti-float 5s ease-in-out infinite alternate;
}
.drop__confetti span:nth-child(1)  { background: var(--red);    top: 12%; left: 7%; }
.drop__confetti span:nth-child(2)  { background: var(--blue);   top: 24%; right: 9%;  animation-delay: .4s; }
.drop__confetti span:nth-child(3)  { background: var(--yellow); bottom: 18%; left: 12%; animation-delay: .8s; }
.drop__confetti span:nth-child(4)  { background: var(--green);  bottom: 12%; right: 14%; animation-delay: 1.2s; }
.drop__confetti span:nth-child(5)  { background: var(--pink);   top: 55%; left: 4%;  animation-delay: 1.6s; }
.drop__confetti span:nth-child(6)  { background: var(--purple); top: 60%; right: 5%; animation-delay: 2s; }
.drop__confetti span:nth-child(7)  { background: var(--yellow); top: 8%;  left: 38%; animation-delay: .6s; width: 8px; height: 8px; }
.drop__confetti span:nth-child(8)  { background: var(--pink);   top: 10%; right: 28%; animation-delay: 1s;  width: 8px; height: 8px; }
.drop__confetti span:nth-child(9)  { background: var(--green);  bottom: 8%; left: 34%; animation-delay: 1.4s; width: 8px; height: 8px; }
.drop__confetti span:nth-child(10) { background: var(--blue);   bottom: 6%; right: 36%; animation-delay: 1.8s; width: 8px; height: 8px; }
.drop__confetti span:nth-child(11) { background: var(--red);    top: 40%; right: 2%;  animation-delay: 2.2s; width: 7px; height: 7px; }
.drop__confetti span:nth-child(12) { background: var(--purple); top: 42%; left: 2%;   animation-delay: 2.6s; width: 7px; height: 7px; }
@keyframes confetti-float {
  from { transform: translateY(-8px) scale(1); }
  to   { transform: translateY(10px) scale(1.25); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(60px, 8vw, 110px) 0 34px; overflow: hidden; }
.footer__wordmark {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 700; line-height: 1; letter-spacing: -.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  transition: -webkit-text-stroke-color .5s;
  user-select: none;
}
.footer__row {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding: 44px clamp(20px, 5vw, 64px) 0;
  font-size: 14px;
}
.footer__row p { opacity: .6; }
.footer__row nav { display: flex; gap: 24px; }
.footer__row nav a { font-weight: 500; position: relative; }
.footer__row nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2.5px; border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease-smooth);
}
.footer__row nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger cards */
.collection__grid .card:nth-child(2).is-visible { transition-delay: .08s; }
.collection__grid .card:nth-child(3).is-visible { transition-delay: .16s; }
.collection__grid .card:nth-child(4).is-visible { transition-delay: .08s; }
.collection__grid .card:nth-child(5).is-visible { transition-delay: .16s; }
.collection__grid .card:nth-child(6).is-visible { transition-delay: .24s; }

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