/* ===========================================================
   منال الدباغ — Shared design system
   Derived from the approved "Option tow" design
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* surfaces */
  --bg:        #FDFBF8;
  --card:      #FCFCF9;
  --mint:      #F0F9F0;
  --mint-2:    #EAF2E8;
  --mint-3:    #E9EEEC;
  --beige:     #F5F1E5;
  --beige-2:   #F6EDE1;
  --peach-1:   #F5E6DC;
  --peach-2:   #F6F0E2;
  --tint-rose: #FFE7E4;
  --tint-lilac:#E8E4EA;
  --tint-aqua: #D9EDE8;

  /* ink */
  --ink:       #282828;
  --muted:     #717171;
  --line:      rgba(113,113,113,.22);
  --line-soft: rgba(113,113,113,.14);

  /* brand */
  --blue:      #3470B7;
  --green:     #2FA39A;   /* teal mark */
  --green-soft:#86C98E;

  /* shape */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(40,40,40,.04);
  --shadow:    0 18px 50px -28px rgba(40,40,40,.22);
  --shadow-lg: 0 30px 80px -36px rgba(40,40,40,.30);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ff-ar: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-lat: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--ff-ar);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  direction:rtl;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
.lat{ font-family:var(--ff-lat); }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(64px,9vw,120px); }
.section-tight{ padding-block:clamp(48px,6vw,84px); }

/* ---------- eyebrow + headings ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:clamp(15px,1.3vw,18px); font-weight:500; color:var(--blue);
  margin:0 0 14px;
}
.eyebrow::before{
  content:""; width:26px; height:1.5px; background:currentColor; border-radius:2px;
}
.h-display{
  font-size:clamp(38px,6vw,62px); font-weight:700; line-height:1.12;
  letter-spacing:-.01em; margin:0;
}
.h1{ font-size:clamp(32px,4.4vw,46px); font-weight:700; line-height:1.15; margin:0; letter-spacing:-.01em; }
.h2{ font-size:clamp(26px,3.4vw,34px); font-weight:700; line-height:1.2; margin:0; letter-spacing:-.01em; }
.h3{ font-size:clamp(20px,2.2vw,24px); font-weight:600; line-height:1.35; margin:0; }
.lead{ font-size:clamp(16px,1.5vw,19px); color:var(--ink); line-height:1.9; margin:0; }
.body{ font-size:15px; color:var(--ink); line-height:1.95; margin:0; }
.muted{ color:var(--muted); }
.center{ text-align:center; }
.measure{ max-width:62ch; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--ff-ar); font-weight:600; font-size:14px; line-height:1;
  padding:13px 22px; border-radius:var(--r-pill);
  border:1px solid transparent; transition:.25s ease;
  white-space:nowrap;
}
.btn .arr{ width:13px; height:13px; transition:transform .25s ease; }
.btn:hover .arr{ transform:translateX(-4px); }
.btn-primary{ background:var(--blue); color:#fff; box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:#2c609f; transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:#3a3a3a; transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-sm{ padding:9px 16px; font-size:12.5px; }

/* link with arrow */
.link-more{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--blue); font-weight:600; font-size:15px;
}
.link-more .arr{ width:14px; height:14px; transition:transform .25s; }
.link-more:hover .arr{ transform:translateX(-4px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  height:74px;
}
.nav__logo img{ height:34px; width:auto; }
.nav__menu{ display:flex; align-items:center; gap:26px; list-style:none; margin:0; padding:0; }
.nav__menu a{
  font-size:15px; font-weight:500; color:var(--ink); position:relative; padding:6px 0;
  transition:color .2s;
}
.nav__menu a::after{
  content:""; position:absolute; right:0; bottom:0; height:2px; width:0; background:var(--blue);
  transition:width .25s ease; border-radius:2px;
}
.nav__menu a:hover{ color:var(--blue); }
.nav__menu a:hover::after, .nav__menu a.active::after{ width:100%; }
.nav__menu a.active{ color:var(--blue); }
.nav__right{ display:flex; align-items:center; gap:10px; }
.nav__en{
  font-family:var(--ff-lat); font-size:12.5px; font-weight:600; color:var(--ink);
  padding:8px 12px; border-radius:var(--r-pill); transition:.2s;
}
.nav__en:hover{ background:var(--mint); }
.nav__toggle{ display:none; background:none; border:0; padding:8px; }
.nav__toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; transition:.25s; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--mint); padding-block:clamp(56px,7vw,84px) 0; }
.footer-cta{ text-align:center; max-width:680px; margin-inline:auto; padding-bottom:clamp(48px,6vw,72px); }
.footer-cta .eyebrow{ justify-content:center; }
.footer-cta .eyebrow::after{ content:""; width:26px; height:1.5px; background:currentColor; border-radius:2px; }
.footer-bar{ border-top:1px solid var(--line-soft); }
.footer-bar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding-block:26px; flex-wrap:wrap;
}
.footer-bar__inner img{ height:32px; width:auto; }
.footer-links{ display:flex; gap:22px; list-style:none; margin:0; padding:0; flex-wrap:wrap; }
.footer-links a{ font-size:14px; color:var(--muted); transition:color .2s; }
.footer-links a:hover{ color:var(--blue); }
.footer-credit{ font-family:var(--ff-lat); font-size:12px; color:var(--muted); letter-spacing:.02em; }

/* =========================================================
   CARDS (shared)
   ========================================================= */
.card{
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }

/* article card */
.article-card{ overflow:hidden; display:flex; flex-direction:column; }
.article-card__media{ aspect-ratio:16/7; background:var(--mint-2); overflow:hidden; }
.article-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.article-card:hover .article-card__media img{ transform:scale(1.05); }
.article-card__body{ padding:22px 24px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.article-card__title{ font-size:18px; font-weight:600; line-height:1.5; }
.article-card__excerpt{ font-size:14px; color:var(--muted); line-height:1.85; }
.article-card__meta{ margin-top:auto; padding-top:12px; font-size:12.5px; color:var(--muted); font-family:var(--ff-lat); }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform:translateY(26px); }
html.js .reveal.in{ opacity:1; transform:none; transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal[data-d="1"]{ transition-delay:.08s; }
html.js .reveal[data-d="2"]{ transition-delay:.16s; }
html.js .reveal[data-d="3"]{ transition-delay:.24s; }
html.js .reveal[data-d="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){
  html.js .reveal{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   IMAGE PLACEHOLDER (for assets the user will supply)
   ========================================================= */
.ph{
  position:relative; display:flex; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(135deg, rgba(113,113,113,.05) 0 12px, rgba(113,113,113,.09) 12px 24px),
    var(--mint-2);
  border:1px dashed rgba(113,113,113,.35);
  border-radius:var(--r);
  color:var(--muted);
  overflow:hidden;
}
.ph span{
  font-family:var(--ff-lat); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(253,251,248,.86); padding:6px 12px; border-radius:var(--r-pill);
  border:1px solid var(--line-soft);
}

/* =========================================================
   SECTION HEAD + GRIDS
   ========================================================= */
.sec-head{ max-width:680px; margin-bottom:clamp(34px,4vw,52px); }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ padding-block:clamp(48px,7vw,96px) clamp(20px,4vw,40px); }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center; }
.hero__copy .lead{ color:var(--muted); }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero__media{ position:relative; }
.hero__ph{ aspect-ratio:4/5; width:100%; border-radius:var(--r-lg); }
.hero__chip{
  position:absolute; bottom:18px; right:18px;
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(253,251,248,.92); backdrop-filter:blur(6px);
  border:1px solid var(--line-soft); border-radius:var(--r-pill);
  padding:10px 16px; font-size:13.5px; font-weight:500; box-shadow:var(--shadow);
}
.hero__chip-dot{ width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(47,163,154,.18); }

/* =========================================================
   ABOUT / الجذور (mint band)
   ========================================================= */
.about{ background:var(--mint); }
.about__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(28px,4vw,64px); align-items:center; min-height:clamp(360px,40vw,460px); }
.about__photo{ align-self:end; }
.about__photo img{ width:100%; max-width:360px; margin-inline:auto; height:auto; filter:drop-shadow(0 26px 40px rgba(40,40,40,.12)); }
.about__copy{ padding-block:clamp(40px,5vw,72px); }

/* =========================================================
   PODCAST band (beige)
   ========================================================= */
.podcast{ background:var(--beige); padding-block:clamp(64px,8vw,104px); }
.podcast__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(36px,5vw,72px); align-items:center; }
.platforms{ display:flex; align-items:center; flex-wrap:wrap; gap:22px 26px; margin-top:30px; }
.platforms__img{ height:22px; width:auto; opacity:.92; }
.platforms__name{ font-size:14px; font-weight:600; color:var(--muted); white-space:nowrap; }
.podcast__shows{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.show{
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r);
  padding:30px 24px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.show:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.show__icon{ height:96px; display:flex; align-items:center; justify-content:center; margin-bottom:4px; }
.show__icon img{ max-height:96px; width:auto; }
.show .btn{ margin-top:8px; }

/* =========================================================
   PARTNER CARDS + STATS
   ========================================================= */
.pcard{ padding:26px 26px 28px; display:block; }
.pcard__title{ font-size:19px; font-weight:600; margin:0 0 8px; }
.pcard__desc{ font-size:14px; color:var(--muted); line-height:1.8; margin:0; }
.pcard{ position:relative; }
.pcard::after{
  content:"↖"; position:absolute; left:22px; top:22px; font-size:15px; color:var(--blue);
  opacity:0; transition:.25s ease;
}
.pcard:hover::after{ opacity:1; }

.stats{
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top:clamp(36px,4vw,52px);
  background:var(--mint); border-radius:var(--r); overflow:hidden;
}
.stat{ padding:30px 22px; text-align:center; border-inline-start:1px solid var(--line-soft); }
.stat:last-child{ border-inline-start:0; }
.stat__num{ display:block; font-family:var(--ff-lat); font-size:34px; font-weight:700; color:var(--blue); line-height:1; }
.stat__label{ display:block; margin-top:10px; font-size:14px; color:var(--ink); }

/* =========================================================
   PROGRAMS
   ========================================================= */
.programs{ background:var(--card); }
.prog{ overflow:hidden; display:flex; flex-direction:column; }
.prog__media{ aspect-ratio:16/9; overflow:hidden; background:var(--beige-2); }
.prog__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.prog:hover .prog__media img{ transform:scale(1.05); }
.prog__body{ padding:22px 24px 26px; display:flex; flex-direction:column; gap:10px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ max-width:460px; }
  .about__grid{ grid-template-columns:1fr; }
  .about__photo{ order:2; }
  .about__photo img{ max-width:300px; }
  .podcast__grid{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .podcast__shows{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(3){ border-inline-start:0; }
  .stat:nth-child(odd){ border-inline-start:0; }
  .stat{ border-top:1px solid var(--line-soft); }
  .stat:nth-child(-n+2){ border-top:0; }
}

/* =========================================================
   RESPONSIVE NAV
   ========================================================= */
/* ---- page hero (interior pages) ---- */
.page-hero{ background:var(--mint); padding-block:clamp(48px,7vw,88px); }
.page-hero__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(32px,5vw,64px); align-items:center; }
.page-hero__copy .h-display{ font-size:clamp(34px,5vw,54px); }
.page-hero__photo{ align-self:end; }
.page-hero__photo img{ width:100%; max-width:380px; margin-inline:auto; filter:drop-shadow(0 28px 44px rgba(40,40,40,.14)); }
.page-hero__photo .ph{ aspect-ratio:4/5; }

/* ---- pull / metaphor band ---- */
.note{ font-size:clamp(20px,2.4vw,26px); font-weight:600; color:var(--blue); line-height:1.5; }

/* ---- bio prose ---- */
.prose{ max-width:70ch; }
.prose p{ font-size:16px; line-height:1.95; margin:0 0 20px; }
.prose p:last-child{ margin-bottom:0; }
.prose strong{ font-weight:600; color:var(--ink); }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline{ position:relative; margin-top:clamp(28px,4vw,44px); }
.timeline::before{
  content:""; position:absolute; top:6px; bottom:6px; right:calc(50% - 1px); width:2px;
  background:linear-gradient(var(--green-soft), var(--line)); border-radius:2px;
}
.tl-item{ position:relative; width:50%; padding:0 0 36px; box-sizing:border-box; }
.tl-item:nth-child(odd){ margin-inline-start:50%; padding-inline-start:48px; }
.tl-item:nth-child(even){ margin-inline-end:50%; padding-inline-end:48px; text-align:left; }
.tl-item::after{
  content:""; position:absolute; top:4px; width:15px; height:15px; border-radius:50%;
  background:var(--card); border:3px solid var(--green); z-index:2;
}
.tl-item:nth-child(odd)::after{ right:-7px; }
.tl-item:nth-child(even)::after{ left:-7px; }
.tl-card{
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r);
  padding:22px 24px; box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease;
}
.tl-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.tl-year{ font-family:var(--ff-lat); font-size:13px; font-weight:700; color:var(--blue); letter-spacing:.04em; }
.tl-title{ font-size:18px; font-weight:600; margin:4px 0 8px; }
.tl-desc{ font-size:14px; color:var(--muted); line-height:1.85; margin:0; }

