/* ============================================================
   SHENG CHI FOUNDATION — brand components (global default look)
   Loads after components.css. Everything here is SCF-branded and
   uses the :root (SCF) tokens. It must NOT restyle .ls-* classes
   (those keep the Learning Success look for landing pages).
   ============================================================ */

/* ============================================================
   ASTRA CHROME REBRAND  (interim — until the Astra Pro header
   is retired). The site header/footer are built with Astra Pro's
   Header/Footer Builder and inherit the OLD green global colours
   (--ast-global-color-0 = #137547, etc.). Remap Astra's global
   colour variables to the SCF brand so the header chrome (mobile
   toggle, buttons, links, background) stops reading green — no
   Customizer edits needed. !important wins over Astra's dynamic
   CSS regardless of load order.
   NOTE: the header LOGO must still be swapped in Customizer
   (Site Identity) — CSS can't replace the uploaded image.
   ============================================================ */
:root {
  --ast-global-color-0: #c8972f !important;  /* green -> gold (brand/accent) */
  --ast-global-color-1: #9a6f1c !important;  /* dark green -> gold-dark (hover) */
  --ast-global-color-4: #f6f2e9 !important;  /* greenish bg -> warm paper */
  --ast-global-color-8: #7a6f61 !important;  /* muted green -> muted ink */
}
/* Mobile menu toggle → strong ink pill (legible, on-brand) */
.ast-mobile-menu-trigger-fill,
.main-header-menu-toggle.ast-mobile-menu-trigger-fill {
  background-color: var(--ink) !important;
  color: #fff !important;
}

/* ============================================================
   SITE FOOTER  (rendered site-wide via functions.php -> patterns/footer.php)
   Dark ink surface, gold accents. Replaces the LS footer entirely.
   ============================================================ */
