@font-face {
  font-family: "Kaio";
  src: url("assets/Kaio-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette interface : Cream Flower (cream + rose poudré + orange chaud) */
  --bg: #0a0a0a;
  --ink: #ffffff;
  --cream: #FFF7E8;
  --pink: #FF9EC4;       /* rose poudré (Cream Flower) */
  --pink-soft: #FF9EC4;
  --lime: #FF5A36;       /* orange chaud (Cream Flower) — nom legacy, c'est l'accent */
  --lime-hover: #E54A26;
  --muted: rgba(255, 255, 255, 0.5);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 40px;
}

.app {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ============ HEADER ============ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Kaio", "Helvetica Neue", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1;
}
.brand .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.14); }
.icon-btn:active { transform: scale(0.94); }

/* ============ HERO TITLE ============ */
.hero {
  font-family: "Kaio", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 14vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  margin: 4px 0 2px;
}
.hero .word {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #0a0a0a;
}
.hero .word.cream { background: var(--cream); }
.hero .word.pink  { background: var(--pink); color: #0a0a0a; }
.hero .word.lime  { background: var(--lime); }
.hero .word.outline {
  background: transparent;
  color: var(--ink);
  -webkit-text-stroke: 2px var(--ink);
  padding: 0;
}
.hero .word.solid {
  background: transparent;
  color: var(--ink);
  padding: 0 4px;
}
.hero .line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}
.hero .word.flower {
  background: var(--pink);
  width: clamp(46px, 14vw, 72px);
  height: clamp(46px, 14vw, 72px);
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}
.hero .word.flower svg { width: 72%; height: 72%; }

.hero .aster {
  display: inline-block;
  font-size: 0.5em;
  line-height: 1;
  margin-left: 0.04em;
  vertical-align: 0.55em;
  color: #0a0a0a;
  font-weight: 900;
}

.subhero {
  font-family: "Kaio", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 6px 0;
  display: block;
}
.subhero .aster-pink {
  color: var(--pink);
  margin-right: 0.02em;
}
.subhero .smiley {
  display: inline-flex;
  vertical-align: -0.18em;
  width: 0.95em;
  height: 0.95em;
  margin: 0 0.04em;
}
.subhero .smiley svg { width: 100%; height: 100%; }

.promise {
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,0.5);
  max-width: 32ch;
  margin: 16px 6px 0;
  font-weight: 500;
}
.promise strong { color: var(--lime); font-weight: 700; }

/* ============ BOUQUET CARD ============ */
.bouquet-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  box-shadow: 0 24px 60px rgba(255, 158, 196, 0.18), 0 1px 0 rgba(255,255,255,0.06) inset;
  margin-top: 4px;
}
#canvasWrap {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#canvasWrap canvas {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Loader overlay — superposé à la carte (le canvas transparent reste en flow,
   donc l'overlay doit être en position absolue pour rester centré). */
.bouquet-placeholder .placeholder-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,158,196,0.10), transparent 60%),
    #ffffff;
}
/* Loader — petits cercles qui sautillent (palette interface : rose + orange) */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 24px);
  grid-template-rows: repeat(2, 24px);
  gap: 9px;
}
.placeholder-grid span {
  border-radius: 50%;
  display: block;
  animation: bob 2.6s ease-in-out infinite;
}
.placeholder-grid span:nth-child(2) { animation-delay: -0.4s; }
.placeholder-grid span:nth-child(3) { animation-delay: -0.8s; }
.placeholder-grid span:nth-child(4) { animation-delay: -1.2s; }
.placeholder-grid span:nth-child(5) { animation-delay: -1.6s; }
.placeholder-grid span:nth-child(6) { animation-delay: -2.0s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-5px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .placeholder-grid span { animation: none; }
}
.placeholder-label {
  font-family: "Kaio", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(10,10,10,0.45);
  padding: 4px 10px;
  border: 1px dashed rgba(10,10,10,0.2);
  border-radius: 999px;
}
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: "Kaio", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: #0a0a0a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.card-recipient {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.86);
  color: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  z-index: 2;
}
.card-recipient .for {
  font-size: 11px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em;
}
.card-recipient .name {
  font-family: "Kaio", sans-serif;
  font-size: 20px; line-height: 1;
}
.card-recipient .edit {
  font-size: 12px;
  color: var(--lime);
  background: none;
  border: 1px dashed rgba(255, 90, 54, 0.45);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}

/* ============ STYLE PICKER ============ */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 6px 6px -8px;
  display: flex; justify-content: space-between; align-items: center;
}
.section-label .hint { color: var(--lime); text-transform: none; letter-spacing: 0.02em; font-size: 12px; }