/* =========================================================
   CERTIFICATIONS
   ========================================================= */
.cert-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(30px,4vw,44px); }
.cert{
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r);
  padding:26px 24px; display:flex; flex-direction:column; gap:6px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.cert:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }
.cert__logo{
  width:64px; height:64px; border-radius:14px; margin-bottom:14px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  background:var(--mint-2); border:1px dashed rgba(113,113,113,.3);
}
.cert__logo img{ max-width:78%; max-height:78%; object-fit:contain; }
.cert__logo span{ font-family:var(--ff-lat); font-size:9px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; text-align:center; line-height:1.3; padding:4px; }
.cert__title{ font-size:17px; font-weight:600; line-height:1.4; }
.cert__issuer{ font-size:13.5px; color:var(--blue); }
.cert__year{ font-family:var(--ff-lat); font-size:12.5px; color:var(--muted); margin-top:2px; }

/* =========================================================
   QUOTE / philosophy band
   ========================================================= */
.quote-band{ background:var(--beige); }
.quote{ max-width:820px; margin-inline:auto; text-align:center; }
.quote__mark{ font-family:Georgia, serif; font-size:64px; line-height:.5; color:var(--green-soft); }
.quote__text{ font-size:clamp(22px,3vw,32px); font-weight:600; line-height:1.55; margin:18px 0 0; }
.quote__sig{ margin-top:24px; font-size:15px; color:var(--muted); }

/* Full-bleed image variant of the quote band */
.quote-band--image{
  position:relative; isolation:isolate; overflow:hidden;
  padding-block:clamp(110px,20vh,210px);
}
.quote-band--image .quote-band__bg{
  position:absolute; inset:0; z-index:-2;
  background:url("assets/img-roots-quote.png") center/cover no-repeat;
  transform:scale(1.03);
}
.quote-band--image .quote-band__scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(120% 100% at 50% 40%, rgba(58,30,34,.34), rgba(58,30,34,.6) 80%),
    linear-gradient(180deg, rgba(58,30,34,.5), rgba(58,30,34,.46));
}
.quote-band--image .quote__mark{ color:rgba(255,255,255,.82); }
.quote-band--image .quote__text{
  color:#fff; text-shadow:0 2px 26px rgba(40,18,20,.45);
}
.quote-band--image .quote__sig{
  color:rgba(255,255,255,.86); text-shadow:0 1px 16px rgba(40,18,20,.4);
}

/* =========================================================
   PARTNER CATEGORY ACCORDION (companies page)
   ========================================================= */
