/* ==========================================================================
   Sjaki-Tari-Us — designsysteem
   ========================================================================== */

:root {
  /* Kleuren */
  --ink:        #17211d;
  --ink-soft:   #4a5551;
  --green-900:  #4A0F0F;
  --green-800:  #6B1E1E;
  --green-700:  #8B2828;
  --green-500:  #C0392B;
  --green-100:  #FBEAE9;
  --saffron:    #f0a93b;
  --coral:      #e2663c;
  --coral-dark: #c4512b;
  --cream:      #fbf6ee;
  --sand:       #f3e8d8;
  --line:       rgba(13, 58, 44, .14);
  --white:      #ffffff;

  /* Typografie */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Ritme */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(13, 58, 44, .06);
  --shadow-md: 0 12px 32px -12px rgba(13, 58, 44, .22);
  --shadow-lg: 0 32px 70px -30px rgba(13, 58, 44, .38);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Hulpklassen ---------- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--saffron);
}
.eyebrow--center { justify-content: center; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-900); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-size: .97rem; font-weight: 600;
  padding: .92em 1.7em; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--coral-dark); }
.btn--dark { background: var(--green-800); color: #fff; }
.btn--dark:hover { background: var(--green-900); }
.btn--ghost { border-color: currentColor; color: var(--green-800); }
.btn--ghost:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.14); }
.btn--sm { padding: .68em 1.25em; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, .88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px -14px rgba(13,58,44,.5); }
.header__inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { height: 42px; width: auto; }
.brand__fallback {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  color: var(--green-900); letter-spacing: -.02em;
}
.brand__tag {
  display: none; font-size: .74rem; color: var(--ink-soft); letter-spacing: .04em;
}
@media (min-width: 1080px) { .brand__tag { display: block; border-left: 1px solid var(--line); padding-left: 12px; max-width: 150px; line-height: 1.3; } }

.nav { display: none; }
@media (min-width: 960px) { .nav { display: flex; align-items: center; gap: 4px; } }
.nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: .55em .85em; border-radius: 999px; color: var(--ink);
  transition: background .16s ease, color .16s ease;
}
.nav a:hover { background: var(--green-100); color: var(--green-900); }
.nav a[aria-current="page"] { color: var(--green-800); font-weight: 650; background: var(--green-100); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.lang { display: none; gap: 2px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
@media (min-width: 720px) { .lang { display: flex; align-items: center; } }
.lang a { text-decoration: none; padding: 4px 7px; border-radius: 6px; }
.lang a[aria-current] { background: var(--green-900); color: #fff; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; border: 1px solid var(--line);
  border-radius: 12px; background: transparent; cursor: pointer;
}
@media (min-width: 960px) { .burger { display: none; } }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--cream);
  padding: 14px 0 26px;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 960px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
  display: block; text-decoration: none; font-size: 1.15rem; font-family: var(--display);
  padding: .55em 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 18px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,58,44,.72) 0%, rgba(13,58,44,.58) 45%, rgba(13,58,44,.92) 100%),
    radial-gradient(80% 60% at 15% 20%, rgba(240,169,59,.22), transparent 70%);
}
.hero__inner {
  position: relative; padding: clamp(96px, 15vw, 190px) 0 clamp(72px, 10vw, 120px);
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--saffron); }
.hero__lead { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: rgba(255,255,255,.88); max-width: 56ch; margin-bottom: 2rem; }
.hero .eyebrow { color: var(--saffron); }
.hero .eyebrow::before { background: var(--saffron); }

.hero__meta {
  position: relative; display: flex; flex-wrap: wrap; gap: 8px 28px;
  padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.18);
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .5em; }
.hero__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); }

/* ---------- Cijfers ---------- */
.stats { background: var(--sand); }
.stats__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px;
}
@media (min-width: 820px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600; line-height: 1; color: var(--green-800); letter-spacing: -.03em;
}
.stat__label { font-size: .92rem; color: var(--ink-soft); margin-top: .5em; max-width: 22ch; }

