/* ============================================================
   MLSCN — Medical Laboratory Science Council of Nigeria
   Redesigned front-end. Design system & components.
   Brand: deep green #214300 · vibrant green #408200 ·
          accent yellow #f5fd01 · white. Tagline emblem red.
   ============================================================ */

:root {
  /* Brand palette */
  --green-900: #152c00;
  --green-800: #1a3600;
  --green-700: #214300;
  --green-600: #2d5a00;
  --green-500: #306100;
  --green-400: #408200;
  --green-300: #5a9f2a;
  --green-100: #e8f3dd;
  --green-50:  #f2f8ec;
  --yellow:    #f5fd01;
  --yellow-600:#d8e000;
  --red:       #c0392b;

  --ink:       #14210a;
  --body:      #36422b;
  --muted:     #6b7563;
  --line:      #e3e8dd;
  --line-soft: #eef2ea;
  --bg:        #ffffff;
  --bg-soft:   #f7faf4;
  --bg-mute:   #eef3e8;
  --white:     #ffffff;

  --shadow-sm: 0 1px 2px rgba(20,33,10,.06), 0 1px 3px rgba(20,33,10,.08);
  --shadow-md: 0 6px 16px rgba(20,33,10,.10);
  --shadow-lg: 0 18px 48px rgba(20,33,10,.16);
  --shadow-green: 0 14px 34px rgba(33,67,0,.28);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --container: 1200px;
  --header-h: 116px;

  --ff: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-400); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-700); }
h1,h2,h3,h4,h5 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--body); }
ul, ol { color: var(--body); }
:focus-visible { outline: 3px solid var(--green-300); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--mute { background: var(--bg-mute); }
.section--dark { background: linear-gradient(160deg, var(--green-700), var(--green-900)); color: #dfe6d4; }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.center { text-align: center; }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-inline: auto; }
.grid { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-500);
}
.kicker::before { content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--yellow)); }
.section--dark .kicker { color: var(--yellow); }
.section--dark .kicker::before { background: var(--yellow); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }
.section--dark .section-head p { color: #c4d4b4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .96rem; font-family: inherit;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-400); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--yellow); color: var(--green-900); }
.btn--accent:hover { background: #fff; color: var(--green-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-400); color: var(--green-700); background: var(--green-50); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--light:hover { background: #fff; color: var(--green-700); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar { background: linear-gradient(90deg, var(--green-900), var(--green-700)); color: #cfe0bd; font-size: .82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 40px; }
.topbar a { color: #d8e8c6; }
.topbar a:hover { color: var(--yellow); }
.topbar__info { display: flex; gap: 22px; align-items: center; }
.topbar__info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__info svg { width: 14px; height: 14px; color: var(--yellow); }
.topbar__social { display: flex; gap: 8px; align-items: center; }
.topbar__social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.08); transition: all .2s var(--ease); }
.topbar__social a:hover { background: var(--yellow); color: var(--green-900); }
.topbar__social svg { width: 13px; height: 13px; }

/* ============================================================
   HEADER + MEGA NAV
   ============================================================ */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s var(--ease); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; box-shadow: var(--shadow-sm); flex: none; }
.brand__txt { max-width: 210px; }
.brand__txt strong { display: block; font-size: 1.12rem; color: var(--green-700); letter-spacing: -.02em; line-height: 1.05; }
.brand__txt span { display: block; font-size: .68rem; color: var(--muted); font-weight: 600; line-height: 1.25; margin-top: 2px; }
@media (max-width: 1240px) { .brand__txt span { display: none; } }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px; padding: 10px 11px; border-radius: 10px;
  font-weight: 700; font-size: .88rem; color: var(--ink); cursor: pointer; white-space: nowrap;
  transition: all .2s var(--ease);
}
@media (max-width: 1180px) { .nav__link { padding: 9px 9px; font-size: .84rem; } }
.nav__link svg { width: 14px; height: 14px; opacity: .55; transition: transform .25s var(--ease); }
.nav__item:hover > .nav__link { background: var(--green-50); color: var(--green-700); }
.nav__item:hover > .nav__link svg { transform: rotate(180deg); }
.nav__link.active { color: var(--green-700); }
.nav__link.active::after { content:""; position:absolute; left:14px; right:14px; bottom:5px; height:2.5px;
  border-radius:3px; background: var(--green-400); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease); z-index: 50;
}
.dropdown.wide { min-width: 540px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav__item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown__link { display: flex; flex-direction: column; gap: 1px; padding: 10px 14px; border-radius: 9px;
  font-weight: 600; font-size: .9rem; color: var(--ink); transition: all .18s var(--ease); }
.dropdown__link small { font-weight: 500; color: var(--muted); font-size: .76rem; }
.dropdown__link:hover { background: var(--green-50); color: var(--green-700); transform: translateX(3px); }
.dropdown__group { padding: 8px 14px 4px; font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-400); }

