/* ─────────────────────────────────────────────────────────
   Stichting De Gelukkige Klas — shared styles
   Brand: Christina Pfeifer huisstijl
   Type: Poppins only · Palette: 8 swatches, no inventions
   ───────────────────────────────────────────────────────── */

:root {
  /* palette — 8 swatches, read from the brand-guide PDF */
  --c1-wine:        #5C1517;   /* oxblood — body text accent, dark sections */
  --c2-mustard:     #E8B83A;   /* warm saturated yellow */
  --c3-lemon:       #FBE700;   /* DOMINANT brand colour */
  --c4-cyan:        #2BB6E8;   /* bright sky */
  --c5-pastel-blue: #C2DEEC;   /* gentle background */
  --c6-pink:        #E58FA8;   /* mid rose */
  --c7-pastel-pink: #F5D2DC;   /* gentle background */
  --c8-smile:       #E3232B;   /* the smile-mouth red — accents only */

  /* neutrals */
  --paper:          #FBF8F1;   /* subtly warm off-white */
  --ink:            #0F0F0F;
  --ink-soft:       #2A2A2A;

  /* type scale (mobile first) */
  --fs-display:     clamp(48px, 11vw, 132px);
  --fs-h1:          clamp(36px, 7vw, 72px);
  --fs-h2:          clamp(28px, 4.6vw, 48px);
  --fs-h3:          clamp(22px, 2.8vw, 30px);
  --fs-lead:        clamp(18px, 2.2vw, 22px);
  --fs-body:        17px;
  --fs-small:       14px;

  /* layout */
  --pad-x:          20px;
  --col-read:       680px;
  --col-wide:       1180px;
  --radius-pill:    999px;
}

@media (min-width: 768px) {
  :root { --pad-x: 40px; --fs-body: 18px; }
}
@media (min-width: 1280px) {
  :root { --pad-x: 64px; }
}

/* ─────────────────────────────────────────────────────────
   Reset / base
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }

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

/* ─────────────────────────────────────────────────────────
   Header — full nav bar at every breakpoint, no hamburger
   ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  flex-wrap: wrap;
  row-gap: 8px;
}
.site-header__logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  /* logo image height tuned for header — keeps wordmark legible at small scale */
  flex-shrink: 0;
}
.site-header__logo img {
  height: 56px; width: auto; display: block;
}
@media (min-width: 768px) {
  .site-header__logo img { height: 64px; }
}
@media (min-width: 1280px) {
  .site-header__logo img { height: 72px; }
}

/* nav appears on every breakpoint — wraps below logo on tight mobile */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px 22px;
  font-weight: 500; font-size: 15px;
  order: 3; /* on mobile push nav to second row */
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin-top: 4px;
  border-top: 1px solid rgba(15,15,15,0.06);
  padding-top: 12px;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav a:hover { color: var(--c1-wine); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--c8-smile);
}
@media (min-width: 1024px) {
  /* on desktop nav sits inline between logo and actions */
  .site-nav {
    order: 0;
    width: auto;
    margin: 0;
    padding: 0;
    border-top: 0;
    gap: 26px;
    overflow: visible;
  }
  .site-nav a[aria-current="page"]::after { bottom: -4px; height: 4px; }
}

.site-header__actions {
  display: flex; align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .site-header__actions { gap: 10px; } }

.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500;
  padding: 6px 8px;
}
.lang-switch span[aria-current] { font-weight: 600; }
.lang-switch span:not([aria-current]) { color: rgba(15,15,15,0.45); }
.lang-switch span:not([aria-current]):hover { color: var(--ink); cursor: pointer; }

.cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c3-lemon);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  transition: transform .15s ease;
  white-space: nowrap;
}
@media (min-width: 768px) { .cta-pill { font-size: 15px; padding: 11px 22px; } }
.cta-pill:hover { transform: translateY(-2px); }
.cta-pill--black { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta-pill--wine  { background: var(--c1-wine); color: var(--paper); border-color: var(--c1-wine); }
.cta-pill--ghost { background: transparent; }

/* ─────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c3-lemon);
  color: var(--ink);
  padding: 64px var(--pad-x) 48px;
  margin-top: 0;
}
.site-footer__inner { max-width: var(--col-wide); margin: 0 auto; }
.site-footer__wordmark { width: clamp(220px, 38vw, 360px); margin-bottom: 40px; }
.site-footer__cols { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__cols { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.site-footer h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.site-footer__meta { font-size: 15px; line-height: 1.7; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 4px 14px; font-weight: 500; font-size: 15px; }
.site-footer__nav a { padding: 2px 0; }
.site-footer__nav a:hover { color: var(--c1-wine); }
.site-footer__nav span { opacity: .35; }
.site-footer__legal { margin-top: 48px; font-size: 13px; opacity: .65; }
.site-footer__mascot { position: absolute; }

/* ─────────────────────────────────────────────────────────
   Reusable buttons / pills
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: 2px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--lemon { background: var(--c3-lemon); color: var(--ink); }
.btn--wine  { background: var(--c1-wine); color: var(--paper); border-color: var(--c1-wine); }

.text-link {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--c1-wine); border-bottom-color: var(--c1-wine); }

/* "komt nog" / placeholder pill */
.tag-komt-nog {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--c1-wine); color: var(--paper);
  padding: 3px 8px; border-radius: 4px;
  vertical-align: middle;
}

