/* ─────────────────────────────────────────────
   AURIS ÉLAN — Y2K Kawaii rebuild
   Bright multicolor · soft shadows · sparkles
   ───────────────────────────────────────────── */

:root {
  --cream:       #FFF6E9;
  --cream-deep:  #FFEED7;
  --peach:       #FFD7B8;
  --peach-soft:  #FFE6D2;
  --pink:        #FF4FA3;
  --pink-hot:    #FF2E92;
  --pink-soft:   #FFCFE5;
  --pink-bg:     #FFE0EE;
  --green:       #45C16E;
  --green-soft:  #C8F0D5;
  --green-leaf:  #2EA85B;
  --yellow:      #FFD83D;
  --yellow-soft: #FFEFA8;
  --orange:      #FF7A2C;
  --orange-deep: #E55F12;
  --lilac:       #D7BFFF;
  --sky:         #BBE0FF;
  --ink:         #1B1B26;
  --ink-soft:    #5A4E5F;
  --ink-mid:     #3A323F;

  --display: "Unbounded", "Boldonse", "Cooper Black", "Archivo Black", system-ui, sans-serif;
  --body:    "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --hand:    "Caveat", "Gochi Hand", "Patrick Hand", cursive;
  --jp:      "Zen Kaku Gothic New", "Klee One", serif;
  --jp-hand: "Yuji Mai", "Klee One", "Caveat", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, var(--pink-soft) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 15%, var(--yellow-soft) 0%, transparent 60%),
    var(--cream);
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Cursor sparkle ─── */
.cursor-shimmer {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 79, 163, 0.18) 0%, rgba(255, 122, 44, 0.06) 35%, transparent 70%);
  mix-blend-mode: multiply;
  transition: opacity 400ms ease;
  will-change: left, top;
}

/* ─── Floating decorative blobs ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 14px 26px;
  background: rgba(255, 246, 233, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--ink), 0 14px 30px rgba(27, 27, 38, 0.12);
  transition: padding 300ms ease, box-shadow 300ms ease;
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}
.nav-mark .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pink);
  box-shadow: inset -2px -2px 0 rgba(0,0,0,0.18);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 200ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}
.nav-links a:hover { color: var(--pink-hot); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav-ig:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); background: var(--orange); }
.nav-ig:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--ink); }
.nav-ig svg { display: block; }

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  color: var(--cream);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--pink-hot);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--pink-hot);
  background: var(--pink-hot);
}
.nav-contact-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--pink-hot); }
.nav-contact-btn .arr {
  display: inline-block;
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { padding: 10px 12px 10px 20px; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero .blob-1 { top: -80px; left: -60px; width: 380px; height: 380px; background: var(--pink-soft); }
.hero .blob-2 { top: 30%;  right: -120px; width: 320px; height: 320px; background: var(--green-soft); }
.hero .blob-3 { bottom: -100px; left: 30%; width: 420px; height: 420px; background: var(--yellow-soft); }

.coming-soon-banner {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 30px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--pink-hot);
  margin-bottom: 28px;
  transform: rotate(-1.5deg);
  opacity: 0;
  animation: pop-in 700ms cubic-bezier(.2,.9,.3,1.2) 300ms forwards;
}
.coming-soon-banner::before,
.coming-soon-banner::after {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 16px var(--yellow);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.coming-soon-banner::after { background: var(--pink); box-shadow: 0 0 16px var(--pink); animation-delay: 0.9s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

.hero-logo-wrap {
  position: relative;
  z-index: 3;
  width: min(440px, 78vw);
  margin: 8px auto 20px;
  display: inline-block;
  animation: logo-wiggle 6s ease-in-out 2s infinite;
}
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 0 rgba(255, 79, 163, 0.18)) drop-shadow(0 20px 40px rgba(255, 79, 163, 0.25));
  opacity: 0;
  animation: pop-in 900ms cubic-bezier(.2,.9,.3,1.2) 500ms forwards;
}
@keyframes logo-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-1.2deg); }
  75%      { transform: rotate(1.2deg); }
}
@keyframes pop-in {
  0%   { opacity: 0; transform: translateY(20px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-headline {
  position: relative;
  z-index: 3;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
  opacity: 0;
  animation: pop-in 700ms cubic-bezier(.2,.9,.3,1.2) 800ms forwards;
}
.hero-headline .hl-hand {
  display: inline-block;
  font-family: var(--hand);
  font-weight: 400;
  color: var(--pink-hot);
  font-size: 1.15em;
  line-height: 0.9;
  transform: rotate(-3deg);
  margin: 0 0.08em;
  letter-spacing: 0.01em;
}
.hero-headline .hl-underline {
  position: relative;
  display: inline-block;
}
.hero-headline .hl-underline::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: -8%;
  height: 0.18em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M2 5 Q 25 1, 50 5 T 98 5' fill='none' stroke='%23FF7A2C' stroke-width='3' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

.hero-sub {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 48ch;
  line-height: 1.55;
  font-weight: 400;
  opacity: 0;
  animation: pop-in 700ms cubic-bezier(.2,.9,.3,1.2) 1000ms forwards;
}

.hero-cta-row {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: pop-in 700ms cubic-bezier(.2,.9,.3,1.2) 1150ms forwards;
}

/* Chunky bubble buttons */
.btn-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--pink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--ink);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 var(--ink);
}
.btn-bubble:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--ink); }
.btn-bubble.btn-yellow { background: var(--yellow); }
.btn-bubble.btn-green { background: var(--green); color: var(--cream); }
.btn-bubble.btn-cream { background: var(--cream); }

