/* ============================================================
   Kupefinanz — Foundational Tokens
   Color, type, spacing, radii, shadows, motion.
   Import this once in every page; everything else builds on it.
   ============================================================ */



:root {

  /* ---------- COLOR — Brand gold ---------- */
  /* Anchor gold #9a7705. Sibling tones built around it for hover, light-fill,
     metallic-shimmer gradient. Use sparingly — luxury restraint, not gold-everywhere. */
  --gold-50:  #fbf7ee;
  --gold-100: #f4e3c0;
  --gold-200: #ebcb83;
  --gold-300: #e0b058;
  --gold-400: #c8923a;
  --gold-500: #a86f24;
  --gold-600: #8a591a;
  --gold-700: #604018;
  --gold-800: #3c260e;
  --gold-900: #241706;

  /* Metallic gradient — used on key CTAs, dividers, seals.
     Reads as polished gold leaf rather than flat color. */
  --gold-gradient:
    linear-gradient(135deg,
      #f7d889 0%,
      #e0b058 24%,
      #b7802e 52%,
      #704818 78%,
      #3c260e 100%);
  --gold-gradient-soft:
    linear-gradient(135deg, #f7d889 0%, #c8923a 60%, #8a591a 100%);
  --gold-gradient-line:
    linear-gradient(90deg, transparent 0%, #a86f24 20%, #f7d889 50%, #a86f24 80%, transparent 100%);

  /* ---------- COLOR — Neutrals ---------- */
  --ink-900: #001020;
  --ink-700: #16202b;
  --ink-500: #5d6370;
  --ink-300: #9a9a9a;    /* placeholder, disabled */
  --ink-200: #c8c8c8;    /* hairlines */
  --ink-100: #ececec;    /* dividers */
  --ink-50:  #f4f2ee;

  --surface:        #ffffff;  /* global background */
  --surface-warm:   #f3f1ed;
  --surface-deep:   #000816;
  --surface-deep-2: #001020;

  /* ---------- COLOR — Semantic ---------- */
  --fg:          var(--ink-900);
  --fg-muted:    var(--ink-700);
  --fg-soft:     var(--ink-500);
  --fg-inverse:  #ffffff;
  --bg:          var(--surface);
  --bg-muted:    var(--ink-50);
  --bg-dark:     var(--surface-deep);
  --border:      var(--ink-100);
  --border-strong: var(--ink-200);
  --accent:      var(--gold-500);
  --accent-hover:var(--gold-600);
  --accent-soft: var(--gold-50);

  /* ---------- TYPE — Families ---------- */
  --font-sans:    'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  /* ---------- TYPE — Fluid scale (modular 1.250) ---------- */
  --fs-xs:   0.75rem;     /* 12 — eyebrow caps */
  --fs-sm:   0.875rem;    /* 14 */
  --fs-base: 1rem;        /* 16 — body small */
  --fs-md:   1.125rem;    /* 18 — body */
  --fs-lg:   1.375rem;    /* 22 — lead */
  --fs-xl:   1.75rem;     /* 28 — h4 */
  --fs-2xl:  2.25rem;     /* 36 — h3 */
  --fs-3xl:  3rem;        /* 48 — h2 */
  --fs-4xl:  clamp(3rem, 5vw + 1rem, 4.5rem);    /* 48 → 72 */
  --fs-5xl:  clamp(3.5rem, 7vw + 1rem, 6.5rem);  /* 56 → 104 hero */

  /* ---------- TYPE — Weights ---------- */
  --fw-thin: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ---------- TYPE — Tracking ---------- */
  --tracking-tight:  0;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;    /* nav, buttons */
  --tracking-caps:   0.22em;    /* eyebrow ALL CAPS */

  /* ---------- TYPE — Leading ---------- */
  --lh-tight: 1.05;
  --lh-snug:  1.2;
  --lh-base:  1.55;
  --lh-loose: 1.75;

  /* ---------- SPACING (8-pt baseline) ---------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
  --sp-11: 160px;

  --section-y: clamp(72px, 10vw, 144px);  /* vertical rhythm between sections */
  --container: 1320px;
  --gutter:    clamp(20px, 4vw, 56px);

  /* ---------- RADIUS — restrained, classic ---------- */
  --r-0: 0;
  --r-1: 2px;     /* default — sharp, luxury */
  --r-2: 4px;     /* small chips */
  --r-pill: 999px;

  /* ---------- BORDERS ---------- */
  --hairline: 1px solid var(--border);
  --hairline-strong: 1px solid var(--border-strong);
  --rule-gold: 1px solid var(--gold-500);

  /* ---------- SHADOW — soft, ambient only ---------- */
  --shadow-1: 0 1px 2px rgba(20, 16, 8, 0.04), 0 1px 1px rgba(20, 16, 8, 0.03);
  --shadow-2: 0 4px 16px rgba(20, 16, 8, 0.06), 0 1px 3px rgba(20, 16, 8, 0.04);
  --shadow-3: 0 12px 40px rgba(20, 16, 8, 0.08), 0 2px 8px rgba(20, 16, 8, 0.04);
  --shadow-gold: 0 8px 32px rgba(154, 119, 5, 0.18);

  /* ---------- MOTION ---------- */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);
  --dur-fast:    180ms;
  --dur-base:    320ms;
  --dur-slow:    600ms;

  /* ---------- LAYOUT helpers ---------- */
  --nav-h: 84px;
}

/* ============================================================
   Reset (light-touch — preserves bold-headline feel)
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font-family: var(--font-sans); }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
em, i, cite, blockquote { font-family: var(--font-sans); font-style: normal; }

/* ============================================================
   SEMANTIC TYPE TOKENS
   Use these classes (or the raw vars in a custom rule).
   ============================================================ */

.eyebrow,
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.t-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-500);
  display: inline-block;
}
/* Centred eyebrow with a short rule on BOTH sides (Maven “— WHAT WE DO —”) */
.eyebrow-center {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.t-display {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--ink-900);
}
.t-h1 {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.0;
  color: var(--ink-900);
}
.t-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--ink-900);
}
.t-h3 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--ink-900);
}
.t-h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--ink-900);
}
.t-lead {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  line-height: 1.5;
  color: var(--ink-700);
}
.t-body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--ink-700);
}
.t-small {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-500);
}
.t-meta {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-500);
}
/* Accent word inside a heavy headline — gold colour, same weight (NOT italic).
   Pair with a gold period via .gold-dot for the Maven-style headline accent. */