.styles {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 6px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.styles::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  cursor: pointer;
  transition: all .18s ease;
  min-width: 78px;
}
.chip:hover { background: rgba(255,255,255,0.09); }
.chip.active {
  background: var(--cream);
  color: #0a0a0a;
  border-color: var(--cream);
  transform: translateY(-2px);
}
.chip .swatch {
  width: 44px; height: 44px; border-radius: 12px;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.chip.active .swatch { background: #fff; }
.chip .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ ACTIONS ============ */
.actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 4px;
}
.btn {
  border: none;
  cursor: pointer;
  font-family: "Kaio", sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
  padding: 18px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--lime);
  color: #0a0a0a;
  box-shadow: 0 12px 30px rgba(255, 90, 54, 0.22);
}
.btn-primary:hover { background: var(--lime-hover); }
.btn-regen {
  background: var(--pink);
  color: #0a0a0a;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(255, 158, 196, 0.28);
}
.btn-regen svg { transform-origin: center; }
.btn-regen:hover { background: #ff86b6; }

.btn .arrow {
  width: 28px; height: 28px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a0a0a;
}

/* ============ FOOTER MICRO ============ */
.footnote {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footnote .heart { color: var(--pink); }
.footnote a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .15s ease;
}
.footnote a:hover { opacity: 0.8; }

/* ============ SHARE MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 50;
  animation: fade .2s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.sheet {
  background: #131313;
  width: 100%;
  max-width: 520px;
  border-radius: 28px 28px 0 0;
  padding: 18px 18px 28px;
  animation: slideUp .25s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.sheet::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.sheet-title {
  font-family: "Kaio", sans-serif;
  font-size: 36px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 22px 6px 4px;
}
.sheet-sub {
  margin: 0 6px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.share-preview {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 10px;
  margin: 0 0 16px;
}
.share-preview .mini {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--cream);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.share-preview .meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.share-preview .meta .ttl { font-family: "Kaio", sans-serif; font-size: 18px; }
.share-preview .meta .url { font-size: 12px; color: rgba(255,255,255,0.5); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.share-native-xl[hidden] { display: none; }
.share-native-xl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lime);
  color: #0a0a0a;
  border: none;
  border-radius: 22px;
  padding: 26px 22px;
  margin: 8px 0 16px;
  cursor: pointer;
  font-family: "Kaio", sans-serif;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(255, 90, 54, 0.25);
  transition: background .15s ease, transform .12s ease, box-shadow .2s ease;
}
.share-native-xl:hover { background: var(--lime-hover); }
.share-native-xl:active { transform: scale(0.98); }
.share-native-xl .sn-ic {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(10,10,10,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  color: #0a0a0a;
}

.share-fallback {
  margin: 0 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
}
.share-fallback strong { color: var(--lime); font-weight: 700; }

.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(80px);
  background: var(--lime);
  color: #0a0a0a;
  font-family: "Kaio", sans-serif;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 100;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* responsive */
@media (min-width: 540px) {
  .hero { font-size: 72px; }
}

/* ============ TOGGLE ROWS (Hachuré/Lavis + Tiges) ============ */
.row-toggles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 6px;
}
.toggle-group {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  gap: 4px;
}
.t-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all .15s ease;
  white-space: nowrap;
}
.t-btn:hover { color: #fff; }
.t-btn.active {
  background: var(--cream);
  color: #0a0a0a;
}

/* ============ PALETTE TRIGGER (inline) ============ */
.palette-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 10px 14px 10px 10px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease;
}
.palette-trigger:hover { background: rgba(255,255,255,0.1); }
.pt-active {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pt-tile {
  width: 56px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.pt-tile span {
  flex: 1;
  display: block;
}
.pt-tile.pal-random {
  background: var(--cream);
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-direction: row;
}
.pt-name {
  font-family: "Kaio", sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pt-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  flex: 0 0 auto;
}

/* ============ PALETTE GRID inside SHEET ============ */
.palettes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 6px;
}
.pal {
  aspect-ratio: 5 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  padding: 0;
  display: block;
  transition: transform .15s ease, border-color .15s ease;
  position: relative;
}
.pal:hover { border-color: rgba(255,255,255,0.25); }
.pal.active {
  border-color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255,255,255,0.12);
}
.pal-fill {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.pal-fill > span {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 0;
}

/* Random palette tile */
.pal-random {
  background: var(--cream);
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
}
.pal-random .dice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pal-random .pal-name {
  display: none;
}
.pal-random.active { border-color: #fff; }

/* ============ SHEET CLOSE ============ */
.sheet-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.sheet-close:hover { background: rgba(255,255,255,0.16); }

/* ============================================================
   INTRO SPLASH — black hold, brand reveal, then lift away
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introOut 0.8s cubic-bezier(.7, 0, .2, 1) 1.85s forwards;
}
.intro-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Kaio", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 13vw, 68px);
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
  opacity: 0;
  animation: introBrandIn 0.85s cubic-bezier(.2, .7, .3, 1) 0.5s forwards;
}
.intro-tld {
  color: var(--pink);
  animation: introTldPulse 1.6s ease-in-out 1.0s infinite;
  display: inline-block;
}
@keyframes introBrandIn {
  0%   { opacity: 0; transform: translateY(14px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.03); }
  100% { opacity: 1; transform: none; }
}
@keyframes introTldPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@keyframes introOut {
  to { opacity: 0; visibility: hidden; transform: translateY(-14px); }
}

/* ============================================================
   ENTRANCE ANIMATIONS — staggered reveal of the hero
   ============================================================ */
@keyframes flawerPopIn {
  0%   { opacity: 0; transform: translateY(18px) scale(0.55) rotate(-5deg); }
  55%  { opacity: 1; transform: translateY(-3px) scale(1.06) rotate(1.5deg); }
  78%  {              transform: translateY(0)   scale(0.98) rotate(-0.5deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes flawerFlowerIn {
  0%   { opacity: 0; transform: scale(0.2) rotate(-90deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(15deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0deg); }
}
@keyframes flawerFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes flawerFadeUpSmall {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes flawerCardIn {
  0%   { opacity: 0; transform: translateY(28px) scale(0.94); }
  100% { opacity: 1; transform: none; }
}
@keyframes flawerShadowIn {
  from { box-shadow: 0 0 0 rgba(255,158,196,0); }
  to   { box-shadow: 0 24px 60px rgba(255, 158, 196, 0.18), 0 1px 0 rgba(255,255,255,0.06) inset; }
}

/* Hide all animatables until their delay kicks in */
.header,
.hero .word,
.subhero,
.promise,
.bouquet-card,
.section-label,
.toggle-group,
.palette-trigger,
.actions,
.footnote {
  opacity: 0;
  will-change: transform, opacity;
}

/* Header brand — first, after the intro splash lifts away */
.header {
  animation: flawerFadeUpSmall 0.65s cubic-bezier(.2,.7,.3,1) 2.30s forwards;
}

/* HERO TITLE — words pop in one by one with a soft overshoot */
.hero .word {
  transform-origin: center center;
  animation: flawerPopIn 0.85s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
.hero .word.cream   { animation-delay: 2.50s; }   /* Send */
.hero .word.flower  {                              /* flower circle */
  animation-name: flawerFlowerIn;
  animation-duration: 0.95s;
  animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
  animation-delay: 2.68s;
}
.hero .word.lime    { animation-delay: 2.86s; }   /* blooms, */
.hero .word.solid   { animation-delay: 3.08s; }   /* not */
.hero .word.pink    { animation-delay: 3.26s; }   /* nudes. */

/* Subhero + promise fade up after the title settles */
.subhero  { animation: flawerFadeUp 0.7s cubic-bezier(.2,.7,.3,1) 3.55s forwards; }
.promise  { animation: flawerFadeUp 0.7s cubic-bezier(.2,.7,.3,1) 3.75s forwards; }

/* Bouquet card — biggest reveal, slower & more graceful */
.bouquet-card {
  animation:
    flawerCardIn   2.0s cubic-bezier(.2,.7,.2,1) 5.00s forwards,
    flawerShadowIn 1.6s ease-out                 6.05s forwards;
}

/* Controls cascade in below */
.section-label:first-of-type   { animation: flawerFadeUpSmall 0.55s ease-out 6.45s forwards; }
.toggle-group                  { animation: flawerFadeUpSmall 0.55s ease-out 6.60s forwards; }
.toggle-group + .section-label { animation: flawerFadeUpSmall 0.55s ease-out 6.75s forwards; }
.palette-trigger              { animation: flawerFadeUpSmall 0.55s ease-out 6.90s forwards; }
.actions                      { animation: flawerFadeUpSmall 0.6s  cubic-bezier(.2,.7,.3,1) 7.05s forwards; }
.footnote                     { animation: flawerFadeUpSmall 0.6s  ease-out 7.30s forwards; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .intro { display: none !important; }
  .header, .hero .word, .subhero, .promise, .bouquet-card,
  .section-label, .toggle-group, .palette-trigger, .actions, .footnote {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