.btn-bubble .arr {
  display: inline-block;
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 5l7 7-7 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* Scattered hero sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  color: var(--pink);
  filter: drop-shadow(0 0 8px rgba(255, 79, 163, 0.6));
  animation: spin-slow 8s linear infinite, fade-pulse 2.2s ease-in-out infinite;
}
.sparkle.sp-yellow { color: var(--yellow); filter: drop-shadow(0 0 8px rgba(255, 216, 61, 0.7)); }
.sparkle.sp-green  { color: var(--green); filter: drop-shadow(0 0 8px rgba(69, 193, 110, 0.6)); }
.sparkle.sp-orange { color: var(--orange); filter: drop-shadow(0 0 8px rgba(255, 122, 44, 0.6)); }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes fade-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.hero-sparkle-1 { top: 18%;  left: 12%; width: 32px; height: 32px; animation-delay: 0s, 0s; }
.hero-sparkle-2 { top: 26%;  right: 14%; width: 24px; height: 24px; animation-delay: -3s, -0.6s; }
.hero-sparkle-3 { bottom: 22%; left: 18%; width: 28px; height: 28px; animation-delay: -5s, -1.2s; }
.hero-sparkle-4 { bottom: 30%; right: 10%; width: 36px; height: 36px; animation-delay: -2s, -0.3s; }

/* ─── Marquee strip ─── */
.marquee {
  position: relative;
  z-index: 4;
  margin-top: 32px;
  padding: 16px 0;
  background: var(--ink);
  color: var(--cream);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.5deg);
  margin-left: -3%;
  margin-right: -3%;
  width: 106%;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee-track .star {
  width: 18px; height: 18px;
  color: var(--pink);
  filter: drop-shadow(0 0 4px var(--pink));
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section base ─── */
section.block {
  position: relative;
  z-index: 3;
  padding: 120px 28px;
  max-width: 1320px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--pink-soft);
  color: var(--pink-hot);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 3px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.eyebrow.eb-yellow { background: var(--yellow-soft); color: var(--orange-deep); }
.eyebrow.eb-green  { background: var(--green-soft); color: var(--green-leaf); }

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 18px;
  max-width: 18ch;
  text-wrap: balance;
}
.section-title em,
.section-title .hl-hand {
  font-style: normal;
  font-family: var(--hand);
  font-weight: 400;
  color: var(--pink-hot);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-3deg);
}
.section-title .hl-green { color: var(--green-leaf); }
.section-title .hl-orange { color: var(--orange); }

.section-lede {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 56ch;
}

