/* ===== Mela — v23 hero ===== */
:root {
  --green: #2F5B49;
  --terracotta: #E0724A;
  --gold: #E2B14A;
  --cream: #F5F1EA;
  --sage: #DCE4D6;
  --ink: #1F1F1F;
  --ink-soft: #4a4a45;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-brand: "Nunito", system-ui, sans-serif;  /* the "mela" wordmark — swappable via the brand picker */
  --font-brand-weight: 700;

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 1 auto; display: block; min-width: 0; }

a { color: inherit; text-decoration: none; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 5;
  padding: 26px 0 10px;
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 8px; }
.brand__mark { height: 34px; width: auto; display: block; }
.brand__name {
  font-family: var(--font-brand);
  font-size: 32px;
  font-weight: var(--font-brand-weight);
  color: var(--green);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 38px; }
.nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--terracotta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 28px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--cream); box-shadow: 0 8px 24px rgba(31,31,31,.18); }
.btn--dark:hover { box-shadow: 0 12px 30px rgba(31,31,31,.26); }
.btn--terracotta { background: var(--terracotta); color: #fff; box-shadow: 0 8px 24px rgba(224,114,74,.28); }
.btn--green { background: var(--green); color: var(--cream); box-shadow: 0 8px 24px rgba(47,91,73,.24); }
.btn--green:hover { box-shadow: 0 12px 30px rgba(47,91,73,.32); }
.btn .arrow { font-size: 17px; line-height: 0; }
.btn__text--short { display: none; }  /* shown in place of the full label on phones */

.link-underline {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--ink);
  transition: color .2s ease, border-color .2s ease;
}
.link-underline:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- Hero: arch-pinned split layout ----------
   The artwork is anchored by its ARCH, not its edges: it's absolutely positioned,
   sized by height only (width follows aspect ratio), and shifted so the arch's
   left edge lands on the --split line. The copy overlays the left portion (stairs
   run underneath it) and can never reach the arch. Narrowing clips the RIGHT side
   only (clay shape → plant → arch); the stairs on the left are never clipped.
   See hero-layout-spec.md. */
.hero {
  position: relative;
  overflow: hidden;          /* clips both spills — MUST be on the outer element */
  background: var(--cream);  /* arch art has a transparent background now, so it melds straight into the page */

  /* Tuning knobs — adjust here, never hardcode elsewhere */
  --arch-left-frac: 32.55%;  /* MEASURED: frame left edge 500px / 1536px img width (portal.png is 1536×1024) */
  --split: 58%;              /* the copy / arch boundary line */
  --copy-cap: 30rem;         /* max reading width of the copy column */
}

.hero__inner {
  position: relative;        /* centering container — copy AND art live inside it */
  max-width: var(--maxw);
  margin-inline: auto;
  height: min(calc(100svh - 88px), 52rem);  /* sole control of artwork size */
  min-height: 34rem;
}

/* The copy overlays the art. No background — the artwork shows through around it.
   Width derives from the same --split as the arch anchor, so the two move in
   lockstep and the copy can never touch the arch. */
.hero__copy {
  position: relative;        /* stacks above the absolutely-positioned art */
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  width: min(var(--copy-cap), calc(var(--split) - 2%));
  padding: clamp(24px, 6vh, 72px) clamp(16px, 3vw, 56px) clamp(24px, 6vh, 72px) clamp(24px, 4vw, 72px);
  box-sizing: border-box;
}
.hero__copy-inner { max-width: 460px; }

/* Artwork — anchored by the arch.
   The arch is now a two-layer frame: a masked photo sits BEHIND the arch PNG,
   revealed only through the arch's interior opening. Both layers fill the same
   box (portal.png is 1536×1024), so they align automatically. */
.hero__arch {
  position: absolute;
  top: 0;
  left: var(--split);
  transform: translateX(calc(-1 * var(--arch-left-frac)));
  height: 100%;              /* artwork scale is driven by hero height alone */
  aspect-ratio: 1536 / 1024; /* matches portal.png — width follows height */
  /* No z-index here on purpose: a stacking context would trap .portal-next below
     the copy overlay (z-index:1) and eat its clicks. Left as auto, the children's
     own z-indexes compete in the hero, so the arrow (z-index:3) stays clickable. */
  user-select: none;
  pointer-events: none;
}
/* The arch frame — sits ABOVE the photo so its inner rim overlaps the photo edge. */
.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;           /* overrides any global img { max-width } reset */
  z-index: 1;
  display: block;
}
/* The inserted photo — clipped to the arch's interior opening via portal-mask.png,
   which is derived from the portal art itself, so the cut follows the arch exactly. */
.hero__arch-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask: url(assets/portal-mask.png) center / 100% 100% no-repeat;
          mask: url(assets/portal-mask.png) center / 100% 100% no-repeat;
}
/* Crossfade carousel behind the mask: all slides are stacked in the same box and
   the mask on .hero__arch-photo clips them to the arch opening. Only the active
   slide is opaque; advancing fades the next one in on top of the current (a
   dissolve). Auto-advance is driven by JS toggling .is-active. */