.who{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:clamp(30px,4vw,44px); }
.acc{
  background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r);
  overflow:hidden; transition:box-shadow .3s ease, border-color .3s;
}
.acc.open{ box-shadow:var(--shadow); border-color:transparent; }
.acc__head{
  width:100%; background:none; border:0; text-align:right;
  display:flex; align-items:center; gap:16px; padding:24px 26px; font-family:var(--ff-ar);
}
.acc__num{
  flex:none; font-family:var(--ff-lat); font-size:13px; font-weight:700; color:var(--blue);
  width:34px; height:34px; border-radius:50%; background:var(--mint);
  display:flex; align-items:center; justify-content:center;
}
.acc__title{ flex:1; font-size:19px; font-weight:600; }
.acc__icon{ flex:none; width:22px; height:22px; position:relative; transition:transform .3s ease; }
.acc__icon::before, .acc__icon::after{ content:""; position:absolute; background:var(--muted); border-radius:2px; }
.acc__icon::before{ top:10px; left:2px; right:2px; height:2px; }
.acc__icon::after{ left:10px; top:2px; bottom:2px; width:2px; transition:opacity .3s ease; }
.acc.open .acc__icon::after{ opacity:0; }
.acc__body{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.acc__body-inner{ padding:0 26px 26px 76px; }
.acc__desc{ font-size:15px; color:var(--muted); line-height:1.9; margin:0 0 16px; }
.acc__list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
.acc__list li{ position:relative; padding-inline-start:22px; font-size:14.5px; color:var(--ink); }
.acc__list li::before{ content:""; position:absolute; right:0; top:9px; width:8px; height:8px; border-radius:50%; background:var(--green-soft); }

/* philosophy two-up */
.philosophy{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(30px,4vw,40px); }
.phil-card{ background:var(--card); border:1px solid var(--line-soft); border-radius:var(--r); padding:28px 26px; }
.phil-card__icon{ width:44px; height:44px; border-radius:12px; background:var(--mint); display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--blue); }
.phil-card__title{ font-size:18px; font-weight:600; margin:0 0 8px; }
.phil-card__desc{ font-size:14px; color:var(--muted); line-height:1.85; margin:0; }

/* impact band */
.impact{ background:var(--mint); border-radius:var(--r-lg); padding:clamp(36px,5vw,56px); margin-top:clamp(40px,5vw,64px); }
.impact__grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:24px; }
.impact__item{ text-align:center; }
.impact__num{ display:block; font-family:var(--ff-lat); font-size:clamp(34px,4vw,46px); font-weight:700; color:var(--blue); line-height:1; }
.impact__label{ display:block; margin-top:10px; font-size:14.5px; }

@media (max-width: 980px){
  .page-hero__grid{ grid-template-columns:1fr; }
  .page-hero__photo{ order:-1; max-width:320px; margin-inline:auto; }
  .cert-grid{ grid-template-columns:repeat(2,1fr); }
  .philosophy{ grid-template-columns:1fr; }
}
@media (max-width: 760px){
  .who{ grid-template-columns:1fr; }
  .seed-grid{ grid-template-columns:1fr !important; }
  .timeline::before{ right:7px; }
  .tl-item{ width:100%; }
  .tl-item:nth-child(odd), .tl-item:nth-child(even){ margin:0; padding:0 0 30px 0; padding-inline-start:36px; padding-inline-end:0; text-align:right; }
  .tl-item:nth-child(odd)::after, .tl-item:nth-child(even)::after{ right:0; left:auto; }
  .impact__grid{ grid-template-columns:1fr; gap:18px; }
}
@media (max-width: 560px){
  .cert-grid{ grid-template-columns:1fr; }
  .acc__body-inner{ padding-inline:26px; }
}

/* =========================================================
   FULL-BLEED IMAGE HERO + OVERLAY HEADER
   ========================================================= */
