/* ============================================================
   MADDISON ✳ — warm cream / blush pink / mint / charcoal
   Zodiak (display serif) + General Sans (body)
   ============================================================ */

:root {
  --cream: #F7F1E4;
  --cream-deep: #EFE5CF;
  --ink: #221D18;
  --ink-70: rgba(34, 29, 24, 0.7);
  --ink-40: rgba(34, 29, 24, 0.4);
  --pink: #F1A8BC;
  --pink-deep: #E4879F;
  --blush: #F8DCE2;
  --mint: #BFE2CE;
  --mint-deep: #8FC7A9;

  --serif: "Zodiak", Georgia, "Times New Roman", serif;
  --sans: "General Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--pink); color: var(--ink); }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 2000;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: 999px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--pink-deep);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============ preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--cream);
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__flower { width: 64px; height: 64px; color: var(--pink); }
.preloader__word {
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem; margin-top: 0.75rem; color: var(--ink-70);
}
body.loaded .preloader { display: none; }

/* ============ cursor ============ */
.cursor { position: fixed; top: 0; left: 0; z-index: 1400; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) {
  body.js .cursor { display: block; }
}
.cursor__dot {
  position: absolute; top: -5px; left: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.cursor__label {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--cream);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  white-space: nowrap;
  transform: scale(0); transform-origin: top left;
  transition: transform 0.25s var(--ease-bounce);
}
.cursor--label .cursor__label { transform: scale(1); }
.cursor--label .cursor__dot { transform: scale(0.6); }
.cursor--nope .cursor__label { background: var(--pink-deep); }
.cursor-sparkle {
  position: fixed; z-index: 1390; pointer-events: none;
  width: 18px; height: 18px; color: var(--pink);
}

/* ============ header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(34,29,24,0.07);
  padding-top: 0.6rem; padding-bottom: 0.6rem;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--serif); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.wordmark__flower { width: 20px; height: 20px; color: var(--pink); will-change: transform; }
.wordmark__flower--blossom {
  width: 24px; height: 26px;
  color: var(--ink);
  transform-origin: 50% 60%;
  transition: rotate 0.5s var(--ease-bounce);
}
.wordmark:hover .wordmark__flower--blossom { rotate: -10deg; }
body.theme-dark .wordmark__flower--blossom { color: var(--cream); }
body.theme-dark.menu-open .wordmark__flower--blossom { color: var(--ink); }
.site-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); font-weight: 500; font-size: 0.95rem; }
.site-nav a { position: relative; padding: 0.2rem 0; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--pink-deep);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) { .site-nav { display: none; } }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; white-space: nowrap;
}
.btn--pill {
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--pill:hover { background: var(--pink-deep); color: var(--ink); }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--big { padding: 1.2rem 2.4rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--pink); color: var(--ink); }
.btn__arrow { display: inline-block; transition: transform 0.3s var(--ease-bounce); }
.btn:hover .btn__arrow { transform: translateX(4px) rotate(0deg); }
a[href="#work"]:hover .btn__arrow { transform: translateY(4px); }

.link-underline {
  font-weight: 600;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease-out);
  padding-bottom: 3px;
}
.link-underline:hover { background-size: 30% 2px; }
.link-underline--light {
  color: var(--cream);
  background-image: linear-gradient(var(--pink), var(--pink));
}

/* ============ hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5.5rem var(--pad) 4rem;
  overflow: clip;
}
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  will-change: transform;
}
.blob--pink { width: 46vw; height: 46vw; background: var(--blush); top: -8%; right: -10%; }
.blob--mint { width: 38vw; height: 38vw; background: var(--mint); bottom: -12%; left: -8%; opacity: 0.45; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 500; font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--ink-70);
  margin-bottom: clamp(1rem, 3vh, 2rem);
}
.inline-flower { width: 18px; height: 18px; color: var(--pink); flex: none; }

.hero__title { font-weight: normal; position: relative; z-index: 2; }
.hero__hi {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  color: var(--pink-deep);
  margin-bottom: 0.2em;
}
.hero__line {
  display: block;
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.75rem, 13vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.h-letter {
  display: inline-block;
  will-change: transform;
  transition: color 0.25s;
}
.h-space { display: inline-block; width: 0.25em; }
.hero__flower {
  width: clamp(2.2rem, 5.5vw, 5rem); height: clamp(2.2rem, 5.5vw, 5rem);
  color: var(--pink);
  margin-left: 0.08em;
  vertical-align: baseline;
  will-change: transform;
}
.hero__roll {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 4vw, 3.2rem);
  margin-top: 0.35em;
  color: var(--ink-70);
}
.roll-word {
  display: inline-block; position: relative;
  color: var(--ink);
  min-width: 4.5ch; text-align: center;
  clip-path: inset(0 -0.15em);
}
#rollWord { display: inline-block; position: relative; }
#rollWord::after {
  content: ""; position: absolute; left: -0.08em; right: -0.08em; bottom: 0.06em;
  height: 0.28em; background: var(--mint);
  z-index: -1; border-radius: 3px;
}

.hero__sub {
  margin-top: clamp(1.2rem, 3vh, 2.2rem);
  max-width: 34rem;
  color: var(--ink-70);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.hero__ctas {
  margin-top: clamp(1.4rem, 3.5vh, 2.5rem);
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
}
.hero__scrollhint {
  position: absolute; bottom: 1.4rem; left: var(--pad);
  font-size: 0.85rem; color: var(--ink-40); font-weight: 500;
}

/* stickers */
.sticker {
  position: absolute; z-index: 3;
  font-weight: 600; font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  rotate: var(--r, 0deg);
  box-shadow: 0 6px 20px rgba(34,29,24,0.12);
  user-select: none;
  touch-action: none;
}
.sticker--drag { cursor: grab; }
.sticker--drag:active { cursor: grabbing; }
.sticker--mint { background: var(--mint); }
.sticker--pink { background: var(--pink); }
.sticker--ghost { background: var(--cream); border: 1.5px dashed var(--ink-40); box-shadow: none; }
@media (max-width: 900px) {
  .sticker--ghost { display: none; }
  .sticker { font-size: 0.75rem; padding: 0.45rem 0.85rem; }
  .sticker--mint { top: 7.5rem !important; right: 4% !important; }
  .sticker--pink { top: 53% !important; right: 4% !important; }
}

/* chaos button */
.chaos-btn {
  position: absolute; bottom: 1.6rem; right: var(--pad); z-index: 4;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--blush);
  border: 1.5px solid var(--ink);
  font-weight: 600; font-size: 0.72rem; line-height: 1.25;
  text-transform: lowercase;
  transition: transform 0.3s var(--ease-bounce), background 0.3s;
  animation: chaos-wobble 5s ease-in-out infinite;
}
.chaos-btn:hover { background: var(--pink); transform: scale(1.12) rotate(-6deg); }
@keyframes chaos-wobble {
  0%, 100% { rotate: -3deg; } 50% { rotate: 4deg; }
}