.scf-footer {
  background: var(--ink);
  color: #cdbf9f;
  padding: 60px 32px 34px;
  /* Stop Manrope ligating "(c)" -> © in "501(c)(3)". */
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0;
}
.scf-footer__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(224, 180, 88, 0.18);
}
.scf-footer__brand img {
  height: 68px;
  width: auto;
  margin-bottom: 16px;
}
.scf-footer__brand p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: #b9a988;
  margin: 0;
  max-width: 340px;
}
.scf-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scf-footer__links li { margin: 0; }
.scf-footer__links a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: #d7c9a8;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.scf-footer__links a:hover { color: var(--gold-light); }
.scf-footer__bar {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.scf-footer__bar span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #8c7f68;
}
.scf-footer__bar span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}
@media (max-width: 720px) {
  .scf-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .scf-footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   HOME PAGE  (pattern shengchi-foundation/scf-home)
   Full-bleed brand sections. Each outer section is an alignfull
   wp:group with one of these classes; inner content is capped to
   --container-xl. Photo slots are marked for real images later.
   ============================================================ */
.scf-sec { padding: 88px 32px; }
.scf-sec__in { max-width: var(--container-xl); margin: 0 auto; }
.scf-eyebrow {
  font-family: var(--font-body); font-weight: var(--weight-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  font-size: var(--text-sm); color: var(--gold-dark); margin: 0 0 14px;
}
.scf-lead { font-size: var(--text-lg); line-height: var(--leading-relaxed); color: var(--text-body); }

/* Inline content links inside home sections (not buttons — those set their own
   colour). Robust even if theme.json global link styles are overridden. */
.scf-hero p a, .scf-sec p a {
  color: var(--text-link); text-decoration: underline; text-underline-offset: 2px;
}
.scf-hero p a { color: var(--gold-light); }

/* Buttons — SCF (sharper than the LS pill; disciplined) */
.scf-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: var(--weight-bold); font-size: 1.02rem;
  padding: 15px 30px; border-radius: var(--radius-sm); text-decoration: none;
  border: none; cursor: pointer; line-height: 1;
  transition: filter var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.scf-btn:active { transform: scale(0.97); }
.scf-btn--red   { background: var(--brand-red); color: #fff; box-shadow: var(--shadow-md); }
.scf-btn--red:hover { filter: brightness(0.94); }
.scf-btn--gold  { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-md); }
.scf-btn--gold:hover { filter: brightness(0.96); }
.scf-btn--ghost { background: transparent; color: #f0e6cf; border: 1.5px solid rgba(224,180,88,0.5); }
.scf-btn--ghost:hover { background: rgba(224,180,88,0.12); }
.scf-btn--ink   { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.scf-btn--ink:hover { background: var(--surface-sunken); }

/* --- Hero --- */
.scf-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #e6d9bf;
  padding: 104px 32px 112px;
}
.scf-hero__in { max-width: var(--container-xl); margin: 0 auto; position: relative; z-index: 1; }
/* Faded gold 正氣 brush watermark (real brush master, recoloured). */
.scf-hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -1%;
  width: min(46%, 600px);
  background: url('../img/zhengqi-gold.png') right center / contain no-repeat;
  opacity: 0.10; z-index: 0; pointer-events: none;
}
.scf-hero__copy { max-width: 40rem; }
.scf-hero h1 {
  color: #fff; font-size: var(--text-4xl); font-weight: 600;
  line-height: 1.03; margin: 0 0 20px;
}
.scf-hero p { font-size: var(--text-lg); color: #d8c9ab; margin: 0 0 30px; max-width: 34rem; }
.scf-hero .scf-eyebrow { color: var(--gold-light); }
.scf-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Mission statement strip --- */
.scf-mission { background: var(--surface-card); border-bottom: 1px solid var(--border-subtle); }
.scf-mission .scf-sec__in { max-width: var(--container-md); text-align: center; }
.scf-mission h2 { font-size: var(--text-2xl); margin: 0 0 10px; }
.scf-mission p { font-size: var(--text-lg); color: var(--text-body); margin: 0; }

/* --- Who we help (olive-accent cards) --- */
.scf-who { background: var(--surface-page); }
.scf-who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.scf-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-top: 4px solid var(--olive); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.scf-card h3 { font-size: var(--text-xl); margin: 0 0 10px; }
.scf-card p { font-size: var(--text-base); color: var(--text-body); margin: 0; }

/* --- Approach / transformation (ink band, gold accents) --- */
.scf-approach { background: var(--ink-raised); color: #d8c9ab; }
.scf-approach h2 { color: #fff; font-size: var(--text-2xl); max-width: 20em; }
.scf-approach .scf-lead { color: #cdbf9f; max-width: 42rem; }
.scf-approach__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 36px; }
.scf-approach__row h3 { color: var(--gold-light); font-size: var(--text-lg); margin: 0 0 8px; }
.scf-approach__row p { color: #bdae8d; font-size: var(--text-base); margin: 0; }

/* --- Impact / donate band (full red) --- */
.scf-impact { background: var(--brand-red); color: #fff; text-align: center; }
.scf-impact .scf-sec__in { max-width: var(--container-md); }
.scf-impact h2 { color: #fff; font-size: var(--text-3xl); margin: 0 0 14px; }
.scf-impact p { font-size: var(--text-lg); color: #ffe3df; margin: 0 0 30px; }

/* --- Ways to help / train --- */
.scf-ways { background: var(--surface-page); }
.scf-ways__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 34px; }
.scf-ways .scf-card { border-top-color: var(--gold); }
.scf-ways .scf-card .scf-btn { margin-top: 18px; }

/* --- Pull quote --- */
.scf-quote { background: var(--surface-card); text-align: center; }
.scf-quote blockquote {
  max-width: var(--container-md); margin: 0 auto; border: 0; padding: 0;
}
.scf-quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: var(--text-2xl); line-height: 1.3; color: var(--text-strong); margin: 0 0 12px;
}
.scf-quote cite { font-family: var(--font-body); font-style: normal; color: var(--text-muted); font-size: var(--text-base); }

@media (max-width: 900px) {
  .scf-who__grid, .scf-approach__row { grid-template-columns: 1fr; }
  .scf-ways__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .scf-hero h1 { font-size: var(--text-3xl); }
  .scf-hero__zq { opacity: 0.07; }
}

/* ============================================================
   INTERIOR PAGES  (About / Our Mission / Who We Help / Contact)
   Reuse .scf-sec + .scf-card; these add a compact page hero, a
   readable prose column, a values grid, and a contact layout.
   ============================================================ */
.scf-phero { background: var(--ink); color: #e6d9bf; padding: 78px 32px 66px; position: relative; overflow: hidden; }
.scf-phero::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; right: -2%; width: min(38%, 460px);
  background: url('../img/zhengqi-gold.png') right center / contain no-repeat;
  opacity: 0.08; z-index: 0; pointer-events: none;
}
.scf-phero__in { max-width: var(--container-lg); margin: 0 auto; position: relative; z-index: 1; }
.scf-phero .scf-eyebrow { color: var(--gold-light); }
.scf-phero h1 { color: #fff; font-size: var(--text-3xl); font-weight: 600; line-height: 1.05; margin: 0 0 14px; }
.scf-phero p { font-size: var(--text-lg); color: #d8c9ab; margin: 0; max-width: 40rem; }

/* Readable prose column (About / Mission body copy) */
.scf-prose { background: var(--surface-card); }
.scf-prose .scf-sec__in { max-width: var(--container-md); }
.scf-prose h2 { font-size: var(--text-2xl); margin: 1.4em 0 0.5em; }
.scf-prose > .scf-sec__in > h2:first-child,
.scf-prose > .scf-sec__in > *:first-child { margin-top: 0; }
.scf-prose h3 { font-size: var(--text-xl); margin: 1.3em 0 0.4em; }
.scf-prose p { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-body); margin: 0 0 1.1em; }
.scf-prose p a { color: var(--text-link); text-decoration: underline; text-underline-offset: 2px; }
.scf-prose blockquote {
  border-left: 4px solid var(--gold); margin: 1.6em 0; padding: 4px 0 4px 22px;
}
.scf-prose blockquote p { font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); color: var(--text-strong); margin: 0; }

/* Values grid (Mission page) */
.scf-values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.scf-value { background: var(--surface-card); border: 1px solid var(--border-subtle); border-left: 4px solid var(--gold); border-radius: var(--radius-md); padding: 22px 24px; }
.scf-value h3 { font-size: var(--text-lg); margin: 0 0 6px; }
.scf-value p { margin: 0; font-size: var(--text-base); color: var(--text-body); }

/* Contact layout */
.scf-contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; margin-top: 30px; align-items: start; }
.scf-contact__info p { margin: 0 0 16px; font-size: var(--text-md); color: var(--text-body); }
.scf-contact__info a { color: var(--text-link); text-decoration: underline; text-underline-offset: 2px; }
.scf-contact__label { font-family: var(--font-body); font-weight: var(--weight-bold); text-transform: uppercase; letter-spacing: var(--tracking-caps); font-size: var(--text-xs); color: var(--text-muted); display: block; margin-bottom: 2px; }
.scf-formslot { background: var(--surface-card); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 28px; color: var(--text-muted); font-size: var(--text-base); }
@media (max-width: 820px) {
  .scf-values__grid { grid-template-columns: 1fr; }
  .scf-contact__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   THEME-OWNED SITE HEADER  (.scf-header)
   Rendered from functions.php via wp_body_open; Astra's own
   header (#masthead) is hidden so this is the only header —
   fully independent of Astra Pro and the Header/Footer Builder.
   ============================================================ */
#masthead { display: none !important; }   /* hide Astra's built-in header */

/* Full-width pattern pages (body.scf-fullwidth — set from functions.php): remove
   Astra's boxed container padding + the duplicate page title so our full-bleed
   sections run edge to edge. Pairs with the 'page-builder' content-layout filter. */
.scf-fullwidth .entry-header,
.scf-fullwidth .ast-single-post .entry-title,
.scf-fullwidth .entry-title { display: none; }
.scf-fullwidth #primary,
.scf-fullwidth .site-content > .ast-container { max-width: 100%; padding-left: 0; padding-right: 0; margin: 0; }
.scf-fullwidth .entry-content { margin: 0; }
/* Full-bleed sections span the (already full-width) content area cleanly, with no
   alignfull negative-margin overflow. */
.scf-fullwidth .wp-block-group.alignfull { margin-left: 0; margin-right: 0; max-width: 100%; }

.scf-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}
.scf-header__in {
  max-width: var(--container-xl); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 84px;
}
.scf-header__brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.scf-header__mark { height: 50px; width: auto; display: block; }
.scf-header__word {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--ink);
}
.scf-header__word small {
  font-family: var(--font-body); font-weight: var(--weight-bold);
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 3px;
}
@media (max-width: 480px) { .scf-header__word { display: none; } }

.scf-menu { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0;
  /* stop Manrope ligating "(c)" -> © in menu labels like "501(c)(3)" */
  font-variant-ligatures: none; font-feature-settings: "liga" 0, "clig" 0, "dlig" 0; }
.scf-menu li { margin: 0; position: relative; }
.scf-menu a {
  font-family: var(--font-body); font-weight: var(--weight-medium);
  font-size: 1rem; color: var(--text-body); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.scf-menu > li > a { padding: 8px 0; display: inline-block; }
.scf-menu a:hover,
.scf-menu .current-menu-item > a,
.scf-menu .current_page_item > a { color: var(--gold-dark); }

/* Donate item -> red pill (add CSS class "scf-nav-donate" to the menu item) */
.scf-menu .scf-nav-donate > a {
  background: var(--brand-red); color: #fff !important;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: var(--weight-bold); box-shadow: var(--shadow-sm);
}
.scf-menu .scf-nav-donate > a:hover { filter: brightness(0.94); }

/* Dropdowns */
.scf-menu .sub-menu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0;
  min-width: 210px; background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.scf-menu li:hover > .sub-menu,
.scf-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.scf-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); }
.scf-menu .sub-menu a:hover { background: var(--color-primary-subtle); }

/* Mobile hamburger — hidden on desktop */
.scf-header__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 11px; border: 0; cursor: pointer;
  background: var(--ink); border-radius: var(--radius-sm);
}
.scf-header__toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }

@media (max-width: 900px) {
  .scf-header__toggle { display: inline-flex; }
  .scf-header__nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    background: #fff; border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg); padding: 12px 24px 20px;
  }
  .scf-header.is-open .scf-header__nav { display: block; }
  .scf-menu { flex-direction: column; align-items: stretch; gap: 2px; }
  .scf-menu > li > a { padding: 12px 4px; border-bottom: 1px solid var(--border-subtle); }
  .scf-menu .scf-nav-donate > a { display: inline-block; margin-top: 10px; }
  .scf-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; }
  .scf-header.is-open .scf-header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .scf-header.is-open .scf-header__toggle span:nth-child(2) { opacity: 0; }
  .scf-header.is-open .scf-header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Keep the sticky header clear of the WP admin bar for logged-in editors */
.admin-bar .scf-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .scf-header { top: 46px; } }

/* ============================================================
   LEARNING SUCCESS LANDING CHROME
   .ls-header (LS logo + landing nav) and .ls-landing-footer,
   shown only on pages using the "Learning Success Landing"
   template. Reuses the .scf-header layout + mobile toggle; the
   LS look comes from the .ls-pattern wrapper tokens (Lexend +
   blue palette), with menu accents overridden to LS blue.
   ============================================================ */
.ls-header__left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.ls-header__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.ls-header__brand img { height: 46px; width: auto; display: block; }
.ls-header__partner {
  display: inline-flex; align-items: center; gap: 8px; max-width: 230px;
  padding-left: 16px; border-left: 1px solid var(--border-subtle);
  font-family: var(--font-body); font-size: 0.72rem; line-height: 1.2;
  color: var(--text-muted); text-decoration: none;
}
.ls-header__partner img { height: 24px; width: auto; flex-shrink: 0; display: block; }
.ls-header__partner strong { color: var(--text-body); font-weight: var(--weight-bold); }
.ls-header__partner:hover strong { color: var(--color-primary); text-decoration: underline; }
@media (max-width: 1024px) { .ls-header__partner { display: none; } }

/* Two-row LS landing header on desktop: logo + partnership note on top, the
   landing nav on its own row below (a 6-item menu doesn't fit one row beside
   the logo + note). Collapses to the hamburger on mobile via the base rules. */
@media (min-width: 901px) {
  .ls-header .scf-header__in { flex-wrap: wrap; row-gap: 4px; padding-top: 12px; padding-bottom: 12px; min-height: 0; }
  .ls-header .ls-header__left { flex: 1 1 100%; justify-content: space-between; }
  .ls-header .ls-header__partner { border-left: 0; padding-left: 0; }
  .ls-header .scf-header__nav { flex: 1 1 100%; }
  .ls-header .ls-menu { justify-content: center; flex-wrap: wrap; gap: 4px 24px; }
  .ls-header .ls-menu > li > a { white-space: nowrap; padding: 6px 0; }
}
.ls-menu a:hover,
.ls-menu .current-menu-item > a,
.ls-menu .current_page_item > a { color: var(--color-primary); }   /* blue inside .ls-pattern */
.ls-menu .sub-menu a:hover { background: var(--color-primary-subtle); color: var(--color-primary-press); }

.ls-landing-footer { background: var(--blue-900); color: var(--blue-200); padding: 22px 32px; }
.ls-landing-footer__in {
  max-width: var(--container-xl); margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 16px 28px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: var(--text-sm);
}
.ls-landing-footer__spon { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-200); text-decoration: none; }
.ls-landing-footer__spon img { height: 26px; width: auto; display: block; }
.ls-landing-footer__spon strong { color: #fff; font-weight: var(--weight-bold); }
.ls-landing-footer__spon:hover strong { text-decoration: underline; text-underline-offset: 2px; }
.ls-landing-footer__legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ls-landing-footer__links { display: flex; gap: 18px; }
.ls-landing-footer a { color: var(--blue-200); text-decoration: none; }
.ls-landing-footer a:hover { color: #fff; }

/* ============================================================
   LEGACY ASTRA NAV THEMING  (dormant — Astra's #masthead is now
   hidden and the theme renders .scf-header instead. Kept only in
   case the Astra header is ever re-enabled.)
   ============================================================ */
   Loads after components.css, so these override the Learning
   Success blue nav declarations there with SCF tokens. The base
   menu link colour already uses var(--text-body) (SCF soft-ink);
   here we only re-point the hover / active / dropdown accents and
   add the SCF Donate CTA. No nav markup is output in PHP.
   ============================================================ */

/* Hover + current item → brand gold */
.main-header-menu .menu-item > a:hover,
.ast-nav-menu .menu-item > a:hover,
.ast-nav-menu .current-menu-item > a,
.ast-hfb-menu-1 .menu-item > a:hover,
.ast-hfb-menu-1 .current-menu-item > a {
  color: var(--color-primary-hover);
}

/* Dropdown panel hover → warm gold-tint */
.ast-nav-menu .sub-menu .menu-item > a:hover,
.main-header-menu .sub-menu .menu-item > a:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary-press);
}

/* Optional Donate CTA — add the CSS class "scf-nav-donate" to the Donate menu
   item (Appearance -> Menus -> item -> CSS Classes). Renders as a red pill
   (donation = energy/red in the SCF brand). */
.menu-item.scf-nav-donate > a {
  background: var(--brand-red);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: var(--weight-bold);
  transition: filter var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.menu-item.scf-nav-donate > a:hover { filter: brightness(0.94); color: #fff !important; }
.menu-item.scf-nav-donate > a:active { transform: scale(0.96); }

/* Optional gold pill CTA — CSS class "scf-nav-cta" (ink text on gold). */
.menu-item.scf-nav-cta > a {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: var(--weight-bold);
}
.menu-item.scf-nav-cta > a:hover { filter: brightness(0.96); }