/* ---------- Naamverhaal ---------- */
.name-cards { display: grid; gap: 20px; margin-top: 48px; }
@media (min-width: 780px) { .name-cards { grid-template-columns: repeat(3, 1fr); } }
.name-card {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.name-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.name-card:nth-child(1)::before { background: var(--coral); }
.name-card:nth-child(2)::before { background: var(--saffron); }
.name-card:nth-child(3)::before { background: var(--green-500); }
.name-card__word {
  font-family: var(--display); font-size: 2.4rem; color: var(--green-900);
  line-height: 1; margin-bottom: .35em;
}
.name-card p { font-size: .98rem; color: var(--ink-soft); }

/* ---------- Programma's ---------- */
.prog-grid { display: grid; gap: 22px; }
@media (min-width: 720px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
.prog {
  display: flex; flex-direction: column; background: #fff;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.prog:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prog__img { aspect-ratio: 16 / 10; background: var(--green-100); overflow: hidden; }
.prog__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prog:hover .prog__img img { transform: scale(1.04); }
.prog__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.prog__age {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: .7em;
}
.prog h3 { margin-bottom: .45em; }
.prog p { font-size: .96rem; color: var(--ink-soft); margin-bottom: 1.2em; }
.prog__more { margin-top: auto; font-weight: 600; font-size: .93rem; color: var(--green-700); display: inline-flex; gap: .5em; align-items: center; }
.prog__more::after { content: "→"; transition: transform .2s ease; }
.prog:hover .prog__more::after { transform: translateX(4px); }

/* ---------- Split ---------- */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse .split__media { order: 2; }
@media (max-width: 899px) { .split--reverse .split__media { order: 0; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.quote {
  border-left: 3px solid var(--saffron); padding: 4px 0 4px 22px;
  font-family: var(--display); font-size: 1.2rem; line-height: 1.45; color: var(--green-900);
  margin: 1.6em 0;
}
.quote cite { display: block; font-family: var(--sans); font-size: .85rem; font-style: normal; color: var(--ink-soft); margin-top: .7em; }

/* ---------- Dagritme (timeline) ---------- */
.day { background: var(--green-900); color: #fff; }
.day h2 { color: #fff; }
.day .lead { color: rgba(255,255,255,.75); }
.day .eyebrow { color: var(--saffron); }
.day .eyebrow::before { background: var(--saffron); }
.timeline { margin-top: 52px; display: grid; gap: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px;
  background: rgba(255,255,255,.18);
}
.tl {
  display: grid; grid-template-columns: 34px 1fr; gap: 18px;
  padding: 16px 0; align-items: start;
}
@media (min-width: 760px) { .tl { grid-template-columns: 34px 130px 1fr; align-items: baseline; } }
.tl__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--saffron); margin-top: 7px; box-shadow: 0 0 0 5px rgba(240,169,59,.16); }
.tl__time { font-family: var(--display); font-size: 1.05rem; color: var(--saffron); }
.tl__text strong { display: block; font-weight: 600; margin-bottom: .2em; }
.tl__text span { color: rgba(255,255,255,.7); font-size: .95rem; }
@media (max-width: 759px) { .tl__time { grid-column: 2; margin-bottom: .2em; } .tl__text { grid-column: 2; } }

/* ---------- Verhalen ---------- */
.stories { display: grid; gap: 22px; }
@media (min-width: 760px) { .stories { grid-template-columns: repeat(3, 1fr); } }
.story {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story__img { aspect-ratio: 3/2; background: var(--green-100); }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__body { padding: 22px 24px 26px; }
.story__date { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.story h3 { font-size: 1.18rem; margin: .5em 0 .4em; }
.story p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Donatie ---------- */
.give { background: var(--sand); }
.give__card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.amounts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0; }
@media (min-width: 620px) { .amounts { grid-template-columns: repeat(4, 1fr); } }
.amount {
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--cream);
  padding: 16px 12px; text-align: center; cursor: pointer; font-family: var(--sans);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.amount:hover { transform: translateY(-2px); border-color: var(--green-500); }
.amount.is-active { border-color: var(--green-700); background: var(--green-100); }
.amount b { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--green-900); line-height: 1; }
.amount span { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: .5em; line-height: 1.35; }
.give__note { font-size: .87rem; color: var(--ink-soft); margin-top: 18px; }
.anbi-pill {
  display: inline-flex; align-items: center; gap: .6em; background: var(--green-100);
  color: var(--green-900); font-size: .82rem; font-weight: 600;
  padding: .5em 1em; border-radius: 999px;
}

/* ---------- Tabel / feiten ---------- */
.facts { display: grid; gap: 0; margin-top: 24px; }
.fact { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.fact dt { color: var(--ink-soft); }
.fact dd { margin: 0; font-weight: 550; }
@media (max-width: 560px) { .fact { grid-template-columns: 1fr; gap: 2px; } }

/* ---------- Personen ---------- */
.people { display: grid; gap: 18px; margin-top: 36px; }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(4, 1fr); } }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.person__initials {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-800); font-family: var(--display);
  font-size: 1.15rem; margin-bottom: 16px;
}
.person strong { display: block; font-size: 1.05rem; }
.person span { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.loc-grid { display: grid; gap: 20px; }
@media (min-width: 780px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.loc h3 { margin-bottom: .3em; }
.loc__hours { font-size: .93rem; color: var(--ink-soft); }
.loc a { color: var(--green-700); }

.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4em; }
input, textarea, select {
  width: 100%; font-family: var(--sans); font-size: 1rem; padding: .8em 1em;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
}
input:focus, textarea:focus { border-color: var(--green-500); outline: none; box-shadow: 0 0 0 3px rgba(47,139,106,.18); }

/* ---------- CTA band ---------- */
.band {
  background: linear-gradient(120deg, var(--green-800), var(--green-900) 60%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px);
  display: grid; gap: 24px; align-items: center;
}
@media (min-width: 860px) { .band { grid-template-columns: 1.4fr auto; } }
.band h2 { color: #fff; margin-bottom: .3em; }
.band p { color: rgba(255,255,255,.8); margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: rgba(255,255,255,.72); padding: clamp(56px, 7vw, 84px) 0 32px; font-size: .93rem; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6em; }
.footer__brand img { height: 46px; filter: brightness(0) invert(1); opacity: .95; }
.footer__motto { font-family: var(--display); color: #fff; font-size: 1.15rem; margin: 18px 0 14px; }
.footer__bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .84rem;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.24); transition: background .2s ease;
}
.socials a:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }

/* ---------- Pagina-hero (subpagina's) ---------- */
.pagehero { background: var(--green-900); color: #fff; padding: clamp(72px, 10vw, 130px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; }
.pagehero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 90% 0%, rgba(240,169,59,.18), transparent 65%);
  pointer-events: none;
}
.pagehero > * { position: relative; z-index: 1; }
.pagehero h1 { color: #fff; max-width: 18ch; }
.pagehero .lead { color: rgba(255,255,255,.78); max-width: 60ch; }
.pagehero .eyebrow { color: var(--saffron); }
.pagehero .eyebrow::before { background: var(--saffron); }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.4rem; }
.crumbs a { color: rgba(255,255,255,.75); text-decoration: none; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose > *:first-child { margin-top: 0; }

/* ---------- Media-strip ---------- */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 780px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .prog:hover, .story:hover { transform: none; }
}

/* ---------- Verdeling per beperking ---------- */
.mix { display: grid; gap: 14px; margin-top: 44px; }
.mix__row {
  display: grid; grid-template-columns: 1fr; gap: 6px;
  padding: 16px 20px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px;
}
@media (min-width: 700px) {
  .mix__row { grid-template-columns: 92px 1fr 74px; align-items: center; gap: 22px; padding: 14px 24px; }
}
.mix__num {
  font-family: var(--display); font-size: 2.1rem; line-height: 1;
  color: var(--green-800); letter-spacing: -.03em;
}
.mix__label { font-size: 1rem; }
.mix__bar { position: relative; height: 10px; border-radius: 999px; background: var(--green-100); overflow: hidden; }
.mix__bar span { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: var(--green-500); }
.mix__row:nth-child(1) .mix__bar span { background: var(--green-700); }
.mix__row:nth-child(2) .mix__bar span { background: var(--saffron); }
.mix__row:nth-child(3) .mix__bar span { background: var(--coral); }
@media (min-width: 700px) {
  .mix__row { grid-template-columns: 92px minmax(240px, 1fr) 1fr; }
  .mix__bar { grid-column: 3; }
}