/* ─────────────────────────────────────────────────────────
   Section primitives
   ───────────────────────────────────────────────────────── */
.section { padding: 72px var(--pad-x); position: relative; overflow: hidden; }
@media (min-width: 768px) { .section { padding: 96px var(--pad-x); } }
@media (min-width: 1280px) { .section { padding: 120px var(--pad-x); } }

.section__inner { max-width: var(--col-wide); margin: 0 auto; position: relative; }
.read-col { max-width: var(--col-read); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.eyebrow::before {
  content: ""; width: 28px; height: 4px; background: var(--c8-smile);
}

/* ─────────────────────────────────────────────────────────
   Hero — lemon-yellow band, big type, smile watermark
   ───────────────────────────────────────────────────────── */
.hero {
  background: var(--c3-lemon);
  position: relative; overflow: hidden;
  padding: 80px var(--pad-x) 96px;
}
@media (min-width: 768px) { .hero { padding: 120px var(--pad-x) 140px; } }
@media (min-width: 1280px) { .hero { padding: 140px var(--pad-x) 180px; min-height: 640px; } }

.hero__inner {
  max-width: 920px; margin: 0 auto;
  position: relative; z-index: 2;
}
.hero__title {
  font-weight: 700;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 32px;
}
.hero__lead {
  font-size: var(--fs-lead);
  font-weight: 500;
  max-width: 56ch;
  line-height: 1.45;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }

/* smile watermark — large shape behind/below text, never crossing the headline */
.hero__watermark {
  position: absolute;
  right: -8vw; bottom: -10vw;
  width: clamp(380px, 50vw, 720px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero { padding-bottom: 200px; }
  .hero__watermark { right: -25vw; bottom: -8vw; width: 75vw; }
}

.hero__logo-v1 {
  position: absolute;
  right: var(--pad-x); top: 32px;
  width: clamp(180px, 22vw, 280px);
  z-index: 3;
}
@media (max-width: 1023px) { .hero__logo-v1 { display: none; } }

/* ─────────────────────────────────────────────────────────
   Story block (reading column)
   ───────────────────────────────────────────────────────── */
.story {
  background: var(--paper);
  padding: 96px var(--pad-x);
}
@media (min-width: 768px) { .story { padding: 128px var(--pad-x); } }

.story__inner { max-width: var(--col-read); margin: 0 auto; }
.story__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.05;
}
.story__strip {
  display: flex; gap: 14px;
  margin-bottom: 40px;
}
.story__strip svg { width: 44px; height: 44px; }
@media (min-width: 768px) {
  .story__strip svg { width: 56px; height: 56px; }
}
.story__body p { font-size: var(--fs-lead); line-height: 1.6; }
.story__body p + p { margin-top: 1.2em; }
.story__body strong { font-weight: 600; }
.story__body a.text-link { display: inline; }

/* ─────────────────────────────────────────────────────────
   Donation cards
   ───────────────────────────────────────────────────────── */
.donate {
  background: var(--paper);
  padding: 64px var(--pad-x) 96px;
}
@media (min-width: 768px) { .donate { padding: 32px var(--pad-x) 128px; } }

.donate__inner { max-width: var(--col-wide); margin: 0 auto; }
.donate__head { margin-bottom: 40px; max-width: var(--col-read); }
.donate__head h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 24px; }
.donate__head p { font-size: var(--fs-lead); }