/* ─── IMAGINE — kanji moment ─── */
.imagine {
  position: relative;
  padding: 140px 28px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.imagine .bg-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 55% at 50% 50%, var(--pink-bg) 0%, var(--cream) 80%);
}
.imagine .bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 28%, var(--yellow-soft) 0, var(--yellow-soft) 90px, transparent 100px),
    radial-gradient(circle at 88% 22%, var(--green-soft) 0, var(--green-soft) 110px, transparent 120px),
    radial-gradient(circle at 18% 78%, var(--pink-soft) 0, var(--pink-soft) 130px, transparent 140px),
    radial-gradient(circle at 82% 80%, var(--lilac) 0, var(--lilac) 80px, transparent 100px);
  filter: blur(40px);
  opacity: 0.7;
}
.imagine-kanji {
  font-family: var(--jp);
  font-weight: 700;
  font-size: clamp(140px, 22vw, 340px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--pink-hot) 0%, var(--orange) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(255, 79, 163, 0.18));
  position: relative;
  display: inline-block;
}
.imagine-kanji::before,
.imagine-kanji::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L13.5 9 L20 11 L13.5 13 L12 22 L10.5 13 L4 11 L10.5 9 Z' fill='%23FFD83D'/></svg>") center/contain no-repeat;
  animation: spin-slow 8s linear infinite;
}
.imagine-kanji::before { top: -20px; left: -40px; }
.imagine-kanji::after  { bottom: 0; right: -50px; animation-direction: reverse; animation-duration: 10s; }
.imagine-en {
  margin-top: 14px;
  font-family: var(--hand);
  font-size: clamp(48px, 7vw, 86px);
  color: var(--ink);
  font-weight: 400;
  transform: rotate(-2deg);
  display: inline-block;
}
.imagine-en .dot { color: var(--orange); }
.imagine-sub {
  margin: 28px auto 0;
  max-width: 44ch;
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.55;
}

/* ─── EDITIONS grid ─── */
.editions {
  background: var(--cream-deep);
  max-width: none;
  margin: 0;
  padding: 120px 6vw;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.editions-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  max-width: 1320px;
  margin-inline: auto;
}
@media (max-width: 800px) {
  .editions-header { grid-template-columns: 1fr; gap: 16px; }
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.edition {
  margin: 0;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--ink);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.edition:nth-child(2n) { transform: rotate(-0.8deg); }
.edition:nth-child(3n) { transform: rotate(0.8deg); }
.edition:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 12px 0 var(--ink);
}
.edition-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--peach-soft);
}
.edition-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.edition:hover .edition-frame img { transform: scale(1.05); }
.ed-chip {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 2px 0 var(--ink);
  transform: rotate(-4deg);
}
.ed-chip.chip-pink   { background: var(--pink); color: var(--cream); }
.ed-chip.chip-green  { background: var(--green); color: var(--cream); }
.ed-chip.chip-orange { background: var(--orange); color: var(--cream); }
.ed-heart {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 var(--ink);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}
.ed-heart:hover { transform: scale(1.1); background: var(--pink-soft); }
.ed-heart svg { width: 18px; height: 18px; color: var(--pink-hot); }
.edition figcaption {
  padding: 20px 22px 24px;
}
.ed-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.ed-name .jp {
  font-family: var(--jp-hand);
  color: var(--pink-hot);
  font-size: 0.7em;
  font-weight: 400;
}
.ed-tag {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}
.ed-blurb {
  margin-top: 12px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
}

/* ─── BESPOKE 3-step ─── */
.bespoke {
  position: relative;
  padding: 140px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.bespoke-photo-bg {
  position: absolute;
  inset: 80px 28px;
  z-index: -1;
  border-radius: 32px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 0 var(--ink);
}
.bespoke-photo-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(1.05);
}
.bespoke-photo-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 246, 233, 0.85) 0%, rgba(255, 207, 229, 0.75) 100%);
}
.bespoke-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bespoke-header .section-title { margin: 0 auto; }
.bespoke-header .section-lede { margin: 0 auto; }

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .step-cards { grid-template-columns: 1fr; }
}
.step-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 26px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 0 var(--ink);
  position: relative;
  transition: transform 200ms ease;
}
.step-card:hover { transform: translateY(-4px); }
.step-card.s1 { background: var(--pink-soft); }
.step-card.s2 { background: var(--yellow-soft); transform: rotate(0.5deg); }
.step-card.s3 { background: var(--green-soft); }
.step-card.s2:hover { transform: translateY(-4px) rotate(0.5deg); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}
.step-card.s1 .step-num { background: var(--pink); color: var(--cream); }
.step-card.s2 .step-num { background: var(--yellow); }
.step-card.s3 .step-num { background: var(--green); color: var(--cream); }

.step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}
.step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mid);
}
.step-card .arrow-doodle {
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 60px; height: 30px;
  color: var(--orange);
  pointer-events: none;
}
@media (max-width: 880px) {
  .step-card .arrow-doodle { display: none; }
}