.t-italic-accent {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: inherit;
  color: var(--gold-600);
  letter-spacing: inherit;
}
.gold-dot { color: var(--gold-500); }
.t-numeral {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.01em;
}

/* Gold-fill text — for hero accent words. Use with sparingly. */
.t-gold-fill {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-warm { background: var(--surface-warm); }
.section-dark { background: var(--surface-deep); color: var(--fg-inverse); }
.section-dark .t-h1,
.section-dark .t-h2,
.section-dark .t-h3,
.section-dark .t-display { color: #fff; }
.section-dark .t-body  { color: rgba(255,255,255,0.78); }
.section-dark .t-lead  { color: rgba(255,255,255,0.88); }

.divider-gold {
  display: block;
  height: 1px;
  background: var(--gold-gradient-line);
  border: 0;
  width: 100%;
}


/* ============================================================
   Kupefinanz — Component Styles
   Buttons, forms, cards, navigation, footer, etc.
   Requires colors_and_type.css to be loaded first.
   ============================================================ */

/* ---------------- BUTTONS ---------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 10px;
  min-height: 44px;
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--r-1);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Primary — solid flat gold (Maven headline CTA) */
.btn-primary {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
  letter-spacing: var(--tracking-wide);
}
.btn-primary:hover { background: var(--gold-700); border-color: var(--gold-700); }

/* Gold — same flat solid gold, the headline CTA */
.btn-gold {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); }

/* Dark — solid charcoal alternative */
.btn-dark {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}
.btn-dark:hover { background: var(--gold-600); border-color: var(--gold-600); }

/* Outline — frame-only, for secondary actions next to primary */
.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn-outline:hover { background: var(--ink-900); color: #fff; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-700);
  border-color: var(--gold-500);
}
.btn-outline-gold:hover { background: var(--gold-500); color: #fff; border-color: var(--gold-500); }

/* ---------------- GOLD LINE ICONS (Lucide) ---------------- */
.ico-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}
.ico-line svg { width: 32px; height: 32px; stroke-width: 1.5; }
[data-lucide] { color: var(--gold-500); }
.ico-lg svg { width: 44px; height: 44px; }
.ico-sm svg { width: 22px; height: 22px; }
.section-dark .ico-line,
.section-dark [data-lucide] { color: var(--gold-300); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }

/* Ghost — pure text link with animated underline */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.btn-link:hover { color: var(--gold-600); border-bottom-color: var(--gold-500); }
.btn-link .arrow { transition: transform var(--dur-base); }
.btn-link:hover .arrow { transform: translateX(4px); }

.btn-sm { padding: 12px 22px; font-size: var(--fs-xs); }
.btn-lg { padding: 22px 40px; font-size: var(--fs-base); }

/* ---------------- FORM ---------------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-700);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-1);
  padding: 16px 18px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(154, 119, 5, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------------- CARDS ---------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
.card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-2);
}
.card-feature {
  position: relative;
  padding: 40px 36px;
  background: #fff;
  border-top: 1px solid var(--ink-100);
}
.card-feature::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 64px; height: 2px;
  background: var(--gold-gradient);
  transition: width var(--dur-slow) var(--ease-out);
}
.card-feature:hover::before { width: 100%; }
.card-feature .num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: var(--fs-3xl);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.02em;
  color: var(--gold-500);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

/* Property/portfolio tile */
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-50);
}
.tile-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.tile:hover .tile-img { transform: scale(1.04); }
.tile-meta {
  padding: 28px 4px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  row-gap: 8px;
  align-items: baseline;
}
.tile-meta h3 {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
  align-self: start;
}
.tile-meta .place {
  grid-column: 1;
  grid-row: 2;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0;
}
.tile-meta .amount {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-xl);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.005em;
  color: var(--gold-600);
  white-space: nowrap;
}