.header__cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2.5px; background: var(--green-700); border-radius: 3px; transition: .25s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0 0 0 auto; width: min(380px, 86vw); background: #fff; z-index: 200;
  transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto;
  box-shadow: var(--shadow-lg); padding: 22px; }
.drawer.open { transform: translateX(0); }
.drawer__overlay { position: fixed; inset: 0; background: rgba(20,33,10,.5); z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); }
.drawer__overlay.open { opacity: 1; visibility: visible; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.drawer__close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px;
  font-size: 1.4rem; cursor: pointer; color: var(--green-700); }
.macc__top { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 14px 12px; background: none; border: none; border-bottom: 1px solid var(--line-soft);
  font-family: inherit; font-weight: 700; font-size: .98rem; color: var(--ink); cursor: pointer; text-align: left; }
.macc__top svg { width: 16px; height: 16px; transition: transform .25s var(--ease); flex: none; }
.macc.open .macc__top svg { transform: rotate(180deg); }
.macc__panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.macc.open .macc__panel { max-height: 1200px; }
.macc__panel a { display: block; padding: 10px 12px 10px 24px; font-size: .9rem; font-weight: 600;
  color: var(--body); border-bottom: 1px solid var(--line-soft); }
.macc__panel a:hover { color: var(--green-700); background: var(--green-50); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 48%, var(--green-500) 100%);
  color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 88% -10%, rgba(245,253,1,.16), transparent 60%),
              radial-gradient(700px 600px at 8% 110%, rgba(90,159,42,.4), transparent 55%); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; padding: clamp(56px, 8vw, 96px) 0; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #eaf4dc;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 24px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(245,253,1,.2); }
.hero h1 { color: #fff; }
.hero h1 .hl { background: linear-gradient(90deg, var(--yellow), #c9f53a); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.hero__lead { color: #d3e3c2; font-size: 1.14rem; margin-top: 20px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat .n { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero__stat .n b { color: var(--yellow); font-weight: 800; }
.hero__stat .l { font-size: .82rem; color: #b9cda4; font-weight: 600; }
.hero__visual { position: relative; }
.hero__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 28px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); }
.hero__emblem { width: 132px; height: 132px; margin: 0 auto 18px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.hero__emblem img { width: 112px; height: 112px; }
.portal-list { display: grid; gap: 12px; }
.portal-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.95); color: var(--ink); transition: all .22s var(--ease); }
.portal-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.portal-row__ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-500); }
.portal-row__ic svg { width: 22px; height: 22px; }
.portal-row strong { display: block; font-size: .96rem; color: var(--ink); }
.portal-row span { font-size: .8rem; color: var(--muted); }
.portal-row .arrow { margin-left: auto; color: var(--green-400); }

/* ---------- Page hero (interior) ---------- */
.phero { position: relative; background: linear-gradient(150deg, var(--green-900), var(--green-700));
  color: #fff; padding: clamp(48px, 7vw, 76px) 0; overflow: hidden; }
.phero::before { content:""; position:absolute; inset:0;
  background: radial-gradient(700px 360px at 90% 0%, rgba(245,253,1,.13), transparent 60%); }
.phero__in { position: relative; max-width: 820px; }
.phero h1 { color: #fff; margin-top: 14px; }
.phero p { color: #cfe0bd; font-size: 1.08rem; margin-top: 16px; max-width: 640px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .84rem; color: #aeca8e; font-weight: 600; }
.crumbs a { color: #d6e7c4; }
.crumbs a:hover { color: var(--yellow); }
.crumbs .sep { opacity: .5; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: all .26s var(--ease); height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card__ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(145deg, var(--green-50), var(--green-100)); color: var(--green-500); }
.card__ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700;
  font-size: .88rem; color: var(--green-500); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* service card variant with top accent */
.scard { position: relative; overflow: hidden; }
.scard::before { content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--green-400), var(--yellow)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease); }
.scard:hover::before { transform: scaleX(1); }

/* link list card (for section sub-pages) */
.linkcard { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); transition: all .24s var(--ease); height: 100%; }
.linkcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.linkcard__ic { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-500); }
.linkcard__ic svg { width: 24px; height: 24px; }
.linkcard h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: 4px; }
.linkcard p { font-size: .86rem; color: var(--muted); }
.linkcard .arrow { margin-left: auto; align-self: center; color: var(--green-300); flex: none; }
.linkcard:hover .arrow { color: var(--green-500); }