.donate__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .donate__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .donate__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.dcard {
  position: relative;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  min-height: 280px;
  color: var(--ink);
  overflow: hidden;
  transition: transform .2s ease;
}
.dcard:hover { transform: translateY(-4px); }
.dcard__amount {
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.dcard__unit { font-size: 14px; font-weight: 500; margin-bottom: 14px; opacity: .8; }
.dcard__body { font-size: 15px; line-height: 1.5; flex: 1; margin-bottom: 18px; }
.dcard__cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  font-weight: 600; padding: 11px 18px;
  border-radius: var(--radius-pill);
  text-align: center;
  align-self: stretch;
}
.dcard__cta:hover { background: var(--c1-wine); }
.dcard__tab {
  position: absolute; top: 0; right: 16px;
  background: var(--c1-wine); color: var(--paper);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px 8px;
}
.dcard__mascot { position: absolute; right: 14px; bottom: 76px; width: 44px; height: 44px; opacity: 0; transition: opacity .2s; }
.dcard:hover .dcard__mascot { opacity: 1; }

.dcard--pink    { background: var(--c7-pastel-pink); }
.dcard--lemon   { background: var(--c3-lemon); }
.dcard--blue    { background: var(--c5-pastel-blue); }
.dcard--rose    { background: var(--c6-pink); }
.dcard--mustard { background: var(--c2-mustard); }
.dcard--cyan    { background: var(--c4-cyan); }