/* ============ marquees ============ */
.marquee {
  overflow: clip;
  padding: 0.9rem 0;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee--pink { background: var(--pink); rotate: -1.5deg; scale: 1.03 1; margin: 2rem 0; }
.marquee--mint { background: var(--mint); rotate: 1.2deg; scale: 1.03 1; margin: 3rem 0; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span { display: inline-block; padding-right: 0.5ch; }
.marquee i { font-style: normal; color: var(--cream); padding: 0 0.4ch; }
.marquee--mint i { color: var(--ink); opacity: 0.35; }

/* ============ manifesto ============ */
.manifesto {
  position: relative;
  padding: clamp(5rem, 14vh, 10rem) var(--pad);
  max-width: 72rem; margin: 0 auto;
}
.manifesto__big {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 4.6vw, 3.9rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 20em;
}
.manifesto__big em { font-style: italic; color: var(--pink-deep); }
.manifesto__big .word { opacity: 0.14; }
.aside {
  position: absolute;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-40);
  font-family: var(--sans);
}
.aside--one { top: 24%; right: var(--pad); rotate: 3deg; }
.aside--two { bottom: 32%; left: var(--pad); rotate: -2.5deg; }
@media (max-width: 900px) { .aside { display: none; } }

.manifesto__stats {
  list-style: none;
  display: flex; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap;
  margin-top: clamp(3rem, 8vh, 5rem);
}
.stat strong {
  display: block;
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}
.stat span { color: var(--ink-70); font-size: 0.95rem; }
.stat:nth-child(1) strong { color: var(--ink); }
.stat:nth-child(2) strong { color: var(--pink-deep); }
.stat:nth-child(3) strong { color: var(--mint-deep); }

/* ============ section titles ============ */
.section-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.9; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-title em {
  font-style: italic; font-weight: 400;
  text-transform: lowercase;
  color: var(--pink-deep);
  letter-spacing: -0.01em;
}

/* ============ work ============ */
.work { position: relative; }
.work__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  overflow: clip;
}
.work__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: 0 var(--pad);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.work__note { color: var(--ink-70); font-size: 0.95rem; max-width: 18rem; text-align: right; }
.work__note em { font-style: italic; font-family: var(--serif); }
@media (max-width: 760px) { .work__note { text-align: left; } }

.work__viewport { overflow: visible; }
.work__track {
  display: flex; gap: clamp(1.2rem, 2.5vw, 2.5rem);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}

.project {
  display: block;
  width: clamp(280px, 62vw, 640px);
  flex: none;
}
.project__cover {
  position: relative;
  aspect-ratio: 4 / 2.9;
  border-radius: var(--radius);
  overflow: clip;
  display: grid; place-items: center;
  box-shadow: 0 18px 50px rgba(34,29,24,0.13);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  will-change: transform;
}
.project:hover .project__cover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 30px 70px rgba(34,29,24,0.2);
}
.cover__word {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  position: relative; z-index: 2;
  transition: transform 0.6s var(--ease-out);
}
.project:hover .cover__word { transform: scale(1.05); }
.cover__word--serif { font-weight: 700; text-align: center; }
.cover__word--serif em { font-style: italic; font-weight: 400; }
.cover__word--mono {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700; letter-spacing: 0.12em;
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-align: center; line-height: 1.2;
}