.site-header--overlay{
  position:fixed; inset:0 0 auto 0; z-index:60;
  background:transparent; border-bottom-color:transparent;
  backdrop-filter:none; -webkit-backdrop-filter:none;
  transition:background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header--overlay .nav__menu a{ color:#fff; }
.site-header--overlay .nav__menu a::after{ background:#fff; }
.site-header--overlay .nav__en{ color:#fff; }
.site-header--overlay .nav__en:hover{ background:rgba(255,255,255,.16); }
.site-header--overlay .nav__cta{ color:#fff; border-color:rgba(255,255,255,.55); }
.site-header--overlay .nav__cta:hover{ border-color:#fff; color:#fff; background:rgba(255,255,255,.12); }
.site-header--overlay .nav__toggle span{ background:#fff; }
.site-header--overlay .nav__logo img{ filter:brightness(0) invert(1); }
.site-header--overlay.scrolled{
  background:rgba(253,251,248,.86);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--line-soft);
}
.site-header--overlay.scrolled .nav__menu a{ color:var(--ink); }
.site-header--overlay.scrolled .nav__menu a.active{ color:var(--blue); }
.site-header--overlay.scrolled .nav__menu a::after{ background:var(--blue); }
.site-header--overlay.scrolled .nav__en{ color:var(--ink); }
.site-header--overlay.scrolled .nav__en:hover{ background:var(--mint); }
.site-header--overlay.scrolled .nav__cta{ color:var(--ink); border-color:var(--line); }
.site-header--overlay.scrolled .nav__cta:hover{ color:var(--blue); border-color:var(--blue); background:transparent; }
.site-header--overlay.scrolled .nav__toggle span{ background:var(--ink); }
.site-header--overlay.scrolled .nav__logo img{ filter:none; }

.hero-img{
  position:relative; min-height:clamp(580px,88vh,860px);
  display:flex; align-items:flex-end; overflow:hidden; isolation:isolate;
}
.hero-img__slot{ position:absolute; inset:0; z-index:0; }
.hero-img__slot image-slot{ width:100%; height:100%; }
.hero-video{ width:100%; height:100%; object-fit:cover; display:block; background:var(--mint-2); }
.hero-img__scrim{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(to top, rgba(28,28,28,.78) 0%, rgba(28,28,28,.42) 38%, rgba(28,28,28,.08) 66%, rgba(28,28,28,.18) 100%),
    linear-gradient(to left, rgba(28,28,28,.30), rgba(28,28,28,0) 55%);
}
.hero-img__inner{
  position:relative; z-index:2; width:100%; color:#fff;
  padding-block:clamp(120px,16vh,180px) clamp(52px,8vw,104px);
}
.hero-img .eyebrow{ color:#fff; opacity:.95; }
.hero-img .h-display{ color:#fff; text-shadow:0 2px 30px rgba(0,0,0,.25); }
.hero-img .lead{ color:rgba(255,255,255,.92); }
.hero-img .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.55); }
.hero-img .btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,.14); color:#fff; }
.hero-img__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero-img__scroll{
  position:absolute; z-index:2; left:50%; bottom:24px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:7px;
  color:rgba(255,255,255,.85); font-size:12px; letter-spacing:.08em;
}
.hero-img__scroll svg{ width:18px; height:18px; animation:bob 1.8s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }
@media (prefers-reduced-motion: reduce){ .hero-img__scroll svg{ animation:none; } }

/* =========================================================
   TABS
   ========================================================= */
.tabs__nav{
  display:inline-flex; gap:6px; padding:6px; background:var(--mint);
  border-radius:var(--r-pill); margin-bottom:clamp(28px,4vw,40px);
}
.tab{
  border:0; background:transparent; font-family:var(--ff-ar);
  font-size:15px; font-weight:600; color:var(--muted);
  padding:11px 26px; border-radius:var(--r-pill); transition:.25s ease;
}
.tab:hover{ color:var(--ink); }
.tab.active{ background:var(--card); color:var(--blue); box-shadow:var(--shadow-sm); }
.tabs__panel{ display:none; }
.tabs__panel.active{ display:block; animation:fadeUp .5s ease; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(12px);} to{ opacity:1; transform:none;} }

/* =========================================================
   CONSULTATION TYPE CARDS
   ========================================================= */
.ctypes{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; margin-top:clamp(30px,4vw,44px); }
.ctype{
  position:relative; background:var(--card); border:1px solid var(--line-soft);
  border-radius:var(--r-lg); padding:clamp(28px,3vw,40px);
  display:flex; flex-direction:column; gap:18px; overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.ctype:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:transparent; }
.ctype--online{ background:linear-gradient(160deg, var(--mint) 0%, var(--card) 60%); }
.ctype--inperson{ background:linear-gradient(160deg, var(--peach-2) 0%, var(--card) 60%); }
.ctype__top{ display:flex; align-items:center; gap:16px; }
.ctype__icon{
  flex:none; width:56px; height:56px; border-radius:16px; background:var(--card);
  display:flex; align-items:center; justify-content:center; color:var(--blue);
  box-shadow:var(--shadow-sm); border:1px solid var(--line-soft);
}
.ctype__title{ font-size:23px; font-weight:700; }
.ctype__tag{ font-size:13px; font-weight:600; color:var(--blue); }
.ctype__desc{ font-size:15px; color:var(--muted); line-height:1.9; margin:0; }
.ctype__feats{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px; }
.ctype__feats li{ position:relative; padding-inline-start:30px; font-size:14.5px; line-height:1.6; }
.ctype__feats li svg{ position:absolute; right:0; top:2px; width:19px; height:19px; color:var(--green); }
.ctype__foot{ margin-top:auto; padding-top:8px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.ctype__meta{ font-size:13.5px; color:var(--muted); }
.ctype__meta strong{ color:var(--ink); font-size:16px; font-weight:700; }

/* =========================================================
   STEPS (registration stepper)
   ========================================================= */
.steps{ position:relative; max-width:760px; }
.step{ position:relative; display:flex; gap:22px; padding-bottom:34px; }
.step:last-child{ padding-bottom:0; }
.step::before{
  content:""; position:absolute; top:44px; bottom:0; right:21px; width:2px;
  background:linear-gradient(var(--green-soft), var(--line)); border-radius:2px;
}
.step:last-child::before{ display:none; }
.step__num{
  flex:none; width:44px; height:44px; border-radius:50%; z-index:1;
  background:var(--card); border:2px solid var(--green);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-lat); font-weight:700; font-size:16px; color:var(--blue);
}
.step__body{ padding-top:4px; }
.step__title{ font-size:18px; font-weight:600; margin:0 0 6px; }
.step__desc{ font-size:14.5px; color:var(--muted); line-height:1.85; margin:0; }

/* =========================================================
   ARTICLES — featured + grid + filters
   ========================================================= */
.afilters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:clamp(28px,4vw,40px); }
.achip{
  border:1px solid var(--line); background:transparent; font-family:var(--ff-ar);
  font-size:14px; font-weight:500; color:var(--muted);
  padding:9px 18px; border-radius:var(--r-pill); transition:.22s ease;
}
.achip:hover{ color:var(--blue); border-color:var(--blue); }
.achip.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.featured{
  display:grid; grid-template-columns:1.15fr .85fr; gap:0; overflow:hidden;
  border:1px solid var(--line-soft); border-radius:var(--r-lg); background:var(--card);
  margin-bottom:clamp(30px,4vw,48px);
}
.featured__media{ position:relative; min-height:340px; }
.featured__media image-slot, .featured__media .ph{ position:absolute; inset:0; width:100%; height:100%; border-radius:0; }
.featured__badge{
  position:absolute; top:18px; right:18px; z-index:2;
  background:var(--blue); color:#fff; font-size:12.5px; font-weight:600;
  padding:7px 14px; border-radius:var(--r-pill);
}
.featured__body{ padding:clamp(28px,3.5vw,48px); display:flex; flex-direction:column; justify-content:center; gap:14px; }
.featured__cat{ font-size:13px; font-weight:600; color:var(--blue); }
.featured__title{ font-size:clamp(24px,3vw,34px); font-weight:700; line-height:1.3; }
.featured__excerpt{ font-size:15.5px; color:var(--muted); line-height:1.9; }
.featured__meta{ font-family:var(--ff-lat); font-size:13px; color:var(--muted); }

.article-card__cat{ font-size:12.5px; font-weight:600; color:var(--blue); }
.article-card__media image-slot{ width:100%; height:100%; }

/* =========================================================
   ARTICLE DETAIL
   ========================================================= */
.article-hero{ background:var(--mint); padding-block:clamp(96px,12vh,140px) clamp(40px,5vw,60px); }
.article-hero__inner{ max-width:820px; margin-inline:auto; text-align:center; }
.article-hero__cat{ display:inline-block; font-size:13px; font-weight:600; color:var(--blue); margin-bottom:14px; }
.article-hero__title{ font-size:clamp(30px,4.6vw,50px); font-weight:700; line-height:1.2; letter-spacing:-.01em; }
.article-hero__meta{
  display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap;
  margin-top:22px; font-size:14px; color:var(--muted);
}
.article-hero__meta .dot{ width:4px; height:4px; border-radius:50%; background:var(--muted); opacity:.5; }
.article-hero__meta .lat{ font-size:13px; }
.article-cover{ max-width:1000px; margin:0 auto; padding-inline:var(--gutter); margin-top:clamp(-40px,-4vw,-30px); position:relative; z-index:2; }
.article-cover image-slot, .article-cover .ph{ width:100%; aspect-ratio:16/8; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); }

.article-body{ max-width:720px; margin-inline:auto; padding-block:clamp(48px,6vw,80px); }
.article-body p{ font-size:17px; line-height:2; margin:0 0 24px; color:var(--ink); }
.article-body h2{ font-size:clamp(23px,2.6vw,30px); font-weight:700; margin:44px 0 18px; line-height:1.3; }
.article-body h3{ font-size:20px; font-weight:600; margin:32px 0 12px; }
.article-body ul, .article-body ol{ margin:0 0 24px; padding-inline-start:24px; display:flex; flex-direction:column; gap:10px; }
.article-body li{ font-size:17px; line-height:1.85; }
.article-body strong{ font-weight:600; }
.article-body figure{ margin:36px 0; }
.article-body figure image-slot, .article-body figure .ph{ width:100%; aspect-ratio:16/9; border-radius:var(--r); }
.article-body figcaption{ text-align:center; font-size:13px; color:var(--muted); margin-top:12px; }
.article-quote{
  border-inline-start:3px solid var(--green); padding:6px 24px; margin:36px 0;
  font-size:clamp(20px,2.4vw,26px); font-weight:600; line-height:1.6; color:var(--blue);
}
.article-lead{ font-size:clamp(19px,2vw,22px) !important; line-height:1.8 !important; color:var(--muted) !important; font-weight:500; }

.author-box{
  display:flex; align-items:center; gap:20px; margin-top:48px; padding:26px;
  background:var(--mint); border-radius:var(--r);
}
.author-box image-slot{ flex:none; width:72px; height:72px; }
.author-box__name{ font-size:17px; font-weight:600; }
.author-box__role{ font-size:14px; color:var(--muted); }

.share-row{ display:flex; align-items:center; gap:12px; margin-top:32px; padding-top:28px; border-top:1px solid var(--line-soft); }
.share-row span{ font-size:14px; color:var(--muted); }
.share-btn{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--ink); transition:.22s;
}
.share-btn:hover{ background:var(--ink); color:#fff; border-color:var(--ink); transform:translateY(-2px); }

.related{ background:var(--card); }

@media (max-width: 860px){
  .ctypes{ grid-template-columns:1fr; }
  .featured{ grid-template-columns:1fr; }
  .featured__media{ min-height:240px; order:-1; }
}

/* =========================================================
   ORIGINAL RESPONSIVE NAV
   ========================================================= */
@media (max-width: 860px){
  .nav__menu{
    position:fixed; inset:74px 0 auto 0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:var(--bg); border-bottom:1px solid var(--line-soft);
    padding:8px var(--gutter) 18px;
    transform:translateY(-130%); transition:transform .3s ease; box-shadow:var(--shadow);
  }
  .nav__menu.open{ transform:none; }
  .nav__menu a{ width:100%; padding:13px 0; border-bottom:1px solid var(--line-soft); }
  .nav__menu a::after{ display:none; }
  .nav__toggle{ display:block; }
  .nav__cta{ display:none; }
}

/* =========================================================
   CREATIVE WELLNESS — interactive zoom field
   ========================================================= */
.cw{
  position:relative; overflow:hidden;
  background:linear-gradient(180deg, var(--mint) 0%, var(--mint-2) 100%);
  padding-block:clamp(64px,9vw,120px);
}
.cw__media{
  position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none;
}
.cw__video{
  width:100%; height:100%; object-fit:cover; display:block;
  opacity:.28; mix-blend-mode:multiply;
  animation:cwDrift 42s ease-in-out infinite alternate;
}
.cw__veil{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(233,242,232,.55), rgba(234,242,232,.35) 45%, rgba(233,238,236,.6));
}
.cw__head{ text-align:center; position:relative; z-index:2; }
.cw__head .muted{ max-width:48ch; margin-inline:auto; margin-top:14px; }

.cw__field{
  position:relative; z-index:2;
  max-width:1080px; margin:clamp(36px,6vw,72px) auto 0;
  height:clamp(460px,58vw,620px);
  transition:transform .6s cubic-bezier(.22,.85,.18,1), filter .5s ease, opacity .5s ease;
}
.cw__spin{ position:absolute; inset:0; }
.cw__orbit{
  position:absolute; inset:8% 6%; border:1px dashed var(--line);
  border-radius:50%; opacity:.5; pointer-events:none;
  animation:cwSpinSlow 60s linear infinite;
}
.cw__orbit::after{
  content:""; position:absolute; inset:20%; border:1px dashed var(--line);
  border-radius:50%; opacity:.7;
  animation:cwSpinSlow 44s linear infinite reverse;
}

.cw-dot{
  position:absolute; left:var(--x); top:var(--y);
  transform:translate(-50%,-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  background:none; border:0; padding:6px; cursor:pointer;
  font-family:var(--ff-ar); text-align:center;
  transition:transform .3s cubic-bezier(.22,.85,.18,1);
  will-change:translate;
}
.cw-dot__ring{
  position:relative; width:20px; height:20px; border-radius:50%;
  background:var(--green); 
  box-shadow:0 0 0 6px rgba(47,163,154,.16), 0 0 0 14px rgba(47,163,154,.07);
  transition:transform .35s ease, background .3s ease, box-shadow .3s ease;
}
.cw-dot__ring::before{
  content:""; position:absolute; inset:-7px; border-radius:50%;
  border:1px solid var(--green); opacity:.4;
  animation:cwPulse 3.4s ease-out infinite;
}
/* spinning arc — dot rotates around itself */
.cw-dot__ring::after{
  content:""; position:absolute; inset:-6px; border-radius:50%;
  background:conic-gradient(from 0deg, transparent 0 55%, var(--green) 78%, transparent 92%);
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
          mask:radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
  animation:cwSpin 6s linear infinite;
}
.cw-dot__num{
  font-size:12px; font-weight:600; letter-spacing:.12em; color:var(--muted);
  transition:color .3s ease;
}
.cw-dot__label{
  font-size:clamp(15px,1.5vw,18px); font-weight:600; color:var(--ink);
  white-space:nowrap; transition:color .3s ease;
}
.cw-dot:hover, .cw-dot:focus-visible{ outline:none; transform:translate(-50%,-50%) scale(1.06); }
.cw-dot:hover .cw-dot__ring, .cw-dot:focus-visible .cw-dot__ring{
  background:var(--blue); transform:scale(1.25);
  box-shadow:0 0 0 8px rgba(52,112,183,.16), 0 0 0 18px rgba(52,112,183,.07);
}
.cw-dot:hover .cw-dot__ring::after, .cw-dot:focus-visible .cw-dot__ring::after{
  background:conic-gradient(from 0deg, transparent 0 55%, var(--blue) 78%, transparent 92%);
  animation-duration:1.6s;
}
.cw-dot:hover .cw-dot__label, .cw-dot:focus-visible .cw-dot__label{ color:var(--blue); }
.cw-dot:hover .cw-dot__num, .cw-dot:focus-visible .cw-dot__num{ color:var(--blue); }

/* field recedes while a gate is open */
.cw.is-zoomed .cw__field{ transform:scale(1.12); filter:blur(3px); opacity:.3; }

/* zoom stage */
.cw-stage{
  position:fixed; inset:0; z-index:90;
  display:flex; align-items:center; justify-content:center;
  padding:clamp(16px,4vw,52px); pointer-events:none;
}
.cw-stage.is-open{ pointer-events:auto; }
.cw-stage__backdrop{
  position:absolute; inset:0; background:rgba(22,34,31,.5);
  backdrop-filter:blur(7px); -webkit-backdrop-filter:blur(7px);
  opacity:0; transition:opacity .45s ease;
}
.cw-stage.is-open .cw-stage__backdrop{ opacity:1; }

.cw-panel{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr 1fr;
  width:min(1040px,94vw); height:min(640px,86vh);
  background:var(--bg); border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-lg);
  opacity:0; transform:translate(var(--tx,0),var(--ty,0)) scale(.16);
  transition:transform .62s cubic-bezier(.2,.82,.2,1), opacity .42s ease;
  will-change:transform,opacity;
}
.cw-stage.is-open .cw-panel{ opacity:1; transform:translate(0,0) scale(1); }
.cw-panel__media{ position:relative; background:var(--mint-2); }
.cw-panel__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.cw-panel__body{
  display:flex; flex-direction:column; align-items:flex-start;
  justify-content:center; gap:6px; padding:clamp(28px,4vw,56px); overflow:auto;
}
.cw-panel__body .h2{ color:var(--blue); margin:4px 0 2px; }
.cw-panel__body .body{ margin:10px 0 0; }
.cw-panel__back{ margin-top:28px; }

@keyframes cwPulse{
  0%{ transform:scale(1); opacity:.45; }
  70%{ transform:scale(1.9); opacity:0; }
  100%{ transform:scale(1.9); opacity:0; }
}
@keyframes cwSpin{ to{ transform:rotate(360deg); } }
@keyframes cwSpinSlow{ to{ transform:rotate(360deg); } }
@keyframes cwFloat{
  0%{ translate:0 0; } 50%{ translate:0 -12px; } 100%{ translate:0 0; }
}
@keyframes cwDrift{
  0%{ transform:scale(1.12) translate(-2.5%,-1.5%); }
  100%{ transform:scale(1.2) translate(2.5%,2%); }
}
@keyframes cwDrift2{
  0%{ transform:scale(1.12) translate(2%,-2%) rotate(1deg); }
  100%{ transform:scale(1.04) translate(-2%,3%) rotate(-1deg); }
}

@media (max-width:820px){
  .cw__field{
    height:auto; max-width:560px;
  }
  .cw__spin{
    position:static; display:flex; flex-direction:column; gap:12px;
  }
  .cw__orbit{ display:none; }
  .cw-dot{
    position:static; transform:none; animation:none;
    flex-direction:row; gap:12px;
    width:100%; justify-content:flex-start;
    background:var(--bg); border:1px solid var(--line-soft);
    border-radius:var(--r-pill); padding:12px 20px; box-shadow:var(--shadow-sm);
  }
  .cw-dot:hover, .cw-dot:focus-visible{ transform:none; }
  .cw-dot__label{ white-space:normal; }
  .cw-panel{ grid-template-columns:1fr; height:min(86vh,720px); }
  .cw-panel__media{ min-height:34vh; }
}

@media (prefers-reduced-motion: reduce){
  .cw-dot__ring::before, .cw-dot__ring::after,
  .cw-dot, .cw__orbit, .cw__orbit::after,
  .cw__video{ animation:none; }
  .cw__field, .cw-panel, .cw-stage__backdrop{ transition-duration:.001ms; }
}

/* =========================================================
   RESOURCES — downloadable cards
   ========================================================= */
.res-grid{ margin-top:clamp(32px,5vw,56px); }
.res-tabs{ display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.res-tab{
  display:inline-flex; align-items:center;
  font-size:15px; font-weight:600; color:var(--ink);
  padding:10px 22px; border:1px solid var(--line); border-radius:var(--r-pill);
  background:var(--bg); transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.res-tab:hover{ background:var(--blue); color:#fff; border-color:var(--blue); }
.res-card{
  display:flex; flex-direction:column;
  background:var(--bg); border:1px solid var(--line-soft);
  border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease;
}
.res-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.res-card__media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--mint-2); }
.res-card__media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.res-card:hover .res-card__media img{ transform:scale(1.05); }
.res-card__badge{
  position:absolute; top:14px; inset-inline-start:14px;
  font-size:12px; font-weight:600; color:#fff;
  padding:5px 12px; border-radius:var(--r-pill);
  backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
}
.res-card__badge--img{ background:rgba(47,163,154,.92); }
.res-card__badge--pdf{ background:rgba(52,112,183,.92); }
.res-card__badge--vid{ background:rgba(197,110,90,.94); }
.res-card__body{ display:flex; flex-direction:column; gap:6px; padding:22px 22px 24px; flex:1; }
.res-card__title{ font-size:18px; font-weight:600; line-height:1.4; color:var(--ink); }
.res-card__meta{ font-size:13px; color:var(--muted); letter-spacing:.02em; }
.res-card__dl{
  margin-top:auto; align-self:flex-start;
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--blue);
  padding:9px 16px; border:1px solid var(--blue); border-radius:var(--r-pill);
  transition:background .2s ease, color .2s ease;
}
.res-card__dl svg{ width:15px; height:15px; }
.res-card__dl:hover{ background:var(--blue); color:#fff; }

/* =========================================================
   WATCH — YouTube section
   ========================================================= */
.watch{ background:var(--beige); padding-block:clamp(64px,9vw,110px); overflow:hidden; }
.vslider{
  position:relative; margin-top:clamp(32px,5vw,52px);
  display:flex; align-items:center; gap:12px;
}
.vslider__track{
  display:flex; gap:22px; overflow-x:auto; scroll-behavior:smooth;
  scroll-snap-type:x mandatory; padding:34px 6px; flex:1;
  scrollbar-width:none;
}
.vslider__track::-webkit-scrollbar{ display:none; }
.vcard{
  flex:0 0 clamp(260px,32vw,360px); scroll-snap-align:center;
  cursor:pointer; transition:transform .35s cubic-bezier(.22,.85,.18,1);
}
.vcard:hover{ transform:scale(1.07); z-index:3; }
.vcard__media{
  position:relative; aspect-ratio:16/9; border-radius:var(--r-lg); overflow:hidden;
  background:var(--mint-2); box-shadow:var(--shadow);
  transition:box-shadow .35s ease;
}
.vcard:hover .vcard__media{ box-shadow:var(--shadow-lg); }
.vcard__media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.vcard__media iframe{ width:100%; height:100%; border:0; display:block; }
.vcard__play{
  position:absolute; inset:0; margin:auto; width:60px; height:60px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.92); color:var(--blue); border-radius:50%;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  transition:transform .3s ease, background .3s ease;
}
.vcard__play svg{ width:24px; height:24px; margin-inline-start:3px; }
.vcard:hover .vcard__play{ transform:scale(1.12); background:#fff; }
.vcard__title{
  font-size:17px; font-weight:600; line-height:1.45; color:var(--ink);
  margin-top:16px; padding-inline:4px;
}
.vslider__nav{
  flex:0 0 auto; width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg); border:1px solid var(--line); color:var(--ink);
  cursor:pointer; transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.vslider__nav svg{ width:22px; height:22px; }
.vslider__nav:hover{ background:var(--blue); color:#fff; border-color:var(--blue); }

@media (max-width:820px){
  .vslider__nav{ display:none; }
  .vslider__track{ padding-inline:0; }
  .vcard{ flex-basis:78vw; }
  .vcard:hover{ transform:none; }
}