/* portal cards (home) */
.pcard { display: flex; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: #fff; transition: all .26s var(--ease); border: 1px solid var(--line); }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pcard__badge { flex: none; width: 130px; display: grid; place-items: center; text-align: center; padding: 18px 10px;
  background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: #fff; }
.pcard__badge strong { display: block; font-size: 1.05rem; }
.pcard__badge em { font-style: italic; font-size: .78rem; color: var(--yellow); }
.pcard__body { padding: 20px 22px; }
.pcard__body h4 { font-size: 1.08rem; margin-bottom: 4px; }
.pcard__body p { font-size: .88rem; color: var(--muted); }
.pcard__body .go { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700;
  font-size: .82rem; color: var(--green-500); }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statbox { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); }
.statbox .n { font-size: 2.6rem; font-weight: 800; color: var(--green-500); letter-spacing: -.03em; line-height: 1; }
.statbox .l { margin-top: 8px; font-size: .9rem; color: var(--muted); font-weight: 600; }
.section--dark .statbox { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section--dark .statbox .n { color: var(--yellow); }
.section--dark .statbox .l { color: #c4d4b4; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: all .26s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-100); }
.tcard__photo { position: relative; aspect-ratio: 1/1; background: var(--green-50); overflow: hidden; }
.tcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard__ph { width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-400), var(--green-700)); color: #fff;
  font-size: 2.4rem; font-weight: 800; letter-spacing: .02em; }
.tcard__body { padding: 18px 20px 22px; text-align: center; }
.tcard__body h4 { font-size: 1.06rem; color: var(--ink); }
.tcard__body .role { font-size: .84rem; color: var(--green-500); font-weight: 700; margin-top: 4px; line-height: 1.4; }
.chair-banner { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-sm); }
.chair-banner__photo { aspect-ratio: 1/1; background: var(--green-50); }
.chair-banner__photo img { width: 100%; height: 100%; object-fit: cover; }
.chair-banner__body { padding: 30px 36px 30px 10px; }
.chair-banner__body .tag { color: var(--green-500); font-weight: 800; letter-spacing: .1em; font-size: .76rem; text-transform: uppercase; }
.chair-banner__body h3 { font-size: 1.7rem; margin: 6px 0 4px; }
.chair-banner__body .role { color: var(--muted); font-weight: 600; }

/* ============================================================
   PROSE (article / CMS content)
   ============================================================ */
.prose { max-width: 820px; font-size: 1.04rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.4em; color: var(--green-700); }
.prose p { color: var(--body); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .5em 0; }
.prose ul li::marker { color: var(--green-400); }
.prose a { color: var(--green-500); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 4px solid var(--green-400); padding: 6px 0 6px 22px; color: var(--muted);
  font-style: italic; background: var(--green-50); border-radius: 0 10px 10px 0; padding: 16px 22px; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--green-50); color: var(--green-700); font-weight: 700; }

/* numbered feature list */
.numlist { display: grid; gap: 18px; counter-reset: n; }
.numlist li { list-style: none; display: flex; gap: 18px; padding: 20px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); }
.numlist li::before { counter-increment: n; content: counter(n); flex: none; width: 40px; height: 40px;
  border-radius: 12px; background: linear-gradient(145deg, var(--green-400), var(--green-700)); color: #fff;
  display: grid; place-items: center; font-weight: 800; }
.numlist li b { color: var(--ink); }

/* values pills */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 20px; border-radius: 999px; background: var(--green-50); border: 1px solid var(--green-100);
  color: var(--green-700); font-weight: 700; font-size: .92rem; }