.portal-stack {
  position: absolute;
  inset: 0;
}
.portal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
}
.portal-slide.is-active {
  opacity: 1;
  z-index: 2;                 /* incoming slide fades in on top of everything */
  transition: opacity 1.1s ease;
}
/* The outgoing slide is held fully opaque one layer below while the incoming one
   fades in over it — so the dissolve never reveals the page behind the images. */
.portal-slide.is-leaving {
  opacity: 1;
  z-index: 1;
}
.portal-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;         /* fills the opening; crop, never distort */
  display: block;
}
/* On mobile the arch clips its right edge, hiding the most interesting part of the
   photos — so mirror them there only, moving that content to the visible left. The
   desktop layout keeps the original orientation. */
@media (max-width: 640px) {
  .portal-slide img { transform: scaleX(-1); }
  /* balloons is already composed with its subject on the left, so leave it unflipped */
  .portal-slide img[src*="balloons"] { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .portal-slide.is-active { transition: none; }
}

/* Subtle "next" button, just to the right of the portal, centred on the opening. */
.portal-next {
  position: absolute;
  top: 43%;
  left: 74%;
  transform: translate(-50%, -50%);
  z-index: 3;                /* above the arch frame AND the copy overlay (z-index:1) */
  pointer-events: auto;      /* re-enable clicks (the arch wrapper disables them) */
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: rgba(245, 241, 234, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink-soft);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.portal-next:hover {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.14);
}
.portal-next:active { transform: translate(-50%, -50%) scale(0.94); }
.portal-next svg { width: 20px; height: 20px; display: block; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 26px;
}
.eyebrow::after {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 6vw, 68px);   /* scales down as the copy column narrows */
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(18px, 3vh, 28px);
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__lede {
  font-size: clamp(14px, 2.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 clamp(24px, 4vh, 40px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---------- Scroll cue ---------- */
.hero__scroll {
  position: fixed;           /* pinned to the bottom of the viewport, not the hero box */
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: block;
  color: rgba(31, 31, 31, 0.28);   /* discreet — barely-there hint, not a solid dark cue */
  transition: color 0.2s ease;     /* opacity is driven per-frame by JS as the page scrolls */
}
.hero__scroll:hover { color: rgba(31, 31, 31, 0.5); }
.hero__scroll-chevron {
  display: block;
  width: 24px;
  height: 24px;
  animation: hero-scroll-bob 1.8s ease-in-out infinite;
}
.hero__scroll-chevron svg { width: 100%; height: 100%; display: block; }

@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-chevron { animation: none; }
}

/* ---------- Responsive ----------
   The hero composition itself does NOT change by breakpoint — the arch-pinned
   split holds at every width (copy narrows and type scales via clamp; the art
   clips on the right). These queries only tidy the header/chrome. */
@media (max-width: 860px) {
  .shell { padding: 0 24px; }
  .nav__links { display: none; }
}

@media (max-width: 560px) {
  .hero__copy-inner { max-width: none; }
  /* keep the header button from overflowing on phones */
  .site-header { padding-top: 18px; }
  .site-header .shell { gap: 12px; }
  .site-header .btn { padding: 11px 18px; font-size: 14px; }
  .brand__name { font-size: 26px; }
  /* the narrow hero column wraps "Join the Waitlist" onto two lines; use the
     shorter label there and keep it on one line */
  .hero__actions .btn { white-space: nowrap; }
  .hero__actions .btn__text--full { display: none; }
  .hero__actions .btn__text--short { display: inline; }
}

@media (max-width: 520px) {
  .hero__actions { gap: 18px; }
  .btn { width: auto; }
}

/* ---------- Philosophy / Values page ---------- */
.values { padding: 128px 0 112px; }
.values .shell { max-width: 1120px; }

.values__intro { text-align: center; max-width: 720px; margin: 0 auto 88px; }
.values__sprout {
  display: block;
  width: 132px;              /* wide ribbon flourish (~3.6:1) — height follows */
  height: auto;
  margin: 0 auto 24px;
}

.values__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 46px);   /* capped so it stops growing on wide screens and
                                          the first line never wraps inside the intro */
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
/* "Your community. Your Mission." stays on one line normally; on narrow screens the
   break kicks in so it splits cleanly at the period instead of wrapping mid-phrase. */
.values__break { display: none; }
@media (max-width: 640px) {
  .values__break { display: inline; }
}
.values__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 64px;
}
.value { text-align: center; }
.value__art {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.value__art img { max-width: 100%; max-height: 100%; display: block; }
.value__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}
.value__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 230px;
}

.values__tagline {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 0 0 34px;
}