.cover--fractal { background: #FFFDFA; color: #FF4F3D; }
.cover--fractal .cover__word { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
.cover__dots {
  position: absolute; top: 1.2rem; right: 1.4rem;
  color: #FF4F3D; font-size: 1rem; letter-spacing: 0.5em; z-index: 2;
}
.cover--barton { background: #0E0D0D; color: #EDEAE4; }
.cover--barton .cover__word { letter-spacing: 0.02em; font-size: clamp(2.2rem, 6vw, 4.6rem); }
.cover--barton i { font-style: normal; color: #C6FF4A; }
.cover--evolve { background: #14121C; color: #F4F1EA; }
.cover__gradient {
  position: absolute; inset: -20%;
  background: radial-gradient(closest-side, rgba(240,110,170,0.75), transparent 65%) 20% 30% / 80% 80% no-repeat,
              radial-gradient(closest-side, rgba(110,90,240,0.65), transparent 65%) 80% 75% / 90% 90% no-repeat;
  filter: blur(30px);
  transition: transform 0.8s var(--ease-out);
}
.project:hover .cover__gradient { transform: rotate(12deg) scale(1.1); }
.cover--evolve i { font-style: normal; color: #F06EAA; }
.cover--homeme { background: #F2ECE1; color: #52233F; }
.cover__arch {
  position: absolute; bottom: -12%; left: 50%; translate: -50% 0;
  width: 52%; aspect-ratio: 1 / 1.35;
  background: #6E6EC0;
  border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  opacity: 0.9;
  transition: transform 0.6s var(--ease-out);
}
.project:hover .cover__arch { transform: translateY(-6%); }
.cover--homeme .cover__word { color: #52233F; z-index: 2; }
.cover--sinclair { background: #141414; color: #FFB74A; }
.cover__telemetry {
  position: absolute; inset: auto 0 18%; width: 100%; height: 26%;
  color: #FFB74A; opacity: 0.85;
}
.cover--sinclair .cover__word--mono { color: #E8E4DC; }
.cover--two6 { background: #101A33; color: #FFD337; }
.cover--two6 i { font-style: normal; color: #F7F1E4; }
/* Future Makers — white / ink #0b0c14 / indigo #4338EC / signal green */
.cover--fm { background: #FFFFFF; color: #0B0C14; }
.cover--fm i { font-style: normal; color: #4338EC; }
.cover__signal {
  position: absolute; top: 1.4rem; left: 1.6rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: #17C964;
  box-shadow: 0 0 0 6px rgba(23,201,100,0.18);
}
/* TrigR Gifting — ivory / ink / taupe, elegant serif */
.cover--trigrgift { background: #FBFAF7; color: #2B2926; }
.cover--trigrgift .cover__word--serif { font-weight: 700; line-height: 1; }
.cover--trigrgift em { display: block; font-style: italic; font-weight: 400; color: #9A9080; font-size: 0.55em; margin-top: 0.1em; }
/* Third Space — porcelain / ink / moss */
.cover--thirdspace { background: #F6F5F0; color: #1B1D18; }
.cover__word--cond {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.28em; line-height: 1.25;
  text-align: center;
  font-stretch: condensed;
}
.cover__moss {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 14%;
  background: #315C43;
  transition: height 0.5s var(--ease-out);
}
.project:hover .cover__moss { height: 20%; }
/* Rept — near-black / white mono, mint cursor */
.cover--rept { background: #0A0B0D; color: #F2F2F0; }
.cover--rept .cover__word--mono { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: 0.04em; text-transform: lowercase; }
.cover--rept i { font-style: normal; color: var(--mint); animation: rept-blink 1.1s steps(1) infinite; }
@keyframes rept-blink { 50% { opacity: 0; } }
/* TrigR Growth — dark ink / signal green */
.cover--trigrgrow { background: #15171C; color: #E8E9E4; }
.cover--trigrgrow i { font-style: normal; color: #4ADE80; display: inline-block; transition: transform 0.4s var(--ease-bounce); }
.project:hover .cover--trigrgrow i { transform: translateY(-8px); }
/* Hunter Gatherer — ink / bone / ember, HG monogram */
.cover--hg { background: #0C0B09; color: #ECE6D9; }
.cover--hg .cover__word { font-weight: 400; letter-spacing: -0.02em; }
.cover--hg .cover__word em { font-style: italic; font-weight: 400; margin-left: -0.06em; }
.cover--hg .cover__word i { font-style: normal; color: #D98B3A; display: inline-block; transition: transform 0.4s var(--ease-bounce); }
.project:hover .cover--hg .cover__word i { transform: translateY(-6px); }
.cover--hg .cover__caps { position: absolute; bottom: 12%; left: 50%; translate: -50% 0; font-family: var(--sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; z-index: 2; }
.ref-cover.cover--hg .cover__word { font-weight: 400; }
/* JBS Media — white / black / teal audio bars */
.cover--jbs { background: #FFFFFF; color: #000000; }
.cover--jbs .cover__word { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; }
.cover__bars {
  position: absolute; bottom: 16%; left: 50%; translate: -50% 0;
  display: flex; align-items: flex-end; gap: 6px;
  height: 15%;
}
.cover__bars i {
  width: 8px; border-radius: 4px 4px 0 0;
  background: #0D8B8E;
}
.cover__bars i:nth-child(1) { height: 40%; }
.cover__bars i:nth-child(2) { height: 85%; }
.cover__bars i:nth-child(3) { height: 55%; }
.cover__bars i:nth-child(4) { height: 100%; }
.cover__bars i:nth-child(5) { height: 65%; }
.project:hover .cover__bars i { animation: jbs-eq 0.9s ease-in-out infinite alternate; }
.project:hover .cover__bars i:nth-child(2n) { animation-delay: 0.18s; }
.project:hover .cover__bars i:nth-child(3n) { animation-delay: 0.32s; }
@keyframes jbs-eq { from { transform: scaleY(0.55); } to { transform: scaleY(1.15); } }
.cover__bars i { transform-origin: bottom; }

.cover--you { background: var(--blush); color: var(--ink); border: 1.5px dashed var(--ink-40); box-shadow: none; }
.cover__bigflower {
  position: absolute; width: 55%; color: var(--pink);
  opacity: 0.5;
  transition: transform 0.8s var(--ease-out);
}
.project--you:hover .cover__bigflower { transform: rotate(60deg) scale(1.1); }
.cover--you .cover__word { font-size: clamp(2rem, 5vw, 4rem); z-index: 2; }

.project__meta { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; padding: 0 0.3rem; }
.project__meta h3 { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; }
.project__meta p { color: var(--ink-70); font-size: 0.9rem; }
.project__tags { margin-left: auto; font-size: 0.8rem; font-weight: 600; color: var(--ink-40); letter-spacing: 0.03em; }

.work__progress {
  margin: clamp(1.5rem, 4vh, 2.5rem) var(--pad) 0;
  height: 3px; background: rgba(34,29,24,0.1); border-radius: 3px;
}
.work__progress-bar {
  display: block; height: 100%; width: 100%;
  background: var(--pink-deep); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
}

/* mobile: native horizontal scroll */
@media (max-width: 900px) {
  .work__pin { min-height: 0; }
  .work__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .work__viewport::-webkit-scrollbar { display: none; }
  .project { scroll-snap-align: center; width: 78vw; }
  .work__progress { display: none; }
}

/* ============ process ============ */
.process {
  background: var(--cream-deep);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  border-radius: calc(var(--radius) * 2) calc(var(--radius) * 2) 0 0;
}
.process__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.process__note { color: var(--ink-70); }

.process__stack { max-width: 56rem; margin: 0 auto; }
.p-card {
  position: sticky;
  top: calc(14vh + var(--i) * 2.6rem);
  background: var(--cream);
  border: 1.5px solid rgba(34,29,24,0.12);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 6vh, 4rem);
  rotate: var(--tilt);
  box-shadow: 0 14px 40px rgba(34,29,24,0.1);
  min-height: 16rem;
}
.p-card:nth-child(2) { background: var(--blush); }
.p-card:nth-child(3) { background: var(--mint); }
.p-card:nth-child(4) { background: var(--pink); }
.p-card__num {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  opacity: 0.25; line-height: 1;
}
.p-card__title {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin: 0.2em 0 0.35em;
}
.p-card p { max-width: 34rem; color: var(--ink-70); }
.p-card:nth-child(n+2) p { color: var(--ink); opacity: 0.75; }
.p-card__doodle {
  position: absolute; top: clamp(1.2rem, 3vw, 2.4rem); right: clamp(1.2rem, 3vw, 2.4rem);
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  opacity: 0.3; rotate: 8deg;
}

/* ============ services ============ */
.services {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  background: var(--cream-deep);
}
.services__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.services__note { color: var(--ink-70); font-style: italic; font-family: var(--serif); }

.svc-list { list-style: none; }
.svc { border-top: 1.5px solid rgba(34,29,24,0.15); }
.svc:last-child { border-bottom: 1.5px solid rgba(34,29,24,0.15); }
.svc a {
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-areas: "num name" ". desc";
  align-items: baseline;
  gap: 0.15rem 1rem;
  padding: clamp(1.4rem, 3.5vh, 2.2rem) 0.5rem;
  transition: padding-left 0.4s var(--ease-out), background 0.4s;
}
.svc a:hover { padding-left: 1.6rem; background: rgba(248,220,226,0.4); }
.svc__num { grid-area: num; font-family: var(--serif); font-style: italic; color: var(--pink-deep); font-size: 1.2rem; }
.svc__name {
  grid-area: name;
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.svc__desc { grid-area: desc; color: var(--ink-70); max-width: 42rem; }
.svc-peek {
  position: fixed; z-index: 900; pointer-events: none;
  top: 0; left: 0;
  transform: translate(-50%, -130%) scale(0);
  transition: transform 0.3s var(--ease-bounce);
}
.svc-peek span {
  display: inline-block;
  background: var(--ink); color: var(--cream);
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  padding: 0.55rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
  rotate: -3deg;
}
.svc-peek.on { transform: translate(-50%, -130%) scale(1); }
@media (hover: none) { .svc-peek { display: none; } }

/* ============ prices ============ */
.prices { padding: clamp(5rem, 12vh, 9rem) var(--pad) clamp(3rem, 6vh, 5rem); }
.prices__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.prices__note { color: var(--ink-70); max-width: 24rem; }

.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  align-items: start;
  max-width: 78rem;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: #FFFDF6;
  border: 1.5px solid rgba(34,29,24,0.12);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  rotate: var(--tilt, 0deg);
  box-shadow: 0 14px 40px rgba(34,29,24,0.1);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, rotate 0.45s var(--ease-out);
}
.price-card:hover {
  rotate: 0deg;
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(34,29,24,0.16);
}
.price-card--pop {
  background: var(--blush);
  border-color: rgba(34,29,24,0.2);
}
.price-card__sticker {
  position: absolute; top: -1.1rem; left: 50%; translate: -50% 0;
  rotate: -3deg;
  background: var(--ink); color: var(--cream);
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(34,29,24,0.2);
}
.price-card__sticker i { font-style: normal; color: var(--pink); }
.price-card__name {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.05;
}
.price-card__for { color: var(--ink-70); font-size: 0.95rem; margin-top: 0.35rem; }
.price-card__amount {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.price-card--pop .price-card__amount { color: var(--pink-deep); }
.price-card__meta {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-40);
  margin-top: 0.4rem;
}
.price-card__list {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  border-top: 1.5px solid rgba(34,29,24,0.12);
}
.price-card__list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.6rem;
  border-bottom: 1px solid rgba(34,29,24,0.09);
  font-size: 0.95rem; line-height: 1.45;
}
.price-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.78rem;
  width: 0.9em; height: 0.9em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23E4879F'%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(72%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(144%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(216%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(288%2050%2050)'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='7.5' fill='%23BFE2CE'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: rotate 0.6s var(--ease-bounce);
}
.price-card--pop .price-card__list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%238FC7A9'%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(72%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(144%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(216%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(288%2050%2050)'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='7.5' fill='%23F8DCE2'/%3E%3C/svg%3E"); }
.price-card:hover .price-card__list li::before { rotate: 180deg; }
.price-card__list li:nth-child(2)::before { transition-delay: 0.04s; }
.price-card__list li:nth-child(3)::before { transition-delay: 0.08s; }
.price-card__list li:nth-child(4)::before { transition-delay: 0.12s; }
.price-card__list li:nth-child(5)::before { transition-delay: 0.16s; }
.price-card__list li:nth-child(6)::before { transition-delay: 0.2s; }
.price-card__list li:nth-child(7)::before { transition-delay: 0.24s; }
.price-card__list li:nth-child(8)::before { transition-delay: 0.28s; }
.price-card__cta { width: 100%; justify-content: center; }

.prices__monthly {
  max-width: 78rem;
  margin: clamp(1.6rem, 4vh, 2.5rem) auto 0;
  background: var(--mint);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.6rem, 3.5vw, 2.6rem);
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem);
  flex-wrap: wrap;
  rotate: -0.6deg;
  box-shadow: 0 12px 34px rgba(34,29,24,0.1);
}
.prices__monthly .fl { color: var(--pink-deep); flex: none; width: 1.6em; height: 1.6em; }
.prices__monthly-amount {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1; white-space: nowrap;
}
.prices__monthly-amount span {
  font-weight: 400; font-style: italic;
  font-size: 0.55em; color: var(--ink-70);
}
.prices__monthly-text { flex: 1 1 22rem; color: var(--ink); opacity: 0.8; font-size: 0.97rem; }

.prices__honest {
  text-align: center;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  color: var(--ink-70);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

@media (max-width: 1080px) {
  .prices__grid { grid-template-columns: 1fr; max-width: 34rem; gap: 2.4rem; }
  .price-card--pop { order: -1; }
}

/* ============ nice things ============ */
.nice { padding: clamp(5rem, 12vh, 9rem) var(--pad) clamp(6rem, 14vh, 10rem); }
.nice__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.nice__note { color: var(--ink-70); font-style: italic; font-family: var(--serif); }

.nice__pile {
  position: relative;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  min-height: 46rem;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.note {
  position: absolute;
  width: min(21rem, 78vw);
  padding: 1.8rem 1.7rem 1.4rem;
  border-radius: 14px;
  rotate: var(--r, 0deg);
  box-shadow: 0 16px 40px rgba(34,29,24,0.14);
  cursor: grab;
  user-select: none;
  touch-action: none;
  will-change: transform;
}
.note:active { cursor: grabbing; }
.note::before {
  /* washi tape */
  content: "";
  position: absolute; top: -12px; left: 50%; translate: -50% 0;
  width: 5.5rem; height: 1.5rem;
  background: rgba(191, 226, 206, 0.75);
  rotate: -2deg;
  border-radius: 2px;
}
.note--pink::before { background: rgba(248,220,226,0.9); }
.note p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; font-weight: 400; }
.note footer { margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-70); }
.note--cream { background: #FFFDF6; }
.note--pink { background: var(--blush); }
.note--mint { background: var(--mint); }
.note--sticker {
  background: var(--ink); color: var(--cream);
  width: auto; text-align: center;
  padding: 1.4rem 1.8rem;
}
.note--sticker::before { display: none; }
.note--sticker p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.note__flower { width: 34px; height: 34px; color: var(--pink); margin-bottom: 0.3rem; }

.note:nth-child(1) { top: 3%; left: 6%; }
.note:nth-child(2) { top: 10%; left: 38%; }
.note:nth-child(3) { top: 29%; left: 26%; }
.note:nth-child(4) { top: 26%; left: 64%; }
.note:nth-child(5) { top: 58%; left: 4%; }
.note:nth-child(6) { top: 55%; left: 62%; }
.note:nth-child(7) { top: 76%; left: 38%; }

@media (max-width: 900px) {
  .nice__pile {
    min-height: 0;
    display: flex; gap: 1.2rem;
    overflow-x: auto;
    padding: 1.2rem 0.2rem 1.6rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .nice__pile::-webkit-scrollbar { display: none; }
  .note { position: static; flex: none; scroll-snap-align: center; rotate: calc(var(--r) * 0.5); }
}

/* mini testimonial pile on the home page */
.nice--mini { padding-bottom: clamp(3rem, 8vh, 5rem); }
.nice--mini .nice__pile { min-height: 30rem; }
.nice--mini .note:nth-child(1) { top: 6%; left: 8%; }
.nice--mini .note:nth-child(2) { top: 24%; left: 48%; }
.nice--mini .note:nth-child(3) { top: 64%; left: 28%; }

/* ============ contact ============ */
.contact {
  background: var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) * 2) calc(var(--radius) * 2) 0 0;
  padding: clamp(6rem, 14vh, 10rem) var(--pad) 2rem;
  text-align: center;
  position: relative;
  overflow: clip;
}
.contact__eyebrow {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--pink);
}
.contact__title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.6rem, 7.5vw, 6.8rem);
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 12em; margin: 0.3em auto 0;
}
.contact__title em { font-style: italic; font-weight: 400; color: var(--pink); white-space: nowrap; }
.contact__note { margin-top: 1.4rem; color: rgba(247,241,228,0.65); }
.contact__ctas {
  margin-top: clamp(2rem, 5vh, 3.2rem);
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.copy-email { font-size: 1.05rem; }

.site-footer {
  margin-top: clamp(5rem, 12vh, 8rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247,241,228,0.15);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(247,241,228,0.6);
  text-align: left;
}
.site-footer__left { display: flex; align-items: center; gap: 0.6rem; }
.site-footer__flower { width: 24px; height: 26px; color: var(--cream); }
.site-footer__right { display: flex; align-items: center; gap: 0.9rem; }
#localTime { font-variant-numeric: tabular-nums; color: var(--cream); font-weight: 600; }
.to-top {
  color: var(--cream); font-weight: 600;
  border: 1px solid rgba(247,241,228,0.3);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  transition: background 0.3s, color 0.3s, rotate 0.3s;
}
.to-top:hover { background: var(--pink); color: var(--ink); border-color: var(--pink); }

.site-footer__left { flex-wrap: wrap; }
.site-footer__links a {
  color: rgba(247,241,228,0.75); font-weight: 600;
  border-bottom: 1px solid rgba(247,241,228,0.25);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.site-footer__links a:hover { color: var(--pink); border-color: var(--pink); }

/* ============ chaos + toast ============ */
.chaos-layer { position: fixed; inset: 0; z-index: 1300; pointer-events: none; overflow: clip; }
.chaos-bit {
  position: absolute; top: -8vh;
  will-change: transform;
  font-size: 1.6rem;
}
.chaos-bit svg { width: 100%; height: 100%; display: block; }
.chaos-bit--chip {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 0.95rem;
  background: var(--mint); color: var(--ink);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  white-space: nowrap;
}
.chaos-bit--chip.pink { background: var(--pink); }

body.chaos .flower-face { opacity: 1; }
body.chaos .wordmark__flower { animation: spin-fast 0.9s linear infinite; }
@keyframes spin-fast { to { transform: rotate(360deg); } }

.toast {
  position: fixed; bottom: 1.6rem; left: 50%; z-index: 1450;
  translate: -50% 0;
  background: var(--ink); color: var(--cream);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.4rem; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(34,29,24,0.3);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s var(--ease-bounce);
}
.toast.on { opacity: 1; transform: translateY(0); }

/* ============ reveals (JS adds .in) ============ */
body.js .fade-up { opacity: 0; transform: translateY(30px); }
body.js .fade-up.in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }

/* ============ multi-page bits ============ */

/* page wipe transition */
.page-wipe {
  position: fixed; inset: 0; z-index: 1490;
  background: var(--ink);
  transform: translateY(102%);
  display: grid; place-items: center;
  pointer-events: none;
}
.page-wipe svg { width: 70px; height: 70px; color: var(--pink); }

/* page hero (subpages) */
.page-hero {
  padding: clamp(8rem, 18vh, 12rem) var(--pad) clamp(2.5rem, 6vh, 4rem);
}
.page-hero__eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 500; color: var(--ink-70);
  margin-bottom: 1.2rem;
}
.page-hero__sub {
  margin-top: 1.4rem;
  max-width: 34rem;
  color: var(--ink-70);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

/* featured work (home) */
.featured { padding: clamp(4rem, 10vh, 8rem) var(--pad); }
.featured__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.featured__note { color: var(--ink-70); max-width: 20rem; text-align: right; }
.featured__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.featured__grid .project { width: auto; }
.featured__grid .cover__word { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.featured__more { margin-top: clamp(2rem, 5vh, 3rem); text-align: center; }
@media (max-width: 900px) {
  .featured__grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; }
  .featured__note { text-align: left; }
}

/* believe list (hello page) */
.believe { padding: clamp(3rem, 8vh, 6rem) var(--pad); }
.believe__head { margin-bottom: clamp(2rem, 5vh, 3rem); }
.believe__list { list-style: none; max-width: 56rem; }
.believe__list li {
  position: relative;
  border-top: 1.5px solid rgba(34,29,24,0.14);
  padding: clamp(1.1rem, 2.6vh, 1.6rem) 0.4rem clamp(1.1rem, 2.6vh, 1.6rem) 2.4rem;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 1.25;
}
.believe__list li:last-child { border-bottom: 1.5px solid rgba(34,29,24,0.14); }
.believe__list li::before {
  content: "";
  position: absolute; left: 0.2rem; top: 50%; translate: 0 -50%;
  width: 1.1em; height: 1.1em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23E4879F'%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(72%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(144%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(216%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(288%2050%2050)'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='7.5' fill='%23BFE2CE'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: rotate 0.6s var(--ease-bounce);
}
.believe__list li:nth-child(even)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%238FC7A9'%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(72%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(144%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(216%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(288%2050%2050)'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='7.5' fill='%23F8DCE2'/%3E%3C/svg%3E"); }
.believe__list li:hover::before { rotate: 180deg; }
.believe__list li em { font-style: italic; font-weight: 400; color: var(--pink-deep); }

/* CTA band (shared) + contact page */
.contact--band { padding-top: clamp(4.5rem, 10vh, 7rem); }
.contact--band .site-footer { margin-top: clamp(3.5rem, 8vh, 5.5rem); }
.contact--page { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.contact--page .site-footer { margin-top: auto; padding-top: 1.6rem; }
.contact--page { padding-top: clamp(7rem, 16vh, 10rem); }
.contact__packs {
  margin-top: clamp(2.2rem, 5vh, 3.2rem);
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; flex-wrap: wrap;
}
.contact__packs-label {
  width: 100%;
  font-family: var(--serif); font-style: italic;
  color: rgba(247,241,228,0.6);
  margin-bottom: 0.3rem;
}
.pack-chip {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  border: 1.5px solid rgba(247,241,228,0.3);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease-bounce);
}
.pack-chip:hover { background: var(--pink); border-color: var(--pink); color: var(--ink); transform: rotate(-2deg) scale(1.05); }
.pack-chip span { font-family: var(--serif); font-style: italic; opacity: 0.75; }
.contact__next {
  margin: clamp(3rem, 7vh, 4.5rem) auto 0;
  display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  max-width: 60rem;
  text-align: left;
}
.contact__next li {
  list-style: none;
  max-width: 16rem;
}
.contact__next strong {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.2rem; color: var(--pink);
  margin-bottom: 0.3rem;
}
.contact__next p { font-size: 0.92rem; color: rgba(247,241,228,0.65); }

/* contact form */
.cform {
  max-width: 36rem;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  text-align: left;
}
.cform__label {
  font-family: var(--serif); font-style: italic;
  color: rgba(247,241,228,0.6);
  text-align: center;
  margin-bottom: 1.4rem;
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .cform__row { grid-template-columns: 1fr; } }
.cform__field { display: block; margin-bottom: 1.1rem; }
.cform__field span {
  display: block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,241,228,0.55);
  margin-bottom: 0.4rem;
}
.cform input[type="text"], .cform input[type="email"], .cform textarea, .cform select {
  width: 100%;
  background: rgba(247,241,228,0.06);
  border: 1.5px solid rgba(247,241,228,0.25);
  border-radius: 14px;
  color: var(--cream);
  font: inherit;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.cform textarea { resize: vertical; min-height: 7rem; }
.cform select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.cform__field--select { position: relative; }
.cform__field--select::after {
  content: "↓";
  position: absolute; right: 1.1rem; bottom: 0.9rem;
  color: var(--pink); pointer-events: none; font-weight: 600;
}
.cform input:focus-visible, .cform textarea:focus-visible, .cform select:focus-visible {
  outline: none;
  border-color: var(--pink);
  background: rgba(247,241,228,0.1);
}
.cform input::placeholder, .cform textarea::placeholder { color: rgba(247,241,228,0.3); }
.cform__honey { position: absolute; left: -9999px; opacity: 0; }
.cform__send { width: 100%; justify-content: center; margin-top: 0.4rem; }
.cform__send[disabled] { opacity: 0.6; pointer-events: none; }
.cform__note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247,241,228,0.5);
  margin-top: 0.9rem;
}

/* mobile menu */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  position: relative;
  flex: none;
}
.menu-btn span {
  position: absolute; left: 11px; right: 11px;
  height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease-bounce), top 0.35s, background 0.3s;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 24px; }
body.menu-open .menu-btn span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { top: 20px; transform: rotate(-45deg); }
@media (max-width: 760px) { .menu-btn { display: block; } }

.menu-overlay {
  position: fixed; inset: 0; z-index: 990; /* below the fixed header so wordmark + close stay usable */
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  gap: 0.4rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.menu-overlay a {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.6rem, 11vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
body.menu-open .menu-overlay a { transform: none; opacity: 1; }
body.menu-open .menu-overlay a:nth-child(2) { transition-delay: 0.05s; }
body.menu-open .menu-overlay a:nth-child(3) { transition-delay: 0.1s; }
body.menu-open .menu-overlay a:nth-child(4) { transition-delay: 0.15s; }
body.menu-open .menu-overlay a:nth-child(5) { transition-delay: 0.2s; }
body.menu-open .menu-overlay a:nth-child(6) { transition-delay: 0.25s; }
.menu-overlay a em { font-style: italic; font-weight: 400; color: var(--pink-deep); }
.menu-overlay__flower {
  position: absolute; bottom: 2rem; right: var(--pad);
  width: 60px; height: 60px; color: var(--pink);
}

/* active nav state */
.site-nav a.active { color: var(--pink-deep); }
.site-nav a.active::after { transform: scaleX(1); }

/* dark page (contact) header + menu */
body.theme-dark { background: var(--ink); }
body.theme-dark .site-header { color: var(--cream); }
body.theme-dark .site-header.scrolled {
  background: rgba(34, 29, 24, 0.75);
  box-shadow: 0 1px 0 rgba(247,241,228,0.1);
}
body.theme-dark .site-nav a.active { color: var(--pink); }
body.theme-dark .site-header .btn--pill { background: var(--cream); color: var(--ink); }
body.theme-dark .site-header .btn--pill:hover { background: var(--pink); }
body.theme-dark .menu-btn { border-color: var(--cream); }
body.theme-dark .menu-btn span { background: var(--cream); }
body.theme-dark.menu-open .menu-btn { border-color: var(--ink); }
body.theme-dark.menu-open .menu-btn span { background: var(--ink); }
body.theme-dark .skip-link { background: var(--cream); color: var(--ink); }
/* menu overlay is cream — flip the dark header back to ink while it's open */
body.theme-dark.menu-open .site-header { color: var(--ink); }
body.theme-dark.menu-open .site-header.scrolled { background: transparent; box-shadow: none; }
body.theme-dark.menu-open .site-header .btn--pill { background: var(--ink); color: var(--cream); }
body.menu-open .site-header.scrolled { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }

/* inline flower glyphs (replaces the ✳ character, which emoji-falls-back) */
.fl {
  width: 0.72em; height: 0.72em;
  display: inline-block; vertical-align: -0.04em;
  color: inherit;
}
.fl--big { width: 1em; height: 1em; }
.marquee i .fl { color: var(--cream); }
.marquee--mint i .fl { color: var(--ink); opacity: 0.45; }
.price-card__sticker .fl { color: var(--pink); }

/* ============ design-yours wizard ============ */
.wiz-progress {
  position: fixed; top: 50%; right: clamp(0.6rem, 1.5vw, 1.6rem); z-index: 900;
  translate: 0 -50%;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.wiz-progress__flower {
  width: 22px; height: 22px;
  color: rgba(34,29,24,0.18);
  transition: color 0.4s, transform 0.4s var(--ease-bounce);
}
.wiz-progress__flower.is-done { color: var(--pink-deep); transform: rotate(72deg) scale(1.15); }
@media (max-width: 760px) { .wiz-progress { display: none; } }

.wiz { padding: clamp(2.5rem, 7vh, 4.5rem) var(--pad); }
.wiz__head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(1.4rem, 3.5vh, 2.2rem); }
.wiz__num { font-family: var(--serif); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--pink-deep); opacity: 0.5; }
.wiz__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
}
.wiz__title em { font-style: italic; font-weight: 400; color: var(--pink-deep); }
.wiz__note { width: 100%; color: var(--ink-70); font-size: 0.97rem; }

.choice-grid { display: grid; gap: clamp(0.9rem, 2vw, 1.4rem); max-width: 72rem; }
.choice-grid--palettes { grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
.choice-grid--fonts { grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); }
.choice-grid--refs { grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); }

.choice {
  position: relative;
  text-align: left;
  background: #FFFDF6;
  border: 1.5px solid rgba(34,29,24,0.14);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.2rem;
  rotate: var(--tilt, 0deg);
  transition: transform 0.35s var(--ease-out), rotate 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
  cursor: pointer;
}
.choice:hover { rotate: 0deg; transform: translateY(-4px); box-shadow: 0 14px 34px rgba(34,29,24,0.12); }
.choice.is-picked {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(228,135,159,0.25), 0 14px 34px rgba(34,29,24,0.12);
  rotate: 0deg;
}
.choice.is-picked::after {
  content: "";
  position: absolute; top: -11px; right: -8px;
  width: 26px; height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23E4879F'%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(72%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(144%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(216%2050%2050)'/%3E%3Cpath d='M50%2046%20C40%2039%2035%2027%2039%2016%20C41%2010%2046%2010%2050%2016%20C54%2010%2059%2010%2061%2016%20C65%2027%2060%2039%2050%2046%20Z' transform='rotate(288%2050%2050)'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='7.5' fill='%23BFE2CE'/%3E%3C/svg%3E") center / contain no-repeat;
}
.choice__name { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; margin-top: 0.7rem; }
.choice__desc { display: block; color: var(--ink-70); font-size: 0.85rem; margin-top: 0.15rem; }

.palette-row { display: flex; gap: 6px; height: 3.2rem; }
.palette-row i {
  flex: 1; border-radius: 10px;
  border: 1px solid rgba(34,29,24,0.1);
  font-style: normal;
}
.palette-row--mystery i {
  display: grid; place-items: center;
  background: var(--cream-deep);
  font-family: var(--serif); font-style: italic; font-weight: 700;
  color: var(--ink-40); font-size: 1.2rem;
}

.font-sample {
  display: grid; place-items: center;
  height: 3.2rem;
  background: var(--cream-deep);
  border-radius: 10px;
  font-size: 2rem; line-height: 1;
}
.font-sample--serif { font-family: var(--serif); font-weight: 800; }
.font-sample--sans { font-family: var(--sans); font-weight: 600; }
.font-sample--serif-i { font-family: var(--serif); font-style: italic; font-weight: 700; }
.font-sample--mystery { font-family: var(--serif); font-style: italic; color: var(--ink-40); }

.ref-cover {
  position: relative;
  display: grid; place-items: center;
  height: 6.5rem;
  border-radius: 12px;
  overflow: clip;
}
.ref-cover .cover__word { font-family: var(--serif); font-weight: 900; font-size: 1.7rem; letter-spacing: -0.02em; position: relative; z-index: 2; }
.ref-cover .cover__word--serif { font-weight: 700; text-align: center; line-height: 1; }
.ref-cover .cover__word--serif em { display: block; font-style: italic; font-weight: 400; font-size: 0.6em; }
.ref-cover .cover__word--cond { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.25em; text-align: center; line-height: 1.3; }
.ref-cover .cover__word--mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 700; font-size: 1.3rem; }
.ref-cover .cover__moss { position: absolute; bottom: 0; left: 0; right: 0; height: 16%; background: #315C43; }

.wiz-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: 46rem;
}
.wiz-field { display: block; }
.wiz-field--wide { grid-column: 1 / -1; }
.wiz-field__label {
  display: block;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--ink-70);
}
.wiz-field__label em { font-style: italic; color: var(--pink-deep); }
.wiz-field input, .wiz-field textarea {
  width: 100%;
  font: inherit;
  background: #FFFDF6;
  border: 1.5px solid rgba(34,29,24,0.18);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.wiz-field input:focus, .wiz-field textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(228,135,159,0.2);
}
.wiz-field ::placeholder { color: var(--ink-40); }
#otherSites { max-width: 46rem; }
.wiz .wiz-field--wide { margin-top: 1.2rem; max-width: 46rem; }
@media (max-width: 700px) { .wiz-fields { grid-template-columns: 1fr; } }

.wiz-send { margin-top: clamp(2rem, 5vh, 3.5rem); }
#sendBtn[aria-disabled="true"] { opacity: 0.55; }
#sendBtn.is-ready { opacity: 1; }

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee__track { transform: none !important; }
  .manifesto__big .word { opacity: 1 !important; }
  body.js .fade-up { opacity: 1; transform: none; }
  .work__viewport { overflow-x: auto; }
  .cursor { display: none !important; }
  .page-wipe { display: none !important; }
}