/* split / media row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split--narrow { gap: 40px; }
.split img, .media-box { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.media-box { aspect-ratio: 4/3; object-fit: cover; }
.checklist { display: grid; gap: 14px; margin-top: 22px; }
.checklist li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--green-400); margin-top: 2px; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ncard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: all .26s var(--ease); display: flex; flex-direction: column; }
.ncard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ncard__top { padding: 22px 24px 0; }
.ncard__date { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700;
  color: var(--green-500); background: var(--green-50); padding: 5px 12px; border-radius: 999px; }
.ncard__body { padding: 16px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ncard h3 { font-size: 1.12rem; line-height: 1.35; }
.ncard p { font-size: .9rem; color: var(--muted); margin-top: 10px; flex: 1; }
.ncard .card__link { margin-top: 16px; }

/* tag chip + badges */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
  font-size: .76rem; font-weight: 700; background: var(--green-50); color: var(--green-600); }

/* ---------- CTA band ---------- */
.cta { position: relative; background: linear-gradient(140deg, var(--green-700), var(--green-900)); color: #fff;
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 70px); overflow: hidden; text-align: center; }
.cta::before { content:""; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 85% 10%, rgba(245,253,1,.16), transparent 60%); }
.cta__in { position: relative; max-width: 640px; margin-inline: auto; }
.cta h2 { color: #fff; }
.cta p { color: #cfe0bd; margin: 16px 0 28px; }
.cta .hero__actions { justify-content: center; }

/* ---------- data table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 520px; }
table.data th { background: var(--green-700); color: #fff; text-align: left; padding: 14px 18px; font-weight: 700;
  position: sticky; top: 0; }
table.data td { padding: 13px 18px; border-bottom: 1px solid var(--line-soft); }
table.data tr:nth-child(even) td { background: var(--bg-soft); }
table.data tr:hover td { background: var(--green-50); }

/* notice / info boxes */
.note { display: flex; gap: 16px; padding: 22px 26px; border-radius: var(--radius); background: var(--green-50);
  border: 1px solid var(--green-100); }
.note svg { width: 26px; height: 26px; color: var(--green-500); flex: none; }
.note h4 { color: var(--green-700); margin-bottom: 4px; }
.note p { font-size: .92rem; color: var(--body); }
.note--yellow { background: #fffde0; border-color: #f0e98a; }
.note--yellow svg { color: #a08a00; }

/* loader / skeleton */
.skeleton { display:grid; gap:26px; }
.spinner { width: 44px; height: 44px; border: 4px solid var(--green-100); border-top-color: var(--green-400);
  border-radius: 50%; animation: spin 1s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty { text-align:center; color: var(--muted); padding: 50px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(180deg, var(--green-700), var(--green-900)); color: #c7d6b6; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.footer__brand img { width: 60px; height: 60px; border-radius: 50%; background: #fff; padding: 3px; }
.footer__brand strong { color: #fff; font-size: 1.1rem; display: block; }
.footer__brand span { font-size: .76rem; color: #9fb588; }
.footer p { font-size: .9rem; color: #b6c8a3; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: #bccfa9; font-size: .9rem; }
.footer ul a:hover { color: var(--yellow); padding-left: 4px; }
.footer__contact li { display: flex; gap: 11px; font-size: .9rem; color: #bccfa9; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer__seal { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.footer__seal img { width: 64px; border-radius: 8px; background: #fff; padding: 3px; }
.footer__seal span { font-size: .76rem; color: #9fb588; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #cfe0bd; transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--yellow); color: var(--green-900); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #9fb588; }
.footer__bottom a { color: #bccfa9; }
.footer__bottom a:hover { color: var(--yellow); }

/* ---------- reveal animation (progressive enhancement) ---------- */
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
body.has-js .reveal { opacity: 0; transform: translateY(24px); }
body.has-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { body.has-js .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .cols-4, .team-grid, .statband { grid-template-columns: repeat(2, 1fr); }
  .cols-3, .news-grid { grid-template-columns: 1fr; }
  .split, .chair-banner { grid-template-columns: 1fr; }
  .chair-banner__body { padding: 0 28px 28px; }
  .chair-banner__photo { max-width: 100%; aspect-ratio: 16/9; }
  .topbar__info span.hide-sm { display: none; }
}
@media (max-width: 560px) {
  .cols-2, .cols-4, .team-grid, .statband { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__info { gap: 14px; }
  .pcard { flex-direction: column; }
  .pcard__badge { width: 100%; flex-direction: row; gap: 8px; padding: 14px; }
  .hero__stats { gap: 22px; }
}