/* ─── MAKER ─── */
.maker {
  position: relative;
  padding: 140px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.maker-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .maker-inner { grid-template-columns: 1fr; gap: 56px; }
}
.maker-portrait-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.maker-portrait {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 10px 0 var(--ink);
  transform: rotate(-2deg);
  background: var(--peach-soft);
  z-index: 2;
}
.maker-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.maker-portrait-bg {
  position: absolute;
  inset: -12px -12px 20px 20px;
  border-radius: 32px;
  background: var(--yellow);
  z-index: 1;
}
.maker-stamp {
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 3;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--pink-hot);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  transform: rotate(12deg);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%      { transform: rotate(12deg) translateY(-6px); }
}
.maker-doodle {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  color: var(--orange);
}
.maker-doodle.d-arrow {
  bottom: -30px; left: -40px;
  width: 120px; height: 60px;
  transform: rotate(-10deg);
}

.maker-copy h2.section-title em { color: var(--green-leaf); }
.maker-quote {
  margin-top: 24px;
  font-family: var(--hand);
  font-size: 28px;
  line-height: 1.3;
  color: var(--pink-hot);
  padding-left: 20px;
  border-left: 4px solid var(--pink-hot);
  max-width: 36ch;
  transform: rotate(-0.5deg);
}
.maker-copy p { font-size: 16px; line-height: 1.7; color: var(--ink-mid); margin-top: 16px; }
.maker-copy p strong { color: var(--ink); }
.maker-copy a.inline {
  color: var(--pink-hot);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}

.maker-signature {
  margin-top: 32px;
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}
.maker-signature .name {
  font-family: var(--hand);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--pink-hot);
  transform: rotate(-3deg);
}
.maker-signature .meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 600;
}

.maker-tags {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.maker-tag {
  padding: 8px 14px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  transition: transform 200ms ease, background 200ms ease;
}
.maker-tag:hover { transform: translateY(-2px); }
.maker-tag.tag-pink   { background: var(--pink-soft); }
.maker-tag.tag-green  { background: var(--green-soft); }
.maker-tag.tag-yellow { background: var(--yellow-soft); }

/* ─── REACH ─── */
.reach {
  position: relative;
  padding: 140px 28px;
  background: var(--ink);
  color: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  max-width: none;
  margin: 0;
}
.reach-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .reach-inner { grid-template-columns: 1fr; gap: 60px; }
}
.reach .section-title { color: var(--cream); }
.reach .section-title em { color: var(--yellow); }
.reach .section-lede { color: rgba(255, 246, 233, 0.7); }
.reach .eyebrow { background: var(--yellow); color: var(--ink); border-color: var(--cream); box-shadow: 0 3px 0 var(--cream); }

.reach-map {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.reach-map svg {
  width: 100%; height: 100%; overflow: visible;
}
.reach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.reach-stat {
  background: rgba(255, 246, 233, 0.06);
  border: 1.5px solid rgba(255, 246, 233, 0.18);
  border-radius: 18px;
  padding: 18px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 246, 233, 0.7);
}

/* ─── FOOTER ─── */
footer.foot {
  background: var(--cream-deep);
  padding: 100px 28px 40px;
  position: relative;
  z-index: 3;
}
.foot-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 2px dashed var(--ink);
}
@media (max-width: 880px) {
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
}
.foot-brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.foot-brand-mark .dot { color: var(--pink); }
.foot-tag {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 40ch;
}

.signup-form {
  display: flex;
  align-items: center;
  margin-top: 26px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 4px 4px 22px;
  max-width: 420px;
  box-shadow: 0 4px 0 var(--ink);
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
}
.signup-form input::placeholder { color: var(--ink-soft); opacity: 0.55; }
.signup-form button {
  background: var(--pink-hot);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.signup-form button:hover { background: var(--ink); transform: translateX(3px); }

.foot-col h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--pink-hot);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease, gap 200ms ease;
}
.foot-col a:hover { color: var(--pink-hot); gap: 12px; }
.foot-col a svg { flex: 0 0 auto; color: var(--pink-hot); }

.foot-ig {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 12px 22px;
  background: var(--pink-hot);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.foot-ig:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); background: var(--orange); }
