:root {
  --purple: #2a1238;
  --purple-deep: #1b0b26;
  --purple-mid: #3d1b4e;
  --cream: #fbf6ee;
  --cream-2: #f4ead8;
  --yellow: #f0b429;
  --coral: #e56b84;
  --lilac: #efe6f6;
  --ink: #2a1238;
  --muted: #6b5874;
  --white: #fffdf8;
  --line: rgba(42, 18, 56, 0.12);
  --pastel-wash: linear-gradient(90deg, #ffd6e6 0%, #ffeab8 38%, #c9eef5 70%, #ddd4fb 100%);
  --pastel-orb: linear-gradient(145deg, #ffd6e6 0%, #ffeab8 48%, #d5d6fb 100%);
  --logo-pink: #fc609c;
  --logo-cyan: #48cccc;
  --logo-gold: #fcb400;
  --logo-lilac: #9c60f0;
  --logo-spectrum: linear-gradient(90deg, #fc609c 0%, #48cccc 32%, #fcb400 66%, #9c60f0 100%);
  --logo-spectrum-deep: linear-gradient(90deg, #c42574 0%, #1a8b92 32%, #c68608 66%, #6b2ec4 100%);
  --rule-blocks: linear-gradient(
    90deg,
    var(--logo-pink) 0 calc(25% - 1.5px),
    transparent calc(25% - 1.5px) calc(25% + 1.5px),
    var(--logo-gold) calc(25% + 1.5px) calc(50% - 1.5px),
    transparent calc(50% - 1.5px) calc(50% + 1.5px),
    var(--logo-lilac) calc(50% + 1.5px) calc(75% - 1.5px),
    transparent calc(75% - 1.5px) calc(75% + 1.5px),
    var(--logo-cyan) calc(75% + 1.5px) 100%
  );
  --rule-blocks-y: linear-gradient(
    180deg,
    var(--logo-pink) 0 calc(25% - 1.5px),
    transparent calc(25% - 1.5px) calc(25% + 1.5px),
    var(--logo-gold) calc(25% + 1.5px) calc(50% - 1.5px),
    transparent calc(50% - 1.5px) calc(50% + 1.5px),
    var(--logo-lilac) calc(50% + 1.5px) calc(75% - 1.5px),
    transparent calc(75% - 1.5px) calc(75% + 1.5px),
    var(--logo-cyan) calc(75% + 1.5px) 100%
  );
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; height: 100%; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  font-family: Nunito, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body > main {
  flex: 1 0 auto;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--white);
  color: var(--purple);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.skip-link:focus {
  top: 12px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #f0b429;
  outline-offset: 3px;
}
.site-header a:focus-visible,
.site-header button:focus-visible {
  outline-color: #ffeab8;
}
h1, h2, h3 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.4em;
  letter-spacing: -0.03em;
  font-weight: 800;
}
p { margin: 0 0 1em; line-height: 1.65; }

.wrap {
  width: min(1180px, calc(100% - 10vw));
  margin-inline: auto;
}

.site-header {
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 7vw 24px;
  position: relative;
  z-index: 4;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
  overflow: visible;
  position: relative;
  z-index: 5;
}
.brand-mark {
  position: relative;
  display: block;
  width: min(248px, 58vw);
  overflow: visible;
}
.brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
}
.header-critters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 6;
}
.header-dumpling {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 240px 40px;
  transform-origin: 50% 80%;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  will-change: transform;
}
.dumpling-pink { background-image: url("../assets/brand/header-dumplings/hop-pink.webp?v=2"); }
.dumpling-cyan { background-image: url("../assets/brand/header-dumplings/hop-cyan.webp?v=2"); }
.dumpling-gold { background-image: url("../assets/brand/header-dumplings/hop-gold.webp?v=2"); }
.dumpling-lilac { background-image: url("../assets/brand/header-dumplings/hop-lilac.webp?v=2"); }
.header-dumpling.is-on {
  opacity: 1;
}
.header-dumpling.is-bump {
  filter: brightness(1.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.site-nav a { position: relative; padding: 6px 0; }
.nav-pipe {
  width: 1px;
  height: 14px;
  background: rgba(255, 253, 248, 0.35);
}
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--logo-pink);
}
.site-nav a[href="index.html"].active::after,
.site-nav a[href="index.html"]:hover::after { background: var(--logo-pink); }
.site-nav a[href="about.html"].active::after,
.site-nav a[href="about.html"]:hover::after { background: var(--logo-gold); }
.site-nav a[href="contact.html"].active::after,
.site-nav a[href="contact.html"]:hover::after { background: var(--logo-cyan); }
.mail-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pastel-orb);
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(201, 160, 255, 0.28);
}
.mail-btn svg { width: 18px; height: 18px; }
.site-nav a.mail-btn.active::after,
.site-nav a.mail-btn:hover::after,
.site-nav a.mail-btn:focus-visible::after {
  left: 8px;
  right: 8px;
  bottom: -10px;
  background: #c9a0ff;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.hero-band,
.page-home .site-header {
  background-color: var(--purple);
}
.hero-band {
  color: var(--white);
  position: relative;
  padding: 18px 0 48px;
  overflow: visible;
  isolation: isolate;
}
.hero-doodles,
.hero-etchings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mix-blend-mode: screen;
}
.hero-doodles {
  background-image: url("../assets/images/doodles-hero.svg?v=6");
  background-size: 1040px;
  background-position: center top;
}
.hero-etchings {
  color: #d4b3e8;
}
.hero-etchings .et {
  position: absolute;
  width: 54px;
  height: auto;
  opacity: 0.46;
  filter: drop-shadow(0 0 4px currentColor);
  transform-origin: 50% 50%;
  animation: etch-drift var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-etchings .et-pink { color: #ffb6d4; }
.hero-etchings .et-gold { color: #ffe38a; }
.hero-etchings .et-aqua { color: #9ee4f0; }
.hero-etchings .et-banana { top: 6%; left: 38%; width: 44px; --dur: 7.5s; --delay: -1s; }
.hero-etchings .et-berry { top: 10%; right: 5%; width: 50px; --dur: 9s; --delay: -3s; }
.hero-etchings .et-pear { top: 28%; left: 1.5%; width: 42px; --dur: 8.2s; --delay: -2s; }
.hero-etchings .et-peach { top: 5%; left: 28%; width: 40px; --dur: 10s; --delay: -4.5s; }
.hero-etchings .et-sparkles { top: 4%; left: 14%; width: 48px; --dur: 8.8s; --delay: -1.2s; }
.hero-etchings .et-melon { bottom: 22%; left: 2%; width: 48px; --dur: 9.4s; --delay: -5s; }
.hero-etchings .et-lemon { top: 16%; left: 21%; width: 44px; --dur: 7.8s; --delay: -2.8s; }
.hero-etchings .et-orange { bottom: 10%; left: 12%; width: 40px; --dur: 8.6s; --delay: -6s; }
.hero-etchings .et-blue { top: 58%; left: 3%; width: 42px; --dur: 11s; --delay: -0.6s; }
.hero-etchings .et-heart { top: 3%; left: 7%; width: 32px; --dur: 9.2s; --delay: -3.4s; }
.hero-etchings .et-grapes { bottom: 8%; right: 4%; width: 46px; --dur: 10.5s; --delay: -4s; }
.hero-etchings .et-s { top: 36%; left: 17%; width: 40px; --dur: 7.2s; --delay: -0.4s; }
.hero-etchings .et-sparkle { top: 8%; left: 33%; width: 22px; --dur: 6.5s; --delay: -2.2s; }
@keyframes etch-drift {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(5px, -8px) rotate(3deg); }
}
.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  line-height: 1.02;
  max-width: 11ch;
  color: #fff;
  margin-bottom: 18px;
}
.union-word,
.bubble-word {
  display: inline-block;
  white-space: nowrap;
}
.union-word span:nth-child(3n+1) { color: #e24a58; }
.union-word span:nth-child(3n+2) { color: #f6eef2; }
.union-word span:nth-child(3n+3) { color: #5c82d6; }
.bubble-word span {
  font-family: inherit;
}
.bubble-word span:nth-child(4n+1) { color: #ff8ab8; }
.bubble-word span:nth-child(4n+2) { color: #7ed7ea; }
.bubble-word span:nth-child(4n+3) { color: #f0b429; }
.bubble-word span:nth-child(4n+4) { color: #c9a0ff; }
.hero .lede {
  max-width: 34rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.hero > div:first-child {
  padding-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.hero-status {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.7);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
}
.btn-yellow {
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box,
    linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 22%, #f0b429 48%, #3ed4ea 74%, #c9a0ff 100%) border-box;
  border: 3px solid transparent;
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(42, 18, 56, 0.12);
}
.spectrum-bold {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 22%, #f0b429 48%, #3ed4ea 74%, #c9a0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.btn-pop {
  background: var(--pastel-wash);
  color: var(--purple);
  border: 1.5px solid rgba(255, 253, 248, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.7),
    0 8px 22px rgba(42, 18, 56, 0.22);
  position: relative;
  z-index: 2;
  margin: 4px 0 8px;
}
.btn-pop:hover {
  filter: brightness(1.04);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
  letter-spacing: 0.06em;
}
.enquiry .btn-purple {
  position: relative;
  z-index: 2;
  padding: 13px 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: #d4c4e6;
  border: 1px solid #6d5488;
  color: var(--purple);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.45);
}
.enquiry .btn-purple:hover,
.enquiry .btn-purple:focus-visible {
  background: #cbb8df;
  border-color: #59446f;
}
.contact-email-btn {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 260px);
  margin: 6px 0 2px;
  padding: 0;
  line-height: 0;
  border: 0;
  border-radius: 999px;
  background: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.contact-email-btn__stage {
  position: relative;
  display: block;
  width: 100%;
}
.contact-email-btn__art {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.contact-email-btn__art--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.contact-email-btn:hover,
.contact-email-btn:focus-visible {
  transform: scale(1.03);
}
.contact-email-btn:hover .contact-email-btn__art--hover,
.contact-email-btn:focus-visible .contact-email-btn__art--hover,
.contact-email-btn:active .contact-email-btn__art--hover {
  opacity: 1;
}
.contact-email-btn:focus-visible {
  outline: 3px solid rgba(201, 160, 255, 0.75);
  outline-offset: 4px;
}
.contact-email-btn:active {
  transform: scale(0.985);
}
@media (prefers-reduced-motion: reduce) {
  .contact-email-btn,
  .contact-email-btn__art--hover {
    transition: none;
  }
}
.hero-band::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 210, 168, 0.22) 16%,
    rgba(255, 227, 138, 0.48) 50%,
    rgba(212, 179, 232, 0.28) 84%,
    transparent 100%
  );
}
.hero-visual {
  margin: 0 0 -140px;
  overflow: hidden;
  max-height: 560px;
  position: relative;
  z-index: 2;
  background: none;
}
.hero-visual picture,
.portrait picture {
  display: contents;
}
.hero-visual .hero-still {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  z-index: 1;
}
.hero-visual .hero-wink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  animation: egg-wink 30s linear infinite;
}
@keyframes egg-wink {
  0%, 6% { opacity: 0; }
  7%, 8.4% { opacity: 1; }
  9.2%, 100% { opacity: 0; }
}

.cream-band {
  background: var(--cream) url("../assets/images/doodles-cream.svg?v=7") center top / 1280px no-repeat;
}
.page-home .cream-band {
  margin-top: 0;
  position: relative;
  z-index: 1;
  background-color: var(--cream);
  background-position: center 48px;
  padding-top: 36px;
}
.developing-block {
  position: relative;
  z-index: 0;
}
.developing-etchings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-home .cream-band > .wrap,
.developing-block > .wrap {
  position: relative;
  z-index: 1;
}
.developing-etchings .et {
  position: absolute;
  width: 52px;
  height: auto;
  opacity: 0.46;
  filter: drop-shadow(0 0 3px currentColor);
  transform-origin: 50% 50%;
  animation: etch-drift var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.developing-etchings .et-pink { color: #f4a0c4; }
.developing-etchings .et-gold { color: #e8c56a; }
.developing-etchings .et-aqua { color: #6fc8d8; }
.developing-etchings .et-lilac { color: #c9a6e0; }
.developing-etchings .et-berry { top: 3%; left: max(12px, calc(50% - 670px)); width: 58px; --dur: 8.4s; --delay: -1.2s; }
.developing-etchings .et-sparkles { top: 6%; left: max(64px, calc(50% - 605px)); width: 50px; --dur: 9s; --delay: -2.4s; }
.developing-etchings .et-peach { top: 15%; left: max(14px, calc(50% - 650px)); width: 46px; --dur: 10s; --delay: -4s; }
.developing-etchings .et-lemon { top: 4%; right: max(150px, calc(50% - 430px)); width: 50px; --dur: 7.8s; --delay: -1.6s; }
.developing-etchings .et-daisy { top: 2.5%; right: max(240px, calc(50% - 320px)); width: 48px; --dur: 9.4s; --delay: -3.1s; color: #c9a6e0; }
.developing-etchings .et-star { top: 7%; right: max(70px, calc(50% - 620px)); width: 42px; --dur: 8s; --delay: -0.8s; }
.developing-etchings .et-banana { top: 13%; right: max(16px, calc(50% - 670px)); width: 50px; --dur: 7.6s; --delay: -5s; }
.developing-etchings .et-grapes { top: 32%; left: max(10px, calc(50% - 680px)); width: 48px; --dur: 10.2s; --delay: -2s; }
.developing-etchings .et-pear { top: 48%; left: max(16px, calc(50% - 655px)); width: 44px; --dur: 8.6s; --delay: -3.6s; }
.developing-etchings .et-orange { top: 40%; left: max(58px, calc(50% - 615px)); width: 40px; --dur: 9.2s; --delay: -5.4s; }
.developing-etchings .et-blue { top: 34%; right: max(14px, calc(50% - 675px)); width: 44px; --dur: 11s; --delay: -0.5s; }
.developing-etchings .et-s { top: 49%; right: max(22px, calc(50% - 650px)); width: 40px; --dur: 7.2s; --delay: -2.8s; }
.developing-etchings .et-melon { bottom: 26%; left: max(14px, calc(50% - 665px)); width: 52px; --dur: 9.6s; --delay: -4.4s; }
.developing-etchings .et-heart { bottom: 32%; left: max(74px, calc(50% - 600px)); width: 34px; --dur: 8.8s; --delay: -1s; }
.developing-etchings .et-croissant { bottom: 26%; left: 22%; width: 50px; --dur: 8.2s; --delay: -3.2s; }
.developing-etchings .et-cupcake { bottom: 27%; left: 36%; width: 46px; --dur: 9.8s; --delay: -5.8s; }
.developing-etchings .et-sparkle { bottom: 31%; left: 48%; width: 24px; --dur: 6.6s; --delay: -2.2s; }
.developing-etchings .et-star-b { bottom: 25%; left: 54%; width: 40px; --dur: 7.4s; --delay: -0.6s; }
.developing-etchings .et-banana-b { bottom: 27%; left: 66%; width: 50px; --dur: 8.5s; --delay: -4.8s; }
.developing-etchings .et-cloud { bottom: 28%; right: max(120px, calc(50% - 500px)); width: 48px; --dur: 10.4s; --delay: -1.8s; }
.developing-etchings .et-lemon-l { top: 22%; left: max(36px, calc(50% - 720px)); width: 44px; --dur: 8.1s; --delay: -2.6s; }
.developing-etchings .et-star-l { top: 8%; left: max(110px, calc(50% - 560px)); width: 36px; --dur: 7s; --delay: -4.2s; }
.developing-etchings .et-heart-l { top: 58%; left: max(40px, calc(50% - 700px)); width: 32px; --dur: 9s; --delay: -1.4s; }
.developing {
  padding: 28px 0 36px;
  text-align: center;
}
.section-title {
  font-family: Nunito, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: 8px;
}
.developing .section-title {
  font-size: clamp(1.65rem, 3.6vw, 2.3rem);
  letter-spacing: 0.14em;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 18px;
}
.developing .section-title::after,
.topics .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 99px;
  background: var(--rule-blocks);
}
.topics .section-title {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 18px;
}
.dev-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 22px;
  margin-top: 48px;
  text-align: center;
}
.dev-icon {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(42, 18, 56, 0.16);
  border: 0;
  background: transparent;
}
.dev-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dev-icon svg {
  width: 92px;
  height: 92px;
}
.dev-icon.purple { background: linear-gradient(180deg, #f4e8fb, #e4d2f3); color: #6b2d8b; }
.dev-icon.orange { background: linear-gradient(180deg, #ffe9d2, #f5c89a); color: #d06a1c; }
.dev-icon.pink { background: linear-gradient(180deg, #ffdce8, #f5b3c8); color: #d24b78; }
.dev-icon.teal { background: linear-gradient(180deg, #d9f6ef, #a8e0d4); color: #1f8f7a; }
.dev-icon.blue { background: linear-gradient(180deg, #dce8fb, #b4c8f0); color: #2a5da8; }
.dev-grid h3 {
  font-family: Nunito, sans-serif;
  font-size: 1.08rem;
  margin: 0 0 8px;
}
.dev-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.dev-grid article {
  min-width: 0;
  padding: 0 4px;
}

.enquiry {
  position: relative;
  overflow: hidden;
  margin: 28px auto 64px;
  padding: 26px 28px;
  border-radius: 22px;
  background: var(--cream-2);
  display: grid;
  grid-template-columns: auto minmax(0, 1.35fr) minmax(0, 0.95fr) auto;
  gap: 18px 20px;
  align-items: center;
}
.enquiry-apps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  gap: 12px;
}
.enquiry-icon {
  width: clamp(52px, 5.5vw, 72px);
  height: clamp(52px, 5.5vw, 72px);
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--purple);
  color: #6ee0a4;
  display: grid;
  place-items: center;
  flex: none;
  cursor: pointer;
  font: inherit;
  box-shadow:
    0 0 0 2px rgba(201, 160, 255, 0.55),
    0 0 12px rgba(201, 160, 255, 0.5),
    0 0 22px rgba(201, 160, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-icon:hover,
.enquiry-icon:focus-visible,
.enquiry-icon.is-copied {
  transform: scale(1.06);
  box-shadow:
    0 0 0 3px rgba(201, 160, 255, 0.75),
    0 0 16px rgba(201, 160, 255, 0.7),
    0 0 28px rgba(201, 160, 255, 0.4);
}
.enquiry-icon svg { width: 46%; height: 46%; }
.enquiry-icon--instagram {
  color: #c9a0ff;
}
.enquiry-icon--instagram svg {
  width: 48%;
  height: 48%;
}
.enquiry h3 {
  font-family: Nunito, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 4px;
}
.enquiry-place {
  font-weight: 800;
  background: linear-gradient(90deg, #3d6fd1 0%, #6fa0e8 35%, #d6e4f8 50%, #3d6fd1 72%, #012169 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.enquiry .person.pastel-name,
.contact-card h2.pastel-name {
  background: var(--logo-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.enquiry-email {
  color: var(--purple);
  text-decoration: none;
}
.enquiry-email:hover,
.enquiry-email:focus-visible {
  color: #6a3d86;
}
.enquiry li.person { color: transparent; }
.enquiry ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.enquiry .person {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.enquiry-cta {
  position: relative;
  justify-self: end;
  display: grid;
  place-items: end center;
  min-width: 0;
  width: min(100%, 168px);
  padding-top: 38px;
  isolation: isolate;
}
.enquiry-mark {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 64px;
  height: auto;
  opacity: 0.42;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.enquiry-btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  line-height: 0;
  border: 0;
  padding: 0;
  background: none;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.enquiry-btn__art {
  display: block;
  width: 100%;
  max-width: 168px;
  height: auto;
}
.enquiry-btn:hover,
.enquiry-btn:focus-visible {
  transform: scale(1.03);
  filter: brightness(1.04);
}
.enquiry-btn:focus-visible {
  outline: 3px solid rgba(201, 160, 255, 0.75);
  outline-offset: 4px;
}

.page-inner .split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 40px 0 16px;
}
.page-inner .split.about-intro {
  grid-template-areas:
    "kicker kicker"
    "lead photo"
    "rule photo"
    "script photo";
  column-gap: 48px;
  row-gap: 10px;
  align-items: start;
}
.about-intro > .kicker { grid-area: kicker; }
.about-intro .about-lead { grid-area: lead; }
.about-intro .brand-rule { grid-area: rule; justify-self: center; }
.about-intro .script {
  grid-area: script;
  justify-self: center;
  text-align: center;
  margin: 8px 0 0;
  font-size: 2.15rem;
}
.about-intro .portrait {
  grid-area: photo;
  align-self: center;
}
.brand-rule {
  width: min(220px, 70%);
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 28%, #f0b429 52%, #3ed4ea 76%, #c9a0ff 100%);
  margin: 6px 0 2px;
}
.page-inner .split > .kicker {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  margin: 0 auto 8px;
}
.kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker.gold { color: #d7a21c; }
.multi-bright {
  display: inline-block;
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 28%, #f0b429 52%, #3ed4ea 76%, #c9a0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.kicker-bright {
  width: max-content;
  max-width: 100%;
  font-size: clamp(2.25rem, 7.2vw, 3.36rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
  margin: 0 auto 14px;
}
.kicker.kicker-bright::after {
  width: 100%;
  max-width: 12.5em;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 99px;
  background: var(--rule-blocks);
}
.kicker-hero {
  font-size: 1.28rem;
  letter-spacing: 0.14em;
}
.kicker.kicker-hero::after {
  width: 100%;
  height: 2px;
  background: #3ed4ea;
}
.talk-pastel,
.kicker-trade {
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 28%, #f0b429 52%, #3ed4ea 76%, #c9a0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.kicker-trade {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin: 0 0 4px;
}
.kicker.kicker-trade::after {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 28%, #f0b429 52%, #3ed4ea 76%, #c9a0ff 100%);
}
.kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  margin-top: 8px;
}
.page-inner .split.contact-intro {
  align-items: start;
}
.contact-lead > p:not(.kicker):not(.script) {
  margin: 0 0 0.85em;
  font-size: 0.98rem;
  line-height: 1.55;
}
.contact-lead strong {
  color: var(--purple);
  font-weight: 800;
}
.contact-lead .inline-name {
  display: inline;
  font-weight: 800;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  background: none;
  box-shadow: none;
  text-shadow: none;
  filter: none;
  float: none;
  width: auto;
  max-width: none;
  position: static;
}
.contact-lead .inline-name.keycraft {
  color: var(--logo-lilac);
}
.contact-lead .inline-name.scrunchems {
  color: #1e90d6;
}
.contact-lead .inline-name.hti {
  color: #202878;
}
.contact-lead .inline-name.needoh .brand-nee {
  color: var(--logo-gold);
}
.contact-lead .inline-name.needoh .brand-doh {
  color: var(--logo-cyan);
}
.contact-lead .inline-name.squishems {
  color: #ff4f9a;
}
.grad-heart {
  display: inline-block;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff2d8a 0%, #ff7a1a 28%, #ffd000 52%, #2ee0f0 76%, #c44dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.script .grad-heart {
  font-size: 1.12em;
}
.contact-lead .script { margin-top: 4px; }
.collection-teaser {
  position: relative;
  isolation: isolate;
  min-height: 258px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(106, 61, 134, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 220, 112, 0.62), transparent 27%),
    radial-gradient(circle at 58% 92%, rgba(255, 143, 178, 0.2), transparent 38%),
    linear-gradient(135deg, #fffaf1 0%, #f7efff 52%, #eefbff 100%);
  box-shadow: 0 14px 34px rgba(42, 18, 56, 0.09);
}
.collection-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(255, 79, 154, 0.2) 0 2px, transparent 2.5px),
    radial-gradient(circle at 30px 30px, rgba(62, 212, 234, 0.18) 0 2px, transparent 2.5px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 68%);
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.collection-teaser__copy {
  position: relative;
  z-index: 8;
  width: 45%;
  padding: 30px 0 28px 28px;
}
.collection-teaser__eyebrow {
  margin: 0 0 12px;
  color: #6a3d86;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.collection-teaser__title {
  margin: 0;
  color: #2a1238;
  font-family: "Fraunces", serif;
  font-size: clamp(1.42rem, 2.15vw, 1.85rem);
  font-weight: 700;
  line-height: 1.12;
}
.collection-teaser__title strong {
  font-weight: 800;
  background: linear-gradient(100deg, #ff7a1a 0%, #e4ab13 48%, #c04cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.collection-teaser__hint {
  max-width: 20ch;
  margin: 14px 0 0;
  color: #765e7d;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.collection-teaser__stage,
.collection-teaser__glow {
  position: absolute;
  inset: 0;
}
.collection-teaser__glow {
  z-index: 0;
  left: auto;
  width: 64%;
  background: radial-gradient(circle at 62% 54%, rgba(255, 255, 255, 0.96), transparent 54%);
  animation: teaser-glow 12s ease-in-out infinite;
}
.collection-teaser__card,
.collection-teaser__goldie {
  position: absolute;
  margin: 0;
  will-change: transform, opacity;
}
.collection-teaser__card img,
.collection-teaser__goldie img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-teaser__card--bread {
  z-index: 3;
  right: 2%;
  bottom: -19%;
  width: 52%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(42, 18, 56, 0.2);
  transform: rotate(5deg);
  animation: teaser-bread 12s cubic-bezier(0.22, 0.74, 0.22, 1) infinite;
}
.collection-teaser__card--bread img { object-position: 50% 47%; }
.collection-teaser__card--eggs {
  z-index: 4;
  right: 1%;
  bottom: 8%;
  width: 58%;
  aspect-ratio: 3 / 2;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(72%, 16%, 0) rotate(6deg) scale(0.9);
  animation: teaser-eggs 12s cubic-bezier(0.22, 0.74, 0.22, 1) infinite;
}
.collection-teaser__card--eggs > img {
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 16px 14px rgba(42, 18, 56, 0.2))
    drop-shadow(0 4px 5px rgba(42, 18, 56, 0.1));
}
.collection-teaser__goldie {
  z-index: 6;
  right: 3%;
  bottom: 14%;
  width: 28%;
  aspect-ratio: 1;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(176, 96, 8, 0.32));
  transform: translate3d(18%, 42%, 0) rotate(12deg) scale(0.28);
  animation: teaser-goldie 12s cubic-bezier(0.22, 0.74, 0.22, 1) infinite;
}
.collection-teaser__goldie img {
  object-fit: contain;
  object-position: center;
}
.collection-teaser:hover .collection-teaser__goldie,
.collection-teaser:focus-within .collection-teaser__goldie {
  animation: none;
  opacity: 1;
  transform: translate3d(-4%, -16%, 0) rotate(-8deg) scale(1);
}
.collection-teaser__spark {
  position: absolute;
  z-index: 7;
  color: #ffd24d;
  font-size: 1.45rem;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 12px rgba(255, 210, 77, 0.9);
  animation: teaser-spark 12s ease-in-out infinite;
}
.collection-teaser__spark--one { right: 4%; top: 17%; }
.collection-teaser__spark--two {
  right: 20%;
  bottom: 12%;
  font-size: 0.95rem;
  animation-delay: 0.35s;
}
@keyframes teaser-bread {
  0%, 29%, 100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(5deg) scale(1); }
  38%, 76% { opacity: 0.28; transform: translate3d(-28%, 7%, 0) rotate(-5deg) scale(0.82); }
  86% { opacity: 1; transform: translate3d(0, 0, 0) rotate(5deg) scale(1); }
}
@keyframes teaser-eggs {
  0%, 27%, 100% { opacity: 0; transform: translate3d(72%, 16%, 0) rotate(6deg) scale(0.9); }
  39%, 72% { opacity: 1; transform: translate3d(0, 0, 0) rotate(-3deg) scale(1); }
  83% { opacity: 0; transform: translate3d(42%, 8%, 0) rotate(3deg) scale(0.94); }
}
@keyframes teaser-goldie {
  0%, 46%, 78%, 100% {
    opacity: 0;
    transform: translate3d(18%, 42%, 0) rotate(12deg) scale(0.28);
  }
  52% {
    opacity: 1;
    transform: translate3d(-8%, -22%, 0) rotate(-10deg) scale(1.08);
  }
  58%, 70% {
    opacity: 1;
    transform: translate3d(-4%, -14%, 0) rotate(-6deg) scale(1);
  }
}
@keyframes teaser-spark {
  0%, 53%, 79%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  61%, 70% { opacity: 1; transform: scale(1) rotate(22deg); }
}
@keyframes teaser-glow {
  0%, 29%, 100% { opacity: 0.52; transform: scale(0.94); }
  45%, 74% { opacity: 1; transform: scale(1.08); }
}
.split h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 12ch; }
.word-squeezed {
  font-size: 1.14em;
}
.pop-pink, .pop-aqua, .pop-gold {
  font-size: 1.22em;
  font-weight: 800;
}
.pop-pink { color: #ff4f9a; }
.pop-aqua { color: #2ecfe6; }
.pop-gold { color: #ffd24d; }
.script {
  font-family: Caveat, cursive;
  font-size: 1.85rem;
  line-height: 1.25;
  color: #6a3d86;
  margin-top: 10px;
}
.script span { font-weight: 600; }
.script .multi-bright { font-weight: 800; }
.portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 6% 8% 4%;
  background: radial-gradient(ellipse at center, #f4c9d6 0%, transparent 70%);
  z-index: 0;
}
.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.portrait img.portrait-wink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  animation: rebecca-wink 20s linear infinite;
}
.shop-scene {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 1089 / 1445;
  isolation: isolate;
  background: transparent;
}
.shop-scene picture,
.shop-scene .shop-still {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.shop-scene .shop-toast-squish,
.shop-scene .shop-becky-wink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}
.shop-scene .shop-toast-squish {
  z-index: 2;
}
.shop-scene .shop-toast-squish.is-squishing {
  animation: shop-toast-squish 1600ms cubic-bezier(0.33, 0, 0.24, 1);
}
.shop-scene .shop-becky-wink {
  z-index: 3;
  transition: opacity 70ms ease-out;
}
.shop-scene .shop-becky-wink.is-winking {
  opacity: 1;
}
@keyframes shop-toast-squish {
  0%, 12% { opacity: 0; }
  34% { opacity: 0.62; }
  48%, 61% { opacity: 1; }
  78% { opacity: 0.54; }
  100% { opacity: 0; }
}
@keyframes rebecca-wink {
  0%, 4% { opacity: 0; }
  5%, 6.5% { opacity: 1; }
  7.5%, 100% { opacity: 0; }
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  width: min(920px, calc(100% - 10vw));
  margin-inline: auto;
  padding: 12px 0 48px;
}
.egg-rain-zone {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding-bottom: clamp(88px, 10vw, 132px);
}
.egg-rain-zone .cards {
  position: relative;
  z-index: 2;
}
.egg-rain {
  --egg-floor-pad: 32px;
  position: absolute;
  z-index: 1;
  top: 28%;
  bottom: calc(var(--egg-floor-pad) * -1);
  left: 50%;
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}
.egg-rain__drop {
  --fall-hit: var(--fall);
  --fall-up: var(--fall);
  position: absolute;
  top: 0;
  width: var(--egg-size);
  height: var(--egg-size);
  margin-left: calc(var(--egg-size) / -2);
  animation-delay: var(--delay);
}
.egg-rain__faller {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  animation: egg-rain-fall 30s linear var(--delay) infinite both;
}
.egg-rain__shell {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 50% 100%;
  animation: egg-rain-squash 30s linear var(--delay) infinite both;
}
.egg-rain__art,
.egg-rain__piece {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.egg-rain__art {
  object-fit: contain;
  filter: var(--egg-filter, none);
  user-select: none;
}
.egg-rain__whole {
  animation: egg-rain-whole 30s steps(1, end) var(--delay) infinite both;
}
.egg-rain__piece {
  overflow: hidden;
  opacity: 0;
  animation: egg-rain-piece 30s ease-out var(--delay) infinite both;
}
.egg-rain__piece--top {
  transform-origin: 50% 100%;
  clip-path: polygon(0 0, 100% 0, 100% 51.6%, 84% 50.4%, 68% 52.2%, 50% 50.6%, 32% 52.3%, 16% 50.5%, 0 51.4%);
}
.egg-rain__piece--bottom {
  transform-origin: 50% 100%;
  clip-path: polygon(0 51.4%, 16% 50.5%, 32% 52.3%, 50% 50.6%, 68% 52.2%, 84% 50.4%, 100% 51.6%, 100% 100%, 0 100%);
  animation-name: egg-rain-piece-bottom;
}
.egg-rain__crack {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 6%;
  width: 88%;
  aspect-ratio: 120 / 20;
  background: url("../assets/images/egg-rain/egg-crack.svg") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0;
  animation: egg-rain-crack 30s linear var(--delay) infinite both;
}
.egg-rain__shadow {
  position: absolute;
  z-index: -1;
  left: 10%;
  bottom: -8%;
  width: 80%;
  height: 16%;
  border-radius: 50%;
  background: rgba(80, 48, 42, 0.18);
  filter: blur(4px);
  opacity: 0;
  animation: egg-rain-shadow 30s linear var(--delay) infinite both;
}
.egg-rain__gleam {
  position: absolute;
  inset: -14%;
  display: none;
  animation: egg-rain-gleam 30s linear var(--delay) infinite both;
}
.egg-rain__gleam i {
  position: absolute;
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: rotate(45deg);
  background: #fff6b8;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  animation: egg-rain-sparkle 30s ease-in-out var(--delay) infinite both;
}
.egg-rain__gleam i:nth-child(1) { top: 8%; right: 4%; }
.egg-rain__gleam i:nth-child(2) { top: 30%; left: 0; animation-delay: calc(var(--delay) + .32s); }
.egg-rain__gleam i:nth-child(3) { right: 10%; bottom: 6%; animation-delay: calc(var(--delay) + .64s); }
.egg-rain__drop[data-kind="gold"] .egg-rain__whole {
  opacity: 1;
  animation: none;
}
.egg-rain__drop[data-kind="gold"] .egg-rain__piece,
.egg-rain__drop[data-kind="gold"] .egg-rain__crack {
  display: none;
}
.egg-rain__drop[data-kind="gold"] .egg-rain__gleam {
  display: block;
}
.egg-rain.is-paused *,
.egg-rain.is-paused *::before,
.egg-rain.is-paused *::after {
  animation-play-state: paused !important;
}
@keyframes egg-rain-fall {
  0% { transform: translate3d(var(--drift-start), -110%, 0) rotate(var(--turn-start)); opacity: 0; }
  4% { opacity: .94; }
  18% { transform: translate3d(var(--drift-a), var(--fall-a), 0) rotate(var(--turn-a)); }
  42% { transform: translate3d(var(--drift-b), var(--fall-b), 0) rotate(var(--turn-b)); }
  61% { transform: translate3d(var(--drift), var(--fall-hit), 0) rotate(var(--turn)); opacity: .94; }
  63.5% { transform: translate3d(var(--drift), var(--fall-up), 0) rotate(var(--turn)); opacity: .94; }
  66%, 88% { transform: translate3d(var(--drift), var(--fall), 0) rotate(var(--turn)); opacity: .94; }
  96%, 100% { transform: translate3d(var(--drift), var(--fall), 0) rotate(var(--turn)); opacity: 0; }
}
@keyframes egg-rain-squash {
  0%, 58% { transform: scale(1); }
  61% { transform: scale(1.13, .82); }
  63.5% { transform: scale(.95, 1.07); }
  66%, 100% { transform: scale(1); }
}
@keyframes egg-rain-whole {
  0%, 65.99% { opacity: 1; }
  66%, 100% { opacity: 0; }
}
@keyframes egg-rain-crack {
  0%, 62.4% { opacity: 0; transform: scaleX(.35); }
  63.2%, 65.8% { opacity: .28; transform: scaleX(1); }
  66%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes egg-rain-piece {
  0%, 65.99% { opacity: 0; transform: translate(0, 0) rotate(0); }
  66% { opacity: 1; transform: translate(0, 0) rotate(0); }
  70%, 100% { opacity: 1; transform: translate(-8%, -10%) rotate(-8deg); }
}
@keyframes egg-rain-piece-bottom {
  0%, 65.99% { opacity: 0; transform: translate(0, 0) rotate(0); }
  66% { opacity: 1; transform: translate(0, 0) rotate(0); }
  70%, 100% { opacity: 1; transform: translate(8%, 0) rotate(7deg); }
}
@keyframes egg-rain-shadow {
  0%, 46% { opacity: 0; transform: scale(.2); }
  61% { opacity: .9; transform: scale(1); }
  88% { opacity: .72; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes egg-rain-gleam {
  0%, 62% { transform: scale(.94); }
  67% { transform: scale(1.09); }
  72%, 100% { transform: scale(1); }
}
@keyframes egg-rain-sparkle {
  0%, 62%, 78%, 100% { opacity: 0; transform: rotate(45deg) scale(.35); }
  66%, 71% { opacity: 1; transform: rotate(45deg) scale(1); }
}
@media (max-width: 760px) {
  .egg-rain-zone { padding-bottom: 92px; }
  .egg-rain { top: 70%; }
}
@media (max-width: 480px) {
  .egg-rain-zone { padding-bottom: 76px; }
  .egg-rain { top: 76%; }
}
.card {
  border-radius: 22px;
  padding: 28px 28px 32px;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}
.card.green {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 36ch) auto auto auto minmax(160px, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: 18px;
  row-gap: 0;
  justify-items: center;
  align-items: center;
  text-align: center;
  padding: 22px 28px 24px 32px;
}
.card.pink { background: #ffd6e8; }
.card.yellow { background: #ffe79a; }
.card.green { background: #c5f3de; }
.card-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  margin: 0 auto 12px;
}
.card-art img {
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.card-art.icons,
.card-art.icons.pair {
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 10px 0 14px;
  min-height: 0;
  overflow: visible;
}
.card-badge {
  --badge-ring: 8px;
  position: relative;
  display: grid;
  flex: none;
  width: 82px;
  height: 82px;
  padding: var(--badge-ring);
  box-sizing: border-box;
  border-radius: 50%;
  overflow: visible;
  background: transparent;
}
.card-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke-width='8' stroke-linecap='round'%3E%3Ccircle cx='50' cy='50' r='43' stroke='%23fc609c' pathLength='360' stroke-dasharray='80 280' transform='rotate(-130 50 50)'/%3E%3Ccircle cx='50' cy='50' r='43' stroke='%23fcb400' pathLength='360' stroke-dasharray='80 280' transform='rotate(-40 50 50)'/%3E%3Ccircle cx='50' cy='50' r='43' stroke='%239c60f0' pathLength='360' stroke-dasharray='80 280' transform='rotate(50 50 50)'/%3E%3Ccircle cx='50' cy='50' r='43' stroke='%2348cccc' pathLength='360' stroke-dasharray='80 280' transform='rotate(140 50 50)'/%3E%3C/g%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: 1;
}
.card-badge-art {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50%);
  background: var(--cream);
}
.card-art.icons .card-badge img,
.card-art.icons.pair .card-badge img {
  position: absolute;
  width: 142%;
  height: 142%;
  max-width: none;
  max-height: none;
  left: -21%;
  top: -21%;
  margin: 0;
  object-fit: cover;
}
.card-art.icons img.dot-dumpling,
.card-art.icons.pair img.dot-dumpling {
  width: 34px;
  height: 34px;
}
.card-art.brands {
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 88px;
  padding: 4px 0 8px;
  overflow: visible;
}
.card.green .card-art.brands {
  display: contents;
}
.card-art.brands .brand-strip {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: calc(100% - 104px);
  height: 44px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}
.card.green .brand-strip {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  height: 44px;
  flex: none;
  margin-bottom: 8px;
}
.card.green h3 {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}
.card.green p {
  grid-column: 1;
  max-width: none;
}
.card-art.brands .auth-seal {
  width: 192px;
  height: 192px;
  max-width: 192px;
  max-height: 192px;
  flex: 0 0 192px;
  object-fit: contain;
}
.card.green .card-rule-y {
  grid-column: 2;
  grid-row: 1 / -1;
  width: 6px;
  min-height: 72px;
  align-self: stretch;
  justify-self: center;
  margin-block: 2px;
  border-radius: 99px;
  background: var(--rule-blocks-y);
  pointer-events: none;
}
.card.green .auth-seal {
  grid-column: 3;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
  margin-inline: 4px;
  filter: none;
}
.card.green .card-rule-y--brands {
  grid-column: 4;
  grid-row: 1 / -1;
  margin-inline: 2px;
}
.brand-float {
  grid-column: 5;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  gap: 10px 12px;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  min-width: 160px;
  max-width: 220px;
  padding: 6px 4px;
  isolation: isolate;
  pointer-events: none;
}
.brand-float__item {
  display: block;
  width: 100%;
  max-width: 88px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.card h3 {
  font-family: Nunito, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.12rem;
  margin: 4px 0 10px;
}
.card p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 32ch;
  font-size: 1.02rem;
  line-height: 1.55;
}
.card p + p { margin-top: 8px; }

.contact-card {
  position: relative;
  overflow: visible;
  margin: 8px auto 32px;
  padding: 22px 28px 24px;
  border-radius: 24px;
  background: var(--lilac);
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px 32px;
  align-items: center;
  justify-items: stretch;
}
.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}
.contact-pops {
  display: grid;
  grid-template-columns: repeat(4, 72px);
  gap: 10px;
  align-content: start;
  justify-content: start;
  width: 100%;
}
.contact-card h2 { font-size: 2rem; margin: 2px 0 6px; }
.meta {
  color: var(--muted);
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
  font-size: 0.92rem;
}
.meta span { display: flex; align-items: center; gap: 8px; }
.meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-details .contact-email-btn {
  align-self: stretch;
  width: min(100%, 260px);
}
.contact-copy {
  position: relative;
  justify-self: stretch;
  max-width: 42rem;
  margin-left: 0;
  padding-left: 28px;
}
.contact-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 6px;
  border-radius: 99px;
  background: var(--rule-blocks-y);
}
.contact-copy p:first-child {
  color: var(--purple);
  font-weight: 800;
}
.contact-copy p {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 0.65em;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-copy p:last-child { margin-bottom: 0; }
.mail-pastel {
  display: inline;
  font-weight: 800;
  background: var(--logo-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  box-shadow: none;
}
.mail-pastel:hover,
.mail-pastel:focus-visible {
  text-decoration: none;
  box-shadow: none;
}
.contact-pop {
  display: grid;
  justify-items: center;
  align-content: center;
  flex: none;
  padding: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  color: inherit;
  width: 72px;
  height: 72px;
  overflow: visible;
  background: transparent;
}
.contact-pop-stage {
  position: relative;
  width: 72px;
  height: 72px;
  overflow: visible;
  background: transparent;
}
.contact-pop--round .contact-pop-stage {
  -webkit-mask-image: radial-gradient(circle closest-side, #000 98.5%, transparent);
  mask-image: radial-gradient(circle closest-side, #000 98.5%, transparent);
}
.contact-pop--whatsapp:hover .contact-pop-stage,
.contact-pop--whatsapp:focus-visible .contact-pop-stage {
  filter:
    drop-shadow(0 0 6px rgba(37, 211, 102, 0.85))
    drop-shadow(0 0 14px rgba(37, 211, 102, 0.4));
}
.contact-pop--wechat:hover .contact-pop-stage,
.contact-pop--wechat:focus-visible .contact-pop-stage {
  filter:
    drop-shadow(0 0 6px rgba(62, 212, 234, 0.9))
    drop-shadow(0 0 14px rgba(62, 212, 234, 0.42));
}
.contact-pop-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}
.contact-pop-stage img.is-on { opacity: 1; }
.supplier-form {
  padding: 8px 0 28px;
  scroll-margin-top: 20px;
}
.supplier-heading {
  font-family: Nunito, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, #ff4f9a 0%, #ff8a4c 28%, #f0b429 52%, #3ed4ea 76%, #c9a0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.supplier-lead {
  max-width: 40rem;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.supplier-form-card {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: #fffdf8;
  border: 2px solid rgba(42, 18, 56, 0.08);
  box-shadow: 0 10px 28px rgba(42, 18, 56, 0.06);
}
.supplier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.supplier-form-card label {
  display: grid;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}
.supplier-form-card input,
.supplier-form-card select,
.supplier-form-card textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid rgba(42, 18, 56, 0.12);
  background: #fff;
  box-sizing: border-box;
}
.supplier-form-card input:focus,
.supplier-form-card select:focus,
.supplier-form-card textarea:focus {
  outline: none;
  border-color: #c9a0ff;
  box-shadow: 0 0 0 3px rgba(201, 160, 255, 0.28);
}
.supplier-form-card textarea { resize: vertical; min-height: 120px; }
.supplier-form-card {
  overflow: visible;
}
.btn-send {
  --send-glow: #48e7ff;
  justify-self: center;
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  margin: 14px auto 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  overflow: visible;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.22s ease;
}
.btn-send::after {
  content: "";
  position: absolute;
  inset: 22% 10%;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(72, 231, 255, 0.28) 0%, rgba(72, 231, 255, 0) 72%);
  opacity: 0.55;
  filter: blur(14px);
  pointer-events: none;
  animation: send-glow-halo 2.8s ease-in-out infinite;
}
.btn-send__art {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.btn-send:hover {
  transform: translateY(-2px);
}
.btn-send:hover .btn-send__art {
  transform: scale(1.025);
  filter:
    drop-shadow(0 0 18px rgba(72, 231, 255, 0.72))
    drop-shadow(0 0 34px rgba(72, 204, 204, 0.42));
}
.btn-send:active {
  transform: translateY(1px);
}
.btn-send:active .btn-send__art {
  transform: scale(0.985);
}
.btn-send:focus-visible {
  outline: 3px solid #ffd84a;
  outline-offset: 8px;
}
@keyframes send-glow-halo {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.04);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-send::after { animation: none; }
  .btn-send,
  .btn-send__art { transition: none; }
}
.supplier-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  font-weight: 700;
  color: #6a3d86;
}
.topics {
  padding: 8px 0 72px;
  text-align: center;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
  text-align: center;
}
.topics-grid .mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  background: none;
  display: block;
}
.topics-grid .mark img {
  width: 84px;
  height: 84px;
  display: block;
}
.topics-grid h3 {
  font-family: Nunito, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topics-grid p { color: var(--muted); font-size: 0.88rem; margin: 0; }

.site-footer {
  background: var(--purple-deep) url("../assets/images/doodles-purple.svg?v=5") center / 1100px no-repeat;
  background-blend-mode: screen;
  color: #efe6f6;
  padding: 12px 7vw 6px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr;
  gap: 0;
  align-items: start;
}
.footer-top > div {
  padding: 0 18px;
  border-right: 1px solid rgba(240, 180, 41, 0.28);
}
.footer-company {
  display: flex;
  flex-direction: column;
}
.footer-top > div:first-child { padding-left: 0; }
.footer-brand-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-items: start;
  gap: 8px 10px;
  overflow: visible;
}
.footer-top > div:last-child { border-right: 0; padding-right: 0; }
.site-footer h3 {
  color: var(--yellow);
  font-family: Nunito, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.pastel-pink { color: #ff8ab8; font-weight: 800; }
.pastel-aqua { color: #7ed7ea; font-weight: 800; }
.pastel-gold { color: #ffe38a; font-weight: 800; }
.site-footer h3.pastel-pink { color: #ff8ab8; }
.site-footer h3.pastel-aqua { color: #7ed7ea; }
.site-footer h3.pastel-gold { color: #ffe38a; }
.site-footer p {
  color: rgba(255, 253, 248, 0.78);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}
.site-footer p + p { margin-top: 0.65em; }
.wechat-contact {
  position: relative;
  display: inline-block;
  isolation: isolate;
  width: max-content;
  max-width: 100%;
  margin: 0 32px 0 0;
}
.wechat-contact__qr {
  position: relative;
  z-index: 1;
  display: block;
  width: min(112px, 36vw);
  height: auto;
}
.wechat-contact__qr img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.wechat-contact__qr:hover img,
.wechat-contact__qr:focus-visible img,
.wechat-contact__qr.is-copied img {
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 10px rgba(201, 160, 255, 0.55))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}
.wechat-contact__rebecca {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: -36px;
  height: clamp(78px, 6.8vw, 98px);
  width: calc(clamp(78px, 6.8vw, 98px) * 512 / 736);
  pointer-events: none;
  user-select: none;
}
.wechat-contact__rebecca img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  opacity: 0;
}
.wechat-contact__rebecca img.is-on { opacity: 1; }
@media (max-width: 640px) {
  .wechat-contact__rebecca {
    top: 22px;
    right: -18px;
    height: 86px;
    width: calc(86px * 512 / 736);
  }
}
.footer-scene {
  --fs: 11s;
  position: relative;
  height: 68px;
  width: 100%;
  max-width: 260px;
  margin: 10px 0 0;
  overflow: hidden;
}
.footer-scene img {
  max-width: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}
.fs-pile {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 66px;
  width: auto;
  z-index: 2;
  transform-origin: 62% 92%;
  animation: fs-wave var(--fs) ease-in-out infinite;
}
.fs-runner {
  position: absolute;
  left: 30%;
  bottom: 1px;
  height: 50px;
  width: 36px;
  z-index: 3;
  animation: fs-run var(--fs) ease-in-out infinite;
}
.fs-runner img {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 50px;
  width: auto;
  transform: translateX(-50%);
  opacity: 0;
  animation-duration: var(--fs);
  animation-timing-function: steps(1, end);
  animation-iteration-count: infinite;
}
.fs-walk { animation-name: fs-show-walk; }
.fs-return { animation-name: fs-show-return; }
.fs-away { animation-name: fs-show-away; }
.fs-ok { animation-name: fs-show-ok; }
.fs-van {
  position: absolute;
  right: 4px;
  bottom: 4px;
  height: 40px;
  width: auto;
  z-index: 1;
}
.site-footer .copy {
  display: block;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.78rem;
  margin: 6px 0 0;
}
.site-footer .copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wrap.privacy-copy {
  width: min(42rem, calc(100% - 32px));
  max-width: 42rem;
  margin-left: max(16px, calc(50% - 26rem));
  margin-right: auto;
  padding: 68px 0 80px;
}
.privacy-copy .kicker-bright {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: 0.16em;
  margin: 0 0 14px;
}
.privacy-copy .kicker.kicker-bright::after {
  height: 2px;
  max-width: 6.8em;
  margin: 8px 0 0;
  opacity: 0.35;
}
.privacy-copy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.privacy-copy h2 {
  margin-top: 1.4em;
  font-size: 1.15rem;
}
.privacy-copy h2:nth-of-type(1) { color: var(--logo-pink); }
.privacy-copy h2:nth-of-type(2) { color: var(--logo-gold); }
.privacy-copy h2:nth-of-type(3) { color: var(--logo-lilac); }
.privacy-copy h2:nth-of-type(4) { color: var(--logo-cyan); }
.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
}
.privacy-copy h2 + p {
  margin-bottom: 0.4em;
}
.privacy-copy h2 + p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 1.2em;
  border-radius: 99px;
  background: var(--rule-blocks);
  opacity: 0.35;
}
.privacy-copy .privacy-mail {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: none;
  color: #d5c0ff;
  -webkit-text-fill-color: #d5c0ff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.privacy-copy .privacy-mail:hover,
.privacy-copy .privacy-mail:focus-visible {
  color: var(--logo-lilac);
  -webkit-text-fill-color: var(--logo-lilac);
}
.not-found {
  flex: 1;
  min-height: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 0;
}
.page-404 > main {
  display: flex;
  flex-direction: column;
}
.not-found h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
@keyframes fs-run {
  0%, 10% { left: 30%; }
  36%, 64% { left: 70%; }
  88%, 100% { left: 30%; }
}
@keyframes fs-show-walk {
  0%, 9.5% { opacity: 0; }
  10%, 35.5% { opacity: 1; }
  36%, 100% { opacity: 0; }
}
@keyframes fs-show-away {
  0%, 35.5% { opacity: 0; }
  36%, 47.5% { opacity: 1; }
  48%, 100% { opacity: 0; }
}
@keyframes fs-show-return {
  0%, 63.5% { opacity: 0; }
  64%, 87.5% { opacity: 1; }
  88%, 100% { opacity: 0; }
}
@keyframes fs-show-ok {
  0%, 9.5% { opacity: 1; }
  10%, 47.5% { opacity: 0; }
  48%, 63.5% { opacity: 1; }
  64%, 87.5% { opacity: 0; }
  88%, 100% { opacity: 1; }
}
@keyframes fs-wave {
  0%, 12%, 86%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-3deg); }
  91% { transform: rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .egg-rain-zone { padding-bottom: 28px; }
  .egg-rain { display: none; }
  .header-critters,
  .header-dumpling {
    display: none !important;
    animation: none !important;
  }
  .contact-pop-stage img { transition: none; }
  .contact-pop--whatsapp:hover .contact-pop-stage,
  .contact-pop--whatsapp:focus-visible .contact-pop-stage,
  .contact-pop--wechat:hover .contact-pop-stage,
  .contact-pop--wechat:focus-visible .contact-pop-stage {
    filter: none;
  }
  .fs-runner, .fs-walk, .fs-return, .fs-away, .fs-ok, .fs-pile,
  .hero-etchings .et, .developing-etchings .et, .hero-visual .hero-wink, .portrait-wink { animation: none; }
  .fs-ok { opacity: 1; }
  .fs-walk, .fs-return, .fs-away { opacity: 0; }
  .fs-runner { left: 30%; }
  .hero-visual .hero-wink, .portrait-wink { opacity: 0; }
  .shop-becky-wink,
  .shop-toast-squish {
    transition: none;
    animation: none;
    opacity: 0;
  }
  .enquiry-icon { transition: none; }
  .enquiry-icon:hover,
  .enquiry-icon:focus-visible { transform: none; }
  .wechat-contact__rebecca img:not(.is-on) { display: none; }
}

@media (max-width: 980px) {
  .hero-etchings .et-banana,
  .hero-etchings .et-peach,
  .hero-etchings .et-sparkles { display: none; }
  .developing-etchings .et-orange,
  .developing-etchings .et-croissant,
  .developing-etchings .et-cupcake,
  .developing-etchings .et-banana-b,
  .developing-etchings .et-cloud,
  .developing-etchings .et-daisy,
  .developing-etchings .et-lemon-l,
  .developing-etchings .et-star-l,
  .developing-etchings .et-heart-l { display: none; }
  .hero-etchings .et-s { top: 32%; left: 4%; width: 34px; }
  html, body { overflow-x: hidden; }
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header {
    width: 100%;
    padding: 12px 16px 14px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    gap: 12px;
  }
  .header-critters,
  .header-dumpling { display: none !important; }
  .brand-mark { width: min(186px, 58vw); }
  .hero, .page-inner .split, .cards, .contact-card, .footer-top {
    grid-template-columns: 1fr;
  }
  .enquiry {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "details"
      "cta"
      "apps";
  }
  .enquiry > nav { grid-area: apps; }
  .enquiry > div:not(.enquiry-cta) { grid-area: copy; }
  .enquiry > ul { grid-area: details; }
  .enquiry > .enquiry-cta {
    grid-area: cta;
    justify-self: center;
  }
  .cards { width: calc(100% - 32px); max-width: 100%; }
  .card {
    min-width: 0;
    max-width: 100%;
  }
  .card.green {
    max-width: none;
    grid-column: auto;
  }
  .card-art.icons,
  .card-art.icons.pair {
    gap: 6px;
    min-height: 0;
    max-width: 100%;
  }
  .card-badge {
    --badge-ring: 5px;
    width: clamp(56px, 20vw, 78px);
    height: clamp(56px, 20vw, 78px);
  }
  .card-art.icons img.dot-dumpling,
  .card-art.icons.pair img.dot-dumpling {
    width: 22px;
    height: 22px;
  }
  .hero-band { padding: 8px 0 28px; }
  .hero h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.55rem);
    max-width: none;
    margin-bottom: 12px;
  }
  .hero .lede {
    font-size: 0.98rem;
    margin-bottom: 16px;
  }
  .hero > div:first-child { padding-bottom: 12px; }
  .hero-visual {
    margin-bottom: -28px;
    max-height: min(48vh, 340px);
    border-radius: 18px 18px 0 0;
  }
  .hero-visual .hero-still,
  .hero-visual .hero-wink {
    width: 100%;
    margin: 0;
    max-height: min(48vh, 340px);
    object-fit: cover;
    object-position: 22% 42%;
  }
  .hero-cta .btn { min-height: 48px; }
  .dev-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
    margin-top: 28px;
  }
  .dev-grid article:last-child { grid-column: 1 / -1; }
  .dev-icon { width: 120px; height: 120px; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 6px);
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    background: var(--purple-mid);
    z-index: 5;
  }
  .site-nav a {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  /* Always-on brand underlines in the hamburger menu (distinct per link). */
  .site-nav a:not(.mail-btn)::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 2px;
    border-radius: 99px;
    opacity: 0.75;
  }
  .site-nav a[href="index.html"]::after { background: var(--logo-pink); }
  .site-nav a[href="about.html"]::after { background: var(--logo-gold); }
  .site-nav a[href="contact.html"]::after { background: var(--logo-cyan); }
  .site-nav a:not(.mail-btn).active::after,
  .site-nav a:not(.mail-btn):hover::after {
    opacity: 1;
    height: 3px;
  }
  .site-nav .mail-btn {
    width: 44px;
    height: 44px;
    margin: 6px 0 2px;
  }
  .site-nav.open { display: flex; }
  .nav-pipe { display: none; }
  .page-inner .split {
    padding: 24px 0 12px;
    gap: 16px;
  }
  .split h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    max-width: none;
  }
  .script { font-size: 1.5rem; }
  .about-intro .script {
    justify-self: center;
    text-align: center;
    font-size: 1.75rem;
  }
  .page-inner .split.about-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "lead"
      "rule"
      "script"
      "photo";
    row-gap: 12px;
  }
  .shop-scene {
    width: min(100%, 420px);
    margin-inline: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 26px;
  }
  .shop-scene .shop-still,
  .shop-scene .shop-toast-squish,
  .shop-scene .shop-becky-wink {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .contact-card {
    padding: 16px 16px 18px;
    gap: 16px;
    justify-items: stretch;
    margin: 8px auto 28px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .contact-main {
    width: 100%;
    gap: 16px;
  }
  .contact-pops {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
    max-width: 100%;
  }
  .contact-copy {
    max-width: none;
    margin-left: 0;
    padding-left: 0;
    padding-top: 18px;
  }
  .contact-copy::before {
    top: 0;
    bottom: auto;
    width: min(240px, 72%);
    height: 6px;
    background: var(--rule-blocks);
  }
  .contact-pop {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 88px;
  }
  .contact-pop-stage {
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .contact-pops .contact-pop {
    justify-self: center;
  }
  .contact-card h2 { font-size: 1.7rem; }
  .contact-details .contact-email-btn {
    width: 100%;
    max-width: 320px;
    margin: 10px 0 2px;
  }
  .supplier-grid { grid-template-columns: 1fr; }
  .supplier-form-card { padding: 16px; }
  .topics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
  .topics-grid article:last-child { grid-column: 1 / -1; }
  .site-footer {
    padding: 16px 16px 12px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .site-footer > div,
  .footer-top > div {
    border-right: 0;
    padding: 0 0 16px;
  }
  .footer-company { min-height: 0; }
  .footer-brand-col {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 8px;
  }
  .wechat-contact { margin: 0 28px 0 0; }
  .footer-scene { height: 64px; margin-top: 10px; }
  .fs-pile { height: 62px; }
  .fs-runner, .fs-runner img { height: 48px; }
  .fs-van { height: 38px; right: 4px; }
  .enquiry {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "details"
      "cta"
      "apps";
    padding: 20px 16px 18px;
    gap: 14px;
    margin: 16px auto 36px;
  }
  .enquiry > nav { grid-area: apps; }
  .enquiry > div:not(.enquiry-cta) { grid-area: copy; }
  .enquiry > ul { grid-area: details; }
  .enquiry > .enquiry-cta {
    grid-area: cta;
    width: min(100%, 168px);
    justify-self: center;
    padding-top: 36px;
  }
  .enquiry-mark {
    width: 58px;
  }
  .enquiry-apps {
    justify-content: center;
    gap: 16px;
  }
  .enquiry-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 720px) {
  .card.green {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px 24px;
  }
  .card.green .card-art.brands {
    display: contents;
  }
  .card.green .brand-strip {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
  .card.green h3 {
    order: 2;
  }
  .card.green p {
    order: 3;
  }
  .card.green h3,
  .card.green p {
    grid-column: auto;
    grid-row: auto;
  }
  .card.green .card-rule-y {
    order: 4;
    grid-column: auto;
    grid-row: auto;
    width: min(240px, 72%);
    height: 6px;
    min-height: 0;
    align-self: center;
    margin: 14px 0 12px;
    background: var(--rule-blocks);
  }
  .card.green .auth-seal,
  .card-art.brands .auth-seal {
    order: 5;
    grid-column: auto;
    grid-row: auto;
    width: 152px;
    height: 152px;
    max-width: 152px;
    max-height: 152px;
    flex: none;
    justify-self: auto;
  }
  .card.green .card-rule-y--brands {
    order: 6;
    width: min(240px, 72%);
    height: 6px;
    min-height: 0;
    margin: 12px 0 10px;
    background: var(--rule-blocks);
  }
  .brand-float {
    order: 7;
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 240px);
    max-width: 240px;
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .collection-teaser {
    min-height: 350px;
    border-radius: 20px;
  }
  .collection-teaser__copy {
    width: auto;
    padding: 24px 22px 0;
  }
  .collection-teaser__eyebrow { margin-bottom: 8px; }
  .collection-teaser__hint {
    max-width: 28ch;
    margin-top: 10px;
  }
  .collection-teaser__stage { top: 112px; }
  .collection-teaser__glow { width: 100%; }
  .collection-teaser__card--bread {
    right: 34%;
    bottom: -19%;
    width: 64%;
  }
  .collection-teaser__card--eggs {
    right: 0;
    bottom: 6%;
    width: 72%;
  }
  .collection-teaser__goldie {
    right: 2%;
    bottom: 12%;
    width: 30%;
  }
  .hero-etchings .et { width: 36px; opacity: 0.32; }
  .hero-etchings .et-banana,
  .hero-etchings .et-peach,
  .hero-etchings .et-sparkles,
  .hero-etchings .et-grapes,
  .hero-etchings .et-blue { display: none; }
  .developing-etchings .et { width: 38px; opacity: 0.38; }
  .developing-etchings .et-peach,
  .developing-etchings .et-orange,
  .developing-etchings .et-blue,
  .developing-etchings .et-star-b,
  .developing-etchings .et-banana-b { display: none; }
  .contact-pops {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }
  .contact-pop {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: none;
  }
  .contact-pop-stage {
    width: 100%;
    height: 100%;
  }
  .contact-details .contact-email-btn {
    max-width: none;
  }
  .cards { gap: 14px; padding-bottom: 32px; }
  .card { padding: 22px 18px 24px; }
  .card-badge {
    width: 78px;
    height: 78px;
  }
  .footer-brand-col {
    grid-template-columns: 1fr;
  }
  .wechat-contact { margin: 8px 36px 4px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .collection-teaser__glow,
  .collection-teaser__card--bread,
  .collection-teaser__card--eggs,
  .collection-teaser__goldie,
  .collection-teaser__spark {
    animation: none;
    will-change: auto;
  }
  .collection-teaser__card--bread {
    opacity: 0.34;
    transform: translate3d(-28%, 7%, 0) rotate(-5deg) scale(0.82);
  }
  .collection-teaser:hover .collection-teaser__goldie,
  .collection-teaser:focus-within .collection-teaser__goldie {
    animation: none;
  }
  .collection-teaser__card--eggs {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
  .collection-teaser__goldie {
    opacity: 1;
    transform: translate3d(-4%, -14%, 0) rotate(-6deg) scale(1);
  }
  .collection-teaser__spark {
    opacity: 0.8;
    transform: scale(1) rotate(22deg);
  }
}
