/* ===========================================================
   Creative Expression Art Classes — Landing Page Styles
   Palette pulled from the watercolor logo
   =========================================================== */

:root {
  --teal:   #14b8a6;
  --teal-d: #0f766e;
  --pink:   #ec4899;
  --magenta:#e5267a;
  --coral:  #f97316;
  --gold:   #fbbf24;
  --ink:    #233e3b;
  --muted:  #6b7d7a;
  --cream:  #fffaf4;
  --paper:  #ffffff;

  --grad: linear-gradient(100deg, var(--teal) 0%, var(--magenta) 45%, var(--coral) 75%, var(--gold) 100%);
  --grad-soft: linear-gradient(135deg, #fff7f0, #f4fffd);

  --shadow-sm: 0 4px 14px rgba(35,62,59,.08);
  --shadow:    0 18px 40px rgba(35,62,59,.12);
  --shadow-lg: 0 30px 70px rgba(229,38,122,.16);

  --radius: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Decorative blobs ===== */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  opacity: .5; animation: float 18s ease-in-out infinite;
}
.blob--teal  { width: 480px; height: 480px; background: var(--teal);  top: -120px; left: -120px; }
.blob--pink  { width: 420px; height: 420px; background: var(--pink);  top: 30%; right: -140px; animation-delay: -4s; }
.blob--coral { width: 380px; height: 380px; background: var(--coral); bottom: -120px; left: 10%; animation-delay: -8s; }
.blob--gold  { width: 320px; height: 320px; background: var(--gold);  bottom: 20%; right: 20%; animation-delay: -12s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,25px) scale(.95); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 100px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px rgba(229,38,122,.35); }
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px rgba(229,38,122,.45); filter: saturate(1.1); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--teal-d); border: 2px solid rgba(20,184,166,.25); backdrop-filter: blur(6px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--teal); }
.btn--full { width: 100%; }

.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--magenta);
  background: rgba(236,72,153,.1); padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.eyebrow--center { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); font-weight: 400; }

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255,250,244,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35,62,59,.06);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,250,244,.92); }
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.nav__brand-text { font-family: 'Pacifico', cursive; font-size: 1.05rem; line-height: 1; color: var(--teal-d); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; }
.nav__links a { position: relative; transition: color .2s; }
.nav__links a:not(.nav__cta):hover { color: var(--magenta); }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--grad); transition: width .25s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--grad); color: #fff !important; padding: .6rem 1.3rem; border-radius: 100px; box-shadow: 0 8px 18px rgba(229,38,122,.3); }
.nav__cta:hover { transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--ink); transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem,4vw,2.5rem) 3rem; max-width: var(--maxw); margin: 0 auto; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.3rem); margin: .4rem 0 1.1rem; }
.hero__sub { font-size: clamp(1.02rem,1.6vw,1.2rem); color: var(--muted); max-width: 34ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }
.hero__stats { display: flex; gap: clamp(1.2rem,3vw,2.6rem); flex-wrap: wrap; }
.hero__stats strong { display: block; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stats span { font-size: .85rem; color: var(--muted); }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__logo { width: min(100%, 460px); border-radius: 30px; animation: bob 6s ease-in-out infinite; }
.hero__logo-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--grad); filter: blur(60px); opacity: .45; animation: pulse 5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{ transform: translateY(-16px) rotate(1deg);} }
@keyframes pulse { 0%,100%{ transform: scale(.95); opacity:.4;} 50%{ transform: scale(1.08); opacity:.6;} }