.foot-ig svg { width: 22px; height: 22px; }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 500;
}
.foot-bottom .legal { display: flex; gap: 22px; }
.foot-bottom a { color: var(--ink-mid); text-decoration: none; }
.foot-bottom a:hover { color: var(--pink-hot); }
@media (max-width: 720px) {
  .foot-bottom { flex-direction: column; gap: 14px; align-items: start; }
}

/* ─── Ambient audio toggle ─── */
.ambient-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.ambient-toggle:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); background: var(--yellow-soft); }
.ambient-toggle .ambient-icon {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.ambient-toggle .bar {
  width: 2.5px;
  background: var(--pink-hot);
  height: 4px;
  border-radius: 2px;
  transition: height 200ms ease;
}
.ambient-toggle.playing .bar {
  animation: bar-bounce 1.1s ease-in-out infinite;
}
.ambient-toggle.playing .bar:nth-child(2) { animation-delay: 0.15s; }
.ambient-toggle.playing .bar:nth-child(3) { animation-delay: 0.3s; }
.ambient-toggle.playing .bar:nth-child(4) { animation-delay: 0.45s; }
@keyframes bar-bounce {
  0%, 100% { height: 4px; }
  50%      { height: 13px; }
}
.ambient-label .kanji {
  font-family: var(--jp);
  font-weight: 500;
}

/* ─── Reveal-on-scroll defaults set inline; just provide transition class ─── */
.reveal { will-change: opacity, transform; }

/* ─────────────────────────────────────────────
   LEAVES & GREENERY — organic decoration
   ───────────────────────────────────────────── */
.leaf {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  transform-origin: bottom center;
  transform: rotate(var(--rot, 0deg));
  animation: leaf-sway 7s ease-in-out infinite;
  filter: drop-shadow(0 6px 0 rgba(46, 168, 91, 0.12));
  color: #45C16E;
}
.leaf.leaf-pink   { color: #FF8FB8; filter: drop-shadow(0 6px 0 rgba(255, 79, 163, 0.18)); }
.leaf.leaf-pink-hot { color: #FF4FA3; filter: drop-shadow(0 6px 0 rgba(255, 79, 163, 0.25)); }
.leaf.leaf-yellow { color: #F5BE2E; filter: drop-shadow(0 6px 0 rgba(245, 190, 46, 0.18)); }
.leaf.leaf-orange { color: #FF7A2C; filter: drop-shadow(0 6px 0 rgba(255, 122, 44, 0.18)); }
.leaf.leaf-lilac  { color: #C7A8FF; filter: drop-shadow(0 6px 0 rgba(199, 168, 255, 0.18)); }
.leaf.leaf-deep   { color: #2EA85B; }
.leaf.leaf-jade   { color: #11904E; }
.leaf.leaf-lime   { color: #8BE36B; }
.leaf.leaf-dark   { color: rgba(255, 246, 233, 0.22); filter: none; }
.leaf.leaf-soft   { color: #C8F0D5; filter: none; }
.leaf.leaf-cream  { color: #FFE9A3; filter: none; }

/* Bloom spinners */
.leaf.spin       { animation: leaf-spin 18s linear infinite, leaf-sway 7s ease-in-out infinite; }
@keyframes leaf-spin {
  to { transform: rotate(360deg); }
}

.leaf.leaf-slow   { animation-duration: 11s; }
.leaf.leaf-fast   { animation-duration: 5s; }
.leaf.leaf-rev    { animation-direction: reverse; }

@keyframes leaf-sway {
  0%, 100% { transform: rotate(var(--rot, 0deg)); }
  50%      { transform: rotate(calc(var(--rot, 0deg) + var(--sway, 5deg))); }
}

/* On very narrow screens, hide leaves marked .leaf--hide-sm */
@media (max-width: 720px) {
  .leaf--hide-sm { display: none; }
}

/* Sections that need their own stacking context so z-index:-1 leaves stay contained */
.hero, .imagine, .editions, .bespoke, .maker, .reach, .foot { isolation: isolate; }

@media (max-width: 720px) {
  section.block, .imagine, .bespoke, .maker, .reach, .editions { padding-left: 20px; padding-right: 20px; }
  .nav-contact-btn span { display: none; }
  .nav-contact-btn { padding: 11px 14px; }
  .maker-stamp { width: 90px; height: 90px; font-size: 11px; top: -10px; right: 0; }
}