/* ---------------- NAVIGATION ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,8,22,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(224, 176, 88, 0.18);
  box-shadow: 0 14px 40px rgba(0, 8, 22, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-900);
  font-size: var(--fs-md);
  line-height: 0;
}
.nav-logo__image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-logo__image--wordmark,
.nav-logo__image--header {
  width: clamp(230px, 18vw, 350px);
  height: auto;
  max-height: 72px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}
.nav-logo__image--full {
  width: 168px;
  height: auto;
}
.nav-logo .mark {
  width: 46px; height: 46px;
  background-image: url("../kupefinanz/assets/kupe-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav-logo .logo-text .lt-main { font-weight: 800; font-size: 17px; letter-spacing: 0.16em; }
.nav-logo .logo-text .lt-sub { font-weight: 500; font-size: 8.5px; letter-spacing: 0.24em; color: var(--gold-600); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.74);
  min-height: 44px;
  min-width: 44px;
  padding: 0 4px;
  white-space: nowrap;
  transition: color var(--dur-base);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; gap: 12px; align-items: center; }

.kupe-mobile-toggle,
.kupe-mobile-menu {
  display: none;
}

/* ---------------- FOOTER ---------------- */
.footer {
  background: var(--surface-deep);
  color: rgba(255,255,255,0.72);
  padding: 96px 0 32px;
  border-top: 1px solid rgba(224, 176, 88, 0.18);
}
.footer .nav-logo .mark { background-image: url("../kupefinanz/assets/kupe-mark-light.png"); }
.footer .nav-logo { color: #fff; }
.footer .nav-logo__image--full { width: 208px; max-width: 100%; }
.footer .nav-logo .logo-text .lt-sub { color: var(--gold-300); }
.footer h4 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 24px;
}
.footer a {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-sm);
  display: block;
  padding: 4px 0;
  transition: color var(--dur-base);
}
.footer a:hover { color: var(--gold-300); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------- BADGES / CHIPS ---------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid var(--gold-300);
  color: var(--gold-700);
  background: var(--gold-50);
  border-radius: var(--r-pill);
}
.chip-dark {
  background: rgba(255,255,255,0.06);
  color: var(--gold-300);
  border-color: rgba(228, 204, 138, 0.3);
}

/* ---------------- SEAL (decorative gold mark) ---------------- */
.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-700);
  position: relative;
}
.seal::before, .seal::after {
  content: "";
  position: absolute;
  width: 72px; height: 72px;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
}
.seal::after { width: 64px; height: 64px; border-color: var(--gold-200); }

/* ---------------- ANIMATION UTILITIES ---------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fadeup { animation: fadeUp 800ms var(--ease-out) both; }
.anim-delay-1 { animation-delay: 100ms; }
.anim-delay-2 { animation-delay: 220ms; }
.anim-delay-3 { animation-delay: 340ms; }
.anim-delay-4 { animation-delay: 460ms; }