.donate__fine {
  margin-top: 48px;
  max-width: var(--col-read);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.donate__fine p + p { margin-top: 1em; }

/* ─────────────────────────────────────────────────────────
   Stats band — full-bleed cyan
   ───────────────────────────────────────────────────────── */
.stats {
  background: var(--c4-cyan);
  padding: 80px var(--pad-x);
  color: var(--ink);
}
@media (min-width: 768px) { .stats { padding: 120px var(--pad-x); } }
.stats__inner { max-width: var(--col-wide); margin: 0 auto; }
.stats__head { max-width: 44ch; margin-bottom: 56px; }
.stats__head h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.stats__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.stat__num {
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat__cap { font-weight: 500; font-size: 16px; max-width: 22ch; margin-top: 12px; line-height: 1.4; }

/* ─────────────────────────────────────────────────────────
   Quotes
   ───────────────────────────────────────────────────────── */
.quotes { background: var(--paper); padding: 96px var(--pad-x); }
.quotes__inner { max-width: var(--col-wide); margin: 0 auto; }
.quotes__head { max-width: 36ch; margin-bottom: 48px; }
.quotes__head h2 { font-size: clamp(28px, 4vw, 44px); }
.quotes__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .quotes__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.qcard {
  padding: 28px 26px;
  border: 2px solid var(--ink);
  background: var(--paper);
  display: flex; flex-direction: column; gap: 18px;
}
.qcard__mascot { width: 44px; height: 44px; }
.qcard blockquote {
  margin: 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   "Dit zou eigenlijk niet moeten" — pastel pink quiet band
   ───────────────────────────────────────────────────────── */
.calm {
  background: var(--c7-pastel-pink);
  padding: 96px var(--pad-x);
}
@media (min-width: 768px) { .calm { padding: 128px var(--pad-x); } }
.calm__inner { max-width: var(--col-read); margin: 0 auto; }
.calm h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
}
.calm p { font-size: var(--fs-lead); line-height: 1.6; }
.calm p + p { margin-top: 1em; }

/* ─────────────────────────────────────────────────────────
   Progress bar
   ───────────────────────────────────────────────────────── */
.progress {
  background: var(--paper);
  padding: 64px var(--pad-x) 96px;
}
.progress__inner { max-width: var(--col-wide); margin: 0 auto; }
.progress__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.progress__current { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.progress__target { font-weight: 500; opacity: .65; }
.progress__bar {
  position: relative;
  height: 36px;
  background: var(--c1-wine);
  border-radius: var(--radius-pill);
  overflow: visible;
}
.progress__fill {
  height: 100%;
  background: var(--c3-lemon);
  border-radius: var(--radius-pill);
  position: relative;
}
.progress__mascot {
  position: absolute;
  right: -22px; top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
}
.progress__legend {
  margin-top: 14px;
  font-size: 14px;
  display: flex; gap: 18px; flex-wrap: wrap;
  color: var(--ink-soft);
}

/* ─────────────────────────────────────────────────────────
   End CTA — wine red band
   ───────────────────────────────────────────────────────── */
.end-cta {
  background: var(--c1-wine);
  color: var(--paper);
  padding: 96px var(--pad-x);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .end-cta { padding: 128px var(--pad-x); } }
.end-cta__inner { max-width: var(--col-wide); margin: 0 auto; position: relative; z-index: 2; }
.end-cta h2 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 28px;
}
.end-cta p { font-size: var(--fs-lead); max-width: 56ch; margin-bottom: 32px; }
.end-cta__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.end-cta .text-link { color: var(--paper); border-bottom-color: var(--paper); }
.end-cta__shape {
  position: absolute; right: -6vw; bottom: -6vw;
  width: clamp(280px, 32vw, 480px); height: clamp(280px, 32vw, 480px);
  background: var(--c8-smile);
  border-radius: 50%;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   In-opbouw placeholder banner
   ───────────────────────────────────────────────────────── */
.notice {
  background: var(--c7-pastel-pink);
  padding: 32px var(--pad-x);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.notice__inner {
  max-width: var(--col-wide); margin: 0 auto;
  display: flex; gap: 20px; align-items: flex-start;
}
.notice__inner svg { flex-shrink: 0; width: 44px; height: 44px; }
.notice strong { font-weight: 600; }
.notice p { font-size: 16px; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   Toggle (eenmalig / periodiek)
   ───────────────────────────────────────────────────────── */
.toggle-row {
  display: inline-flex;
  background: var(--c3-lemon);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  gap: 4px;
}
.toggle-row button {
  background: transparent;
  border: 0;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.toggle-row button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--c3-lemon);
}

/* ─────────────────────────────────────────────────────────
   Big donate hero (Doe mee page)
   ───────────────────────────────────────────────────────── */
.dm-hero {
  background: var(--paper);
  padding: 72px var(--pad-x) 32px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .dm-hero { padding: 120px var(--pad-x) 48px; } }
.dm-hero__inner { max-width: var(--col-wide); margin: 0 auto; position: relative; }
.dm-hero h1 {
  font-size: clamp(56px, 12vw, 168px);
  font-weight: 700; line-height: 0.92; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.dm-hero .hero__lead { max-width: 52ch; }
.dm-hero__shape {
  position: absolute;
  right: 4vw; top: 18%;
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  border-radius: 50%;
  background: var(--c4-cyan);
  z-index: 0;
}
@media (max-width: 1023px) { .dm-hero__shape { display: none; } }

/* Doe-mee donation grid — bigger cards */
.dm-cards {
  background: var(--paper);
  padding: 32px var(--pad-x) 96px;
}
.dm-cards__inner { max-width: var(--col-wide); margin: 0 auto; }
.dm-cards__filter { margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.dm-cards__filter .label { font-size: 14px; font-weight: 500; color: var(--ink-soft); }

.dm-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .dm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .dm-grid { grid-template-columns: repeat(4, 1fr); } }

.dm-grid .dcard {
  min-height: 380px;
  padding: 36px 28px 28px;
}
.dm-grid .dcard__amount { font-size: clamp(64px, 7vw, 96px); }
.dm-grid .dcard__body { font-size: 16px; }

/* Doe-mee schenkmodus blocks */
.giving-modes {
  background: var(--paper);
  padding: 0 var(--pad-x) 96px;
}
.giving-modes__inner { max-width: var(--col-wide); margin: 0 auto; }
.giving-modes__grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 768px) { .giving-modes__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.gmode {
  padding: 32px 28px;
  border: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.gmode--featured { background: var(--c3-lemon); }
.gmode h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.gmode p { font-size: 16px; line-height: 1.6; }
.gmode p + p { margin-top: 1em; }
.gmode__sum {
  margin-top: 20px; padding: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.gmode--featured .gmode__sum { background: rgba(255,255,255,0.4); }

/* Big progress on doe-mee */
.bigprogress {
  background: var(--paper);
  padding: 32px var(--pad-x) 128px;
}
.bigprogress__inner { max-width: var(--col-wide); margin: 0 auto; }
.bigprogress__h { display: flex; flex-wrap: wrap; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.bigprogress__h h2 { font-size: clamp(28px, 4vw, 40px); margin-right: auto; }
.bigprogress__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.bigprogress__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c8-smile);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.bigprogress__nums {
  display: flex; flex-wrap: wrap; gap: 8px 40px;
  margin: 24px 0 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.bigprogress__nums b { font-weight: 600; color: var(--ink); font-size: 22px; display: block; }
.bigprogress .progress__bar { height: 48px; }
.bigprogress .progress__mascot { width: 72px; height: 72px; right: -32px; }

.tier-pegs {
  margin-top: 16px; display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  font-size: 13px;
  color: var(--ink-soft);
}
.tier-pegs span { display: block; padding-top: 12px; border-top: 2px solid var(--ink); position: relative; }
.tier-pegs span b { color: var(--ink); font-weight: 600; display: block; font-size: 15px; }

/* utility */
.hidden { display: none; }
.no-wrap { white-space: nowrap; }

/* small mascot row used in story strip */
.mascot-row { display: inline-flex; gap: 12px; }