.values__badges {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(31,31,31,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1 1 0;
  position: relative;
}
.badge + .badge::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(31,31,31,.12);
}
.badge__icon { color: var(--green); flex: none; }
.badge__icon svg { width: 24px; height: 24px; display: block; }

@media (max-width: 860px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .values__badges { flex-wrap: wrap; }
  .badge { flex: 1 1 45%; }
  .badge:nth-child(3)::before { display: none; }
}

@media (max-width: 520px) {
  .values__grid { grid-template-columns: 1fr; }
  .values__badges { flex-direction: column; gap: 16px; }
  .badge { flex: 1 1 auto; }
  .badge + .badge::before { display: none; }
}

/* ---------- Community of communities ---------- */
.network { padding: 96px 0 112px; }
.network__grid {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.network__copy { flex: 0 1 420px; }
.network__art { flex: 1 1 0; min-width: 0; }
.network__art img { width: 100%; height: auto; display: block; }

.network__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.network__title em {
  font-style: italic;
  color: var(--terracotta);
}
.network__rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 0 32px;
}
.network__lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 380px;
}
.network__lede:last-child { margin-bottom: 0; }
.network__lede--accent { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .network { padding: 72px 0 80px; }
  .network__grid { flex-direction: column; align-items: flex-start; gap: 40px; }
  .network__copy { flex: 1 1 auto; }
  .network__art { width: 100%; }
  .network__lede { max-width: none; }
}

/* ---------- Dev-only heading font selector (v24) ---------- */
.fontpicker {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: var(--font-body);
}
.fontpicker__toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: rgba(245, 241, 234, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink-soft);
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fontpicker__toggle:hover,
.fontpicker.is-open .fontpicker__toggle {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.14);
}
.fontpicker.is-open .fontpicker__toggle { transform: translateY(-1px); }

.fontpicker__panel {
  min-width: 210px;
  max-height: min(70vh, 620px);   /* combined list is long — scroll if it won't fit */
  overflow-y: auto;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(31, 31, 31, 0.1);
  box-shadow: 0 12px 34px rgba(31, 31, 31, 0.16);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.fontpicker.is-open .fontpicker__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fontpicker__label {
  margin: 4px 10px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}
.fontpicker__opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  transition: background 0.14s ease;
}
.fontpicker__opt:hover { background: rgba(31, 31, 31, 0.06); }
.fontpicker__opt[aria-checked="true"] {
  background: rgba(224, 114, 74, 0.12);
  color: var(--terracotta);
}

/* Section headers separating the two font lists inside the combined picker panel */
.fontpicker__group {
  margin: 12px 10px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.8;
}
.fontpicker__group:first-of-type { margin-top: 2px; }

@media print { .fontpicker { display: none; } }

/* ---------- Coming soon ---------- */
.coming { padding: 128px 0; }  /* same cream page background as the other sections */
.coming .shell { max-width: 960px; text-align: center; }
.coming__flourish {
  display: block;
  width: 200px;              /* long, stretched-out ribbon — noticeably wider than the 132px values flourish */
  height: auto;
  margin: 0 auto 28px;
}
.coming__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 64px;
}
.coming__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.coming__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.coming__heading {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  color: var(--green);
  margin: 0 0 14px;
}
.coming__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 32ch;
}
.coming__card .btn { margin-top: auto; }
@media (max-width: 640px) {
  .coming { padding: 88px 0; }
  .coming__grid { grid-template-columns: 1fr; gap: 44px; }
  .coming__title { margin-bottom: 48px; }
}

/* ---------- Waitlist modal ---------- */
.waitlist[hidden] { display: none; }
.waitlist {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.waitlist__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.55);
  backdrop-filter: blur(2px);
  animation: waitlist-fade 0.2s ease;
}
.waitlist__dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(31, 31, 31, 0.35);
  animation: waitlist-rise 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.waitlist__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.waitlist__close:hover { background: rgba(31, 31, 31, 0.08); color: var(--ink); }
.waitlist__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
  color: var(--green);
  margin: 0 0 8px;
}
.waitlist__intro {
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.5;
}
/* Honeypot spam trap: kept in the DOM (so bots fill it) but off-screen for people. */
.hp {
  position: absolute !important;
  left: -5000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field { display: block; margin-bottom: 16px; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field__input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 13px;
  background: #fff;
  border: 1px solid #d8d2c6;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 73, 0.15);
}
.field__textarea { resize: vertical; min-height: 96px; }
.waitlist__submit { width: 100%; justify-content: center; margin-top: 6px; }
.waitlist__submit[disabled] { opacity: 0.6; cursor: default; transform: none; }
.waitlist__error {
  color: var(--terracotta);
  font-size: 13.5px;
  margin: 10px 0 0;
  min-height: 1em;
}
.waitlist__success { text-align: center; padding: 12px 0 4px; }
.waitlist__success .btn { margin-top: 8px; }
body.waitlist-open { overflow: hidden; }
@keyframes waitlist-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes waitlist-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