.scroll-hint { position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(35,62,59,.25); border-radius: 100px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-hint span { width: 5px; height: 9px; border-radius: 5px; background: var(--magenta); animation: scrolly 1.6s ease-in-out infinite; }
@keyframes scrolly { 0%{ transform: translateY(0); opacity:1;} 70%{ transform: translateY(14px); opacity:0;} 100%{opacity:0;} }

/* ===== Marquee ===== */
.marquee { overflow: hidden; padding: 1rem 0; background: var(--grad); margin: 1rem 0 0; }
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: scrollx 26s linear infinite; }
.marquee__track span { color: #fff; font-weight: 700; font-size: 1.1rem; white-space: nowrap; opacity: .95; }
@keyframes scrollx { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem,8vw,6rem) clamp(1rem,4vw,2.5rem); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem,5vw,3.4rem); }
.section__head h2 { font-size: clamp(1.9rem,4vw,2.9rem); margin-bottom: .8rem; }
.section__head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Class cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.4rem; }
@media (max-width: 920px) { .cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(35,62,59,.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 1.9rem; margin-bottom: 1.1rem; }
.card__icon--teal  { background: rgba(20,184,166,.14); }
.card__icon--pink  { background: rgba(236,72,153,.14); }
.card__icon--coral { background: rgba(249,115,22,.14); }
.card__icon--gold  { background: rgba(251,191,36,.18); }
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card__list { list-style: none; display: grid; gap: .4rem; margin-bottom: 1.2rem; }
.card__list li { font-size: .88rem; color: var(--ink); padding-left: 1.4rem; position: relative; }
.card__list li::before { content:'✦'; position:absolute; left:0; color: var(--magenta); }
.card__price { display: block; text-align: right; font-weight: 700; color: var(--teal-d); font-size: .82rem; margin-bottom: .8rem; }
.card__badge { display: inline-block; background: rgba(229,38,122,.12); color: var(--magenta); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 100px; margin-bottom: .5rem; }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about__art { position: relative; width: 100%; aspect-ratio: 1; max-width: 420px; margin: 0 auto; }
.about__frame { position: absolute; border-radius: 26px; overflow: hidden; display: grid; place-items: center; font-size: clamp(2.5rem,6vw,4rem); box-shadow: var(--shadow); animation: bob 6s ease-in-out infinite; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__frame--1 { inset: 0 45% 45% 0; background: linear-gradient(135deg,#14b8a6,#0ea5e9); }
.about__frame--2 { inset: 0 0 45% 45%; background: linear-gradient(135deg,#ec4899,#f43f5e); animation-delay: -1.5s; }
.about__frame--3 { inset: 45% 45% 0 0; background: linear-gradient(135deg,#f97316,#fbbf24); animation-delay: -3s; }
.about__frame--4 { inset: 45% 0 0 45%; background: linear-gradient(135deg,#8b5cf6,#ec4899); animation-delay: -4.5s; }
.about__copy h2 { font-size: clamp(1.8rem,4vw,2.7rem); margin-bottom: 1rem; }
.about__copy p { color: var(--muted); margin-bottom: 1rem; }
.about__perks { list-style: none; display: grid; gap: .55rem; margin: 1.4rem 0 1.8rem; }
.about__perks li { font-weight: 500; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; }
.gallery__tile {
  aspect-ratio: 1; border-radius: 20px; background: var(--g); display: grid; place-items: center;
  font-size: clamp(2.4rem,5vw,3.4rem); box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s; position: relative; overflow: hidden;
}
.gallery__tile::after { content:''; position:absolute; inset:0; background: rgba(255,255,255,0); transition: background .3s; pointer-events: none; }
.gallery__tile:hover { transform: scale(1.05) rotate(-2deg); box-shadow: var(--shadow-lg); }
.gallery__tile:hover::after { background: rgba(255,255,255,.12); }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Reviews ===== */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.4rem; }
.review { background: var(--paper); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(35,62,59,.05); transition: transform .3s var(--ease); }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review__stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: .8rem; }
.review blockquote { font-size: 1.02rem; color: var(--ink); margin-bottom: 1.2rem; }
.review figcaption { display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .92rem; color: var(--muted); }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; }

/* ===== CTA ===== */
.cta__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem);
  background: var(--paper); border-radius: 30px; padding: clamp(2rem,5vw,3.5rem);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(35,62,59,.05); position: relative; overflow: hidden;
}
.cta__card::before { content:''; position:absolute; top:-60px; right:-60px; width: 220px; height: 220px; background: var(--grad); border-radius: 50%; filter: blur(40px); opacity: .25; }
.cta__copy h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: .8rem; }
.cta__copy > p { color: var(--muted); margin-bottom: 1.6rem; }
.cta__contacts { list-style: none; display: grid; gap: .7rem; font-weight: 500; }
.cta__contacts a:hover { color: var(--magenta); }

.cta__form { display: grid; gap: 1rem; position: relative; z-index: 1; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .98rem; padding: .8rem 1rem; border-radius: 14px;
  border: 2px solid rgba(35,62,59,.12); background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s; resize: vertical;
  width: 100%; min-width: 0; box-sizing: border-box; /* shrink inside grid/flex (Safari) */
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.12); }
.form__note { text-align: center; font-weight: 600; color: var(--teal-d); background: rgba(20,184,166,.1); padding: .8rem; border-radius: 14px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #d9e6e4; margin-top: 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem,6vw,4rem) clamp(1rem,4vw,2.5rem) 2rem; display: grid; grid-template-columns: 1.3fr 2fr; gap: 2.5rem; }
.footer__brand img { width: 60px; border-radius: 14px; margin-bottom: 1rem; }
.footer__brand p { font-size: .95rem; opacity: .8; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.footer__cols h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer__cols a { display: block; font-size: .92rem; opacity: .78; margin-bottom: .5rem; transition: opacity .2s, color .2s; }
.footer__cols a:hover { opacity: 1; color: var(--gold); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); max-width: var(--maxw); margin: 0 auto; padding: 1.3rem clamp(1rem,4vw,2.5rem); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .86rem; opacity: .85; }
.footer__social { display: flex; gap: 1rem; font-size: 1.2rem; }
.footer__social a { transition: transform .2s; }
.footer__social a:hover { transform: translateY(-3px) scale(1.15); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .about__grid { grid-template-columns: 1fr; }
  .about__art { order: -1; }
  .cta__card { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }

  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 1.2rem;
    background: rgba(255,250,244,.98); backdrop-filter: blur(14px); padding: 2rem;
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   Booking flow additions — catalog, "how it works", modal
   =========================================================== */

.catalog__loading { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 2rem; }
/* Safety: keep button labels inside the pill even if a label runs long */
.card .btn--full { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

/* "How booking works" steps in the CTA card */
.cta__steps { position: relative; z-index: 1; }
.cta__steps-title { font-size: 1.15rem; margin-bottom: 1.1rem; }
.steps { list-style: none; display: grid; gap: 1rem; margin-bottom: 1.4rem; }
.steps li { display: flex; gap: .9rem; align-items: flex-start; }
.steps__num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(229,38,122,.3);
}
.steps li strong { display: block; }
.steps li p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ===== Modal ===== */
.bm { position: fixed; inset: 0; z-index: 100; display: none; }
.bm.open { display: block; }
.bm__backdrop { position: absolute; inset: 0; background: rgba(35,62,59,.45); backdrop-filter: blur(4px); animation: bmFade .25s ease; }
.bm__dialog {
  position: relative; z-index: 1; max-width: 460px; width: calc(100% - 2rem);
  margin: clamp(1rem, 6vh, 4rem) auto; max-height: 88vh; overflow: hidden;
  background: var(--paper); border-radius: 26px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: bmPop .3s var(--ease);
}
.bm__close {
  position: absolute; top: 12px; right: 14px; z-index: 2; width: 36px; height: 36px;
  border: none; border-radius: 50%; background: rgba(35,62,59,.08); color: var(--ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.bm__close:hover { background: rgba(229,38,122,.15); color: var(--magenta); }
.bm__head { padding: 1.6rem 1.8rem .4rem; }
.bm__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--magenta); }
.bm__head h3 { font-size: 1.5rem; margin-top: .25rem; }
.bm__body { padding: 1rem 1.8rem 1.9rem; overflow-y: auto; }
.bm__loading, .bm__empty { color: var(--muted); text-align: center; padding: 1.5rem 0; }
.bm__link { color: var(--magenta); font-weight: 600; }

.sessions-list { display: grid; gap: .7rem; }
.session {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; cursor: pointer;
  padding: .9rem 1.1rem; border-radius: 16px; border: 2px solid rgba(35,62,59,.1);
  background: var(--cream); font: inherit; color: var(--ink); transition: border-color .2s, transform .15s;
}
.session:hover:not(:disabled) { border-color: var(--teal); transform: translateY(-2px); }
.session--full, .session:disabled { opacity: .55; cursor: not-allowed; }
.session__when { font-weight: 600; }
.session__meta { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; }
.session__price { font-weight: 800; color: var(--teal-d); }
.session__seats { font-size: .8rem; color: var(--muted); }
.session--full .session__seats { color: var(--magenta); font-weight: 600; }

.bm__back { background: none; border: none; color: var(--muted); font: inherit; cursor: pointer; padding: 0 0 .6rem; }
.bm__back:hover { color: var(--magenta); }
.bm__session-pill {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: rgba(20,184,166,.1); border-radius: 14px; padding: .7rem 1rem; margin-bottom: 1rem; font-size: .92rem;
}
.bm__session-pill strong { color: var(--teal-d); }
#bmForm { display: grid; gap: .8rem; }
.bm__note { text-align: center; font-weight: 600; padding: .7rem; border-radius: 12px; margin: 0; }
.bm__note--error { background: rgba(229,38,122,.1); color: var(--magenta); }

.bm__consent {
  display: grid; gap: .55rem; margin: 0; padding: .9rem 1rem;
  border: 2px solid rgba(35,62,59,.1); border-radius: 16px; background: var(--cream);
}
.bm__consent legend {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--magenta); padding: 0 .35rem;
}
.bm__check { display: flex; align-items: center; gap: .6rem; font-size: .9rem; cursor: pointer; }
.bm__check input { width: 1.15rem; height: 1.15rem; accent-color: var(--teal); cursor: pointer; flex: none; }
.bm__consent-note { margin: .2rem 0 0; font-size: .78rem; color: var(--muted); line-height: 1.5; }

.bm__success { text-align: center; padding: 1rem 0 .5rem; }
.bm__success-emoji { font-size: 3rem; }
.bm__success h3 { font-size: 1.4rem; margin: .4rem 0 .6rem; }
.bm__success p { color: var(--muted); margin-bottom: 1.4rem; }

@keyframes bmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bmPop { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
