@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   ONG ALAFIA 2050 - Design System
   Bien-être, résilience et développement durable au Bénin
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Color Tokens - Brand ALAFIA 2050 */
  --color-primary:       #355087;
  --color-primary-light: #4f6aa2;
  --color-primary-dark:  #243864;
  --color-secondary:     #fecb3e;
  --color-accent:        #007efc;
  --color-accent-hover:  #0065d6;
  --color-cta:           #d53439;
  --color-cta-hover:     #b9272d;
  --color-green:         #2a8758;

  --color-bg:            #fdfbf7;
  --color-bg-alt:        #f0f3f8;
  --color-bg-dark:       #1a2540;
  --color-surface:       #ffffff;
  --color-surface-hover: #f5f5f0;

  --color-text:          #1a1a1a;
  --color-text-light:    #5a5a4a;
  --color-text-muted:    #8a8a7a;
  --color-text-inverse:  #f5f5f0;

  --color-border:        #dce8ea;
  --color-border-light:  #eef4f5;

  --color-success:       #10b981;
  --color-warning:       #f59e0b;
  --color-error:         #ef4444;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width:      1200px;
  --max-width-narrow: 800px;
  --pre-header-height: 0px;
  --header-height:  132px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 50px -12px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-header:  100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

.ampersand {
  font-family: var(--font-body);
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
}

.numeric-text {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  font-style: normal;
  font-variant-numeric: lining-nums tabular-nums;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p + p {
  margin-top: var(--space-md);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.section {
  padding: var(--space-5xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inverse);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section--dark .section__subtitle {
  color: rgba(240, 249, 250, 0.7);
}

.section--dark .section__label {
  color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-cta);
  color: #fff;
  border-color: var(--color-cta);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--white {
  background-color: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}

.btn--white:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-bg-alt);
  color: var(--color-primary-dark);
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
}

/* ============================================================
   Header / Navigation - inspiration pS-Eau
   ============================================================ */

.pre-header {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background-color: #fff;
  border-bottom: 1px solid #eef2f7;
}

.header--scrolled {
  box-shadow: 0 8px 24px rgba(14, 40, 78, 0.08);
}

.home-page .header {
  transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.home-page .header:not(.header--scrolled) {
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.home-page .header:not(.header--scrolled) .nav-secondary__link,
.home-page .header:not(.header--scrolled) .site-topics__link {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.home-page .header:not(.header--scrolled) .nav-secondary__link:hover,
.home-page .header:not(.header--scrolled) .site-topics__link:hover {
  color: var(--color-secondary);
}

.home-page .header:not(.header--scrolled) .header__social-link {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.home-page .header:not(.header--scrolled) .header__social-link:hover,
.home-page .header:not(.header--scrolled) .header__social-link:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary-dark);
}

.home-page .header:not(.header--scrolled) .header__lang {
  border-right-color: rgba(255, 255, 255, 0.28);
}

.home-page .header:not(.header--scrolled) .header__lang-toggle {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .header:not(.header--scrolled) .header__lang-toggle:hover,
.home-page .header:not(.header--scrolled) .header__lang-toggle:focus-visible {
  color: #fff;
}

.home-page .header:not(.header--scrolled) .header__lang-toggle:focus-visible {
  outline-color: rgba(255, 255, 255, 0.34);
}

.home-page .header:not(.header--scrolled) .header__btn-search,
.home-page .header:not(.header--scrolled) .header__mobile-search {
  background: transparent;
  border-color: transparent;
  color: #fff;
}

.home-page .header:not(.header--scrolled) .header__btn-search:hover,
.home-page .header:not(.header--scrolled) .header__mobile-search:hover {
  background: transparent;
  border-color: transparent;
  color: var(--color-secondary);
}

.home-page .header:not(.header--scrolled) .btn-toggle-nav {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-page .header:not(.header--scrolled) .btn-toggle-nav-icon,
.home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::before,
.home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::after {
  background-color: #fff;
}

.home-page .header:not(.header--scrolled) .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
  background-color: transparent;
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--space-xl);
  min-height: var(--header-height);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  min-width: 0;
}

.header__logo-img {
  width: auto;
  height: clamp(92px, 8vw, 118px);
  max-width: 178px;
  object-fit: contain;
  display: block;
}

.header__nav-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.65rem;
  min-width: 0;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  min-width: 0;
}

.nav-secondary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.nav-secondary__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-secondary__item {
  position: relative;
}

.nav-secondary__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-secondary__link:hover,
.nav-secondary__link--active {
  color: var(--color-accent);
  background: transparent;
}

.nav-secondary__chevron {
  width: 11px;
  height: 11px;
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-secondary__item:hover .nav-secondary__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.header-sub-nav {
  position: absolute;
  top: calc(100% + 14px);
  left: -1rem;
  min-width: 250px;
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 44px rgba(14, 40, 78, 0.14);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 220;
}

.nav-secondary__item:hover .header-sub-nav,
.nav-secondary__item--open .header-sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-sub-nav__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.header-sub-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-sub-nav__link {
  display: block;
  min-height: auto;
  padding: 0.55rem 0.6rem;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.header-sub-nav__link:hover {
  background-color: #f2f6fb;
  color: var(--color-primary-dark);
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header__lang {
  display: inline-flex;
  align-items: center;
  padding-right: 0.62rem;
  margin-right: 0.08rem;
  border-right: 1px solid rgba(30, 50, 96, 0.18);
}

.header__lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.header__lang-toggle:hover,
.header__lang-toggle:focus-visible {
  color: var(--color-primary);
  opacity: 1;
}

.header__lang-toggle:focus-visible {
  outline: 2px solid rgba(53, 80, 135, 0.24);
  outline-offset: 3px;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.header__social-link:hover,
.header__social-link:focus-visible {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.header__social-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header__btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-primary);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.header__btn-search:hover {
  color: var(--color-primary-dark);
  background-color: transparent;
  transform: translateY(-1px);
}

.header__btn-search svg {
  width: 18px;
  height: 18px;
}

.site-topics {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.45rem, 2.6vw, 2.7rem);
  min-width: 0;
}

.site-topics__item {
  position: relative;
}

.site-topics__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font-family: inherit;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.site-topics__link:hover,
.site-topics__link--active {
  color: var(--color-accent);
}

.site-topics__don {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  color: #fff;
  border-radius: 999px;
  background: #f27a1a;
  box-shadow: 0 8px 20px rgba(242, 122, 26, 0.28);
  font-size: clamp(0.85rem, 0.92vw, 0.94rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.site-topics__don svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.site-topics__don:hover,
.site-topics__don:focus-visible {
  color: #fff;
  background: #d8650e;
  box-shadow: 0 12px 26px rgba(242, 122, 26, 0.36);
  transform: translateY(-2px);
}

.site-topics__chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.82;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-topics__item:hover .site-topics__chevron,
.site-topics__item:focus-within .site-topics__chevron,
.site-topics__item--open .site-topics__chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.site-topics-sub-nav {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: var(--z-dropdown);
  min-width: 270px;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.site-topics__item:hover .site-topics-sub-nav,
.site-topics__item:focus-within .site-topics-sub-nav,
.site-topics__item--open .site-topics-sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-topics-sub-nav__title {
  margin-bottom: 0.45rem;
  padding: 0 0.6rem 0.45rem;
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-topics-sub-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-topics-sub-nav__link {
  display: block;
  padding: 0.6rem;
  color: var(--color-text);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.site-topics-sub-nav__link:hover,
.site-topics-sub-nav__link:focus-visible {
  color: var(--color-primary-dark);
  background: #f2f6fb;
}

.header__mobile-search {
  display: none;
}

.btn-toggle-nav {
  display: none;
}

.btn-toggle-nav-icon,
.btn-toggle-nav-icon::before,
.btn-toggle-nav-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-toggle-nav-icon { position: relative; }
.btn-toggle-nav-icon::before,
.btn-toggle-nav-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.btn-toggle-nav-icon::before { top: -6px; }
.btn-toggle-nav-icon::after  { top:  6px; }

.btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
  background-color: transparent;
}
.btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::before {
  transform: translateY(6px) rotate(45deg);
}
.btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: var(--space-md) var(--space-xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 300;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.search-overlay--open {
  transform: translateY(0);
}

.search-overlay__input {
  flex: 1;
  min-width: min(420px, calc(100vw - 7rem));
  padding: 0.6rem 0;
  font-size: 1.1rem;
  border: none;
  border-bottom: 2px solid var(--color-border);
  font-family: var(--font-body);
  outline: none;
  background: transparent;
  transition: border-color 0.2s;
}

.search-overlay__input:focus {
  border-bottom-color: var(--color-primary);
}

.search-overlay__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--color-text-light);
  border-radius: 50%;
}

.search-overlay__close:hover {
  background-color: var(--color-bg-alt);
}

.search-results {
  flex: 0 0 100%;
  display: none;
  max-height: min(68vh, 520px);
  overflow: auto;
  padding-top: 0.25rem;
  border-top: 1px solid var(--color-border-light);
}

.search-results--visible {
  display: block;
}

.search-results__status {
  margin: 0 0 0.7rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.search-results__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-result {
  display: block;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(30, 50, 96, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.search-result:hover,
.search-result:focus-visible {
  border-color: rgba(42, 135, 88, 0.28);
  background: #fff;
  transform: translateY(-1px);
}

.search-result__title {
  display: block;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.search-result__page {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result__excerpt {
  display: block;
  margin-top: 0.38rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.45;
}

.nav-primary-dropdown {
  display: none;
}

.nav-mobile-overlay,
.nav-mobile-panel {
  display: none;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--color-bg-dark) 0%,
    #253560 40%,
    #1e2a4a 100%
  );
  overflow: hidden;
  margin-top: calc(var(--pre-header-height) + var(--header-height));
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(8, 145, 178, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__text {
  color: var(--color-text-inverse);
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(8, 145, 178, 0.2);
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(240, 249, 250, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px 200px;
  gap: var(--space-md);
}

.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.hero__img:hover {
  transform: scale(1.03);
}

.hero__img--1 {
  grid-row: 1 / 3;
  background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800&q=80');
}

.hero__img--2 {
  grid-row: 1 / 2;
  background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=800&q=80');
}

.hero__img--3 {
  grid-row: 2 / 4;
  background-image: url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=800&q=80');
}

.hero__img--4 {
  grid-row: 3 / 4;
  background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=800&q=80');
}

.hero__stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__stat {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 100px;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Pillar Cards (Homepage 5 pillars) --- */
.pillar-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pillar-card__image--portrait {
  background-color: #dedbd5;
  background-position: center 14%;
  background-repeat: no-repeat;
  background-size: auto 122%;
}

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.pillar-card__body {
  padding: var(--space-lg);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.pillar-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.pillar-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- News Cards --- */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-lg);
}

.news-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.news-card--featured {
  grid-row: 1 / 3;
}

.news-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.news-card--featured .news-card__image {
  height: 320px;
}

.news-card__body {
  padding: var(--space-lg);
}

.news-card__tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}

.news-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.news-card--featured .news-card__title {
  font-size: var(--text-2xl);
}

.news-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.news-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* --- Event Cards --- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.event-card {
  display: flex;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.event-card__date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-md);
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
}

.event-card__month {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

.event-card__body {
  padding: var(--space-lg);
  flex: 1;
}

.event-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.event-card__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

.event-card__meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.event-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* --- Upcoming events: stepped roadmap layout --- */
.upcoming-events {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(254, 202, 66, 0.16), transparent 24%),
    linear-gradient(135deg, #f3f6fa 0%, #e8edf4 52%, #f7f9fc 100%);
}

.upcoming-events::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 50, 96, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 50, 96, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
  pointer-events: none;
}

.upcoming-events .container {
  position: relative;
}

.upcoming-events .event-list {
  counter-reset: upcoming-event;
  max-width: 1040px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  padding: clamp(1rem, 3vw, 2rem) 0;
  gap: 0;
}

.upcoming-events .event-card {
  counter-increment: upcoming-event;
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  align-items: end;
  width: min(760px, 100%);
  min-height: 152px;
  margin: -0.25rem 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.upcoming-events .event-card:nth-child(1) {
  margin-left: 0;
}

.upcoming-events .event-card:nth-child(2) {
  margin-left: clamp(3rem, 10vw, 8.5rem);
}

.upcoming-events .event-card:nth-child(3) {
  margin-left: clamp(6rem, 20vw, 17rem);
}

.upcoming-events .event-card:nth-child(4) {
  margin-left: clamp(9rem, 30vw, 25.5rem);
}

.upcoming-events .event-card:hover {
  box-shadow: none;
  transform: translateX(0);
}

.upcoming-events .event-card__date-box {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 152px;
  padding: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(160deg, #ee7a39 0%, #e85d32 100%);
  box-shadow: 0 18px 36px rgba(25, 38, 54, 0.12);
}

.upcoming-events .event-card:nth-child(2) .event-card__date-box {
  background: linear-gradient(160deg, #ffbd3d 0%, #f5961d 100%);
}

.upcoming-events .event-card:nth-child(3) .event-card__date-box {
  background: linear-gradient(160deg, #dbe4ef 0%, #aebdce 100%);
}

.upcoming-events .event-card:nth-child(4) .event-card__date-box {
  background: linear-gradient(160deg, #9cadc2 0%, #70849c 100%);
}

.upcoming-events .event-card__date-box::before {
  content: counter(upcoming-event, decimal-leading-zero);
  position: absolute;
  left: 1.3rem;
  top: 50%;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.upcoming-events .event-card:nth-child(2) .event-card__date-box::before,
.upcoming-events .event-card:nth-child(3) .event-card__date-box::before {
  color: #06131f;
}

.upcoming-events .event-card__date-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: -24px;
  width: 24px;
  height: 36px;
  border-radius: 0 16px 0 0;
  background: #39444d;
  box-shadow: inset 8px 0 12px rgba(0, 0, 0, 0.16);
}

.upcoming-events .event-card__day,
.upcoming-events .event-card__month {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}

.upcoming-events .event-card:nth-child(2) .event-card__day,
.upcoming-events .event-card:nth-child(2) .event-card__month,
.upcoming-events .event-card:nth-child(3) .event-card__day,
.upcoming-events .event-card:nth-child(3) .event-card__month {
  color: rgba(6, 19, 31, 0.74);
}

.upcoming-events .event-card__day {
  font-size: 0.92rem;
  font-weight: 900;
}

.upcoming-events .event-card__month {
  margin-top: 0.05rem;
  font-size: 0.78rem;
}

.upcoming-events .event-card__body {
  position: relative;
  min-height: 112px;
  margin-bottom: 0;
  padding: 1.25rem 1.6rem 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 50, 96, 0.06);
  box-shadow: 0 18px 40px rgba(30, 50, 96, 0.08);
}

.upcoming-events .event-card__body::before {
  content: '';
  position: absolute;
  top: 1.35rem;
  left: 1rem;
  width: 4px;
  height: calc(100% - 2.7rem);
  background: currentColor;
  color: #ee7a39;
  opacity: 0.55;
}

.upcoming-events .event-card:nth-child(2) .event-card__body::before {
  color: #f5961d;
}

.upcoming-events .event-card:nth-child(3) .event-card__body::before {
  color: #8fa0b4;
}

.upcoming-events .event-card:nth-child(4) .event-card__body::before {
  color: #70849c;
}

.upcoming-events .event-card__tag {
  color: #66788b;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.upcoming-events .event-card__title {
  color: #0b2034;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0;
}

.upcoming-events .event-card__body p {
  max-width: 620px;
  line-height: 1.5;
}

.upcoming-events .event-card__meta {
  gap: 1rem;
  flex-wrap: wrap;
  color: #526578;
}

.upcoming-events .event-card .btn {
  border-radius: 4px;
  border-color: rgba(30, 50, 96, 0.18);
  background: transparent;
}

.upcoming-events .event-card .btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* --- Publication Cards --- */
.pub-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pub-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.pub-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pub-card__type {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.pub-card__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.pub-card__date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: auto;
}

.pub-card__action {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* --- Gallery page --- */
.gallery-page {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3f7;
  box-shadow: 0 16px 36px rgba(17, 35, 62, 0.08);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 32, 0.62), rgba(8, 18, 32, 0.04) 58%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
}

.gallery-item figcaption strong,
.gallery-item figcaption span {
  display: block;
}

.gallery-item figcaption strong {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.gallery-item figcaption span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-source-note {
  max-width: 760px;
  margin: var(--space-2xl) auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(30, 50, 96, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--color-text-light);
  text-align: center;
}

.gallery-source-note p {
  margin: 0;
}

/* --- Key Figures --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-item__label {
  font-size: var(--text-lg);
  color: rgba(240, 249, 250, 0.8);
}

/* --- Partners Logo Grid --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-base);
  min-height: 80px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--shadow-md);
}

.partner-logo__placeholder {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1e2a4a 60%, #101830 100%);
  padding: calc(var(--pre-header-height) + var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(8,145,178,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.page-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(240, 249, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

.breadcrumb__list {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  color: var(--color-border);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col__content h2 {
  margin-bottom: var(--space-lg);
}

.two-col__content p {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-2xl) - 5px);
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  color: var(--color-text-light);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.contact-info__text p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(53, 80, 135, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Newsletter CTA --- */
.newsletter {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  color: #fff;
  margin: var(--space-5xl) 0;
}

.newsletter__title {
  color: #fff;
  margin-bottom: var(--space-md);
}

.newsletter__desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
}

.newsletter__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* --- Partenaires --- */
.partners {
  background-color: var(--color-surface);
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border-light);
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 160px;
}

.partners__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.partners__logo {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* --- Footer --- */
.footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--color-primary-dark);
  border-top: 1px solid #eef2f7;
  position: relative;
}

.footer .container {
  max-width: none;
  width: 100%;
  padding-left: clamp(2rem, 3vw, 3rem);
  padding-right: clamp(2rem, 3vw, 3rem);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 2.7vw, 2.7rem);
  min-width: 0;
}

.footer__copyright,
.footer__credit,
.footer__link {
  color: #006aa6;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.footer__link {
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__support {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.4rem, 2.4vw, 2.5rem);
  min-width: 0;
}

.footer__support-text {
  margin: 0;
  color: #141414;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.footer__partners-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.1rem, 1.8vw, 1.9rem);
}

.footer__partner-logo {
  display: block;
  width: auto;
  height: clamp(42px, 3.3vw, 58px);
  max-width: 104px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.footer__partner-logo:hover {
  filter: none;
  opacity: 1;
}

/* Kept for pages/scripts that may still look for the old class. */
.footer__scroll-top,
.back-to-top {
  display: none !important;
}

/* --- Page-specific: Actions Grid --- */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.action-detail-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.action-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.action-detail-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.action-detail-card__body {
  padding: var(--space-xl);
}

.action-detail-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.action-detail-card__desc {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.action-detail-card__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
}

.action-detail-card__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
}

.action-detail-card__stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.inline-action-photo {
  margin: var(--space-lg) 0 var(--space-xl);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(30, 50, 96, 0.08);
  box-shadow: 0 12px 28px rgba(17, 35, 62, 0.08);
  background: var(--color-bg-alt);
}

.inline-action-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* --- Blog/News listing --- */
.filter-bar {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination__btn:hover,
.pagination__btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.pagination-page-hidden {
  display: none !important;
}

/* ============================================================
   RESPONSIVE - Mobile-first enhancements
   ============================================================ */

/* --- Base mobile improvements (applied everywhere) --- */

/* Remove tap highlight on mobile */
button, a, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth touch scrolling */
html {
  -webkit-overflow-scrolling: touch;
}

/* Ensure minimum touch target size */
button, .btn, [role="button"],
.nav-secondary__link, .nav-mobile__link,
.header-sub-nav__link, .nav-primary-dropdown__link {
  min-height: 44px;
  touch-action: manipulation;
}

/* Better form elements on mobile */
input, select, textarea {
  font-size: 16px !important; /* prevent iOS zoom on focus */
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive embeds */
iframe, video {
  max-width: 100%;
}

/* ============================================================
   NEW CLASSES - Pillar pages & feature layouts
   ============================================================ */

.page-hero__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin: var(--space-3xl) 0;
}

.feature-row--reverse .feature-row__image { order: 2; }
.feature-row--reverse .feature-row__text  { order: 1; }

.feature-row__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.feature-row__text h2 { margin-bottom: var(--space-md); }
.feature-row__text h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.feature-row__text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.6;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base);
}

.stat-card:hover { transform: translateY(-2px); }

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.stat-card__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
  /* Typography scaling */
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  /* Nav tablet */
  .nav-secondary__link {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }

  .header__top {
    gap: var(--space-sm);
  }

  /* Hero */
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__image-grid {
    grid-template-rows: 160px 130px 160px;
  }

  /* Grids */
  .news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .news-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .news-card--featured .news-card__image {
    height: 220px;
  }

  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer responsive */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__partners-grid {
    gap: var(--space-lg);
  }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.6rem;
    --text-3xl: 1.35rem;
    --text-2xl: 1.2rem;
    --space-5xl: 3.5rem;
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
    --header-height: 72px;
    --pre-header-height: 0px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .section__header {
    margin-bottom: var(--space-2xl);
  }

  .section__subtitle {
    font-size: var(--text-base);
  }

  /* --- Header mobile --- */
  .header .container {
    padding: 0 var(--space-md);
    flex-wrap: nowrap;
  }

  .nav-secondary {
    display: none;
  }

  .header__buttons .btn {
    display: none;
  }

  /* Show hamburger on mobile */
  .btn-toggle-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    margin-left: auto;
    order: 3;
  }

  .btn-toggle-nav:hover {
    background-color: var(--color-bg-alt);
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .btn-toggle-nav-icon { position: relative; }
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after {
    content: '';
    position: absolute;
    left: 0;
  }
  .btn-toggle-nav-icon::before { top: -6px; }
  .btn-toggle-nav-icon::after  { top:  6px; }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
    background-color: transparent;
  }
  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header__top {
    order: unset;
    flex: 0;
  }

  .header__logo {
    order: 1;
    font-size: var(--text-base);
  }

  .header__buttons {
    order: 2;
    margin-left: auto;
    margin-right: var(--space-sm);
  }

  .header__btn-search {
    width: 30px;
    height: 30px;
  }

  /* Feature rows stacked on mobile */
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
  }

  .feature-row--reverse .feature-row__image { order: -1; }
  .feature-row__image img { min-height: 220px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stat-card { padding: var(--space-lg) var(--space-sm); }
  .stat-card__number { font-size: var(--text-2xl); }
  .page-hero__icon { font-size: 2.5rem; }

  /* --- Pre-header mobile --- */
  .pre-header__inner { height: 36px; }
  .pre-header__slogan { display: none; }
  .pre-header__link { display: none; }
  .pre-header__btn { padding: 3px 12px; font-size: 0.7rem; }
  .pre-header__social-icon { width: 24px; height: 24px; }

  /* --- Partners mobile --- */
  .partners__grid { gap: var(--space-md); }
  .partners__item { min-width: 130px; padding: var(--space-sm) var(--space-md); }
  .partners__logo { height: 40px; max-width: 100px; }

  /* Mobile menu overlay */
  .nav-mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-mobile-overlay--open {
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .nav-mobile-panel--open {
    transform: translateX(0);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  }

  .nav-mobile-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-mobile-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--color-text);
    border-radius: 50%;
    transition: background var(--transition-fast);
  }

  .nav-mobile-panel__close:hover {
    background: var(--color-border);
  }

  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.35rem;
  }

  .nav-mobile-group {
    overflow: hidden;
    border: 1px solid rgba(28, 51, 83, 0.1);
    border-radius: 16px;
    background: #f8fafc;
  }

  .nav-mobile-group__summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    color: var(--color-primary-dark);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.15;
    list-style: none;
  }

  .nav-mobile-group__summary::-webkit-details-marker {
    display: none;
  }

  .nav-mobile-group__summary::after {
    content: '';
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition-fast);
  }

  .nav-mobile-group[open] .nav-mobile-group__summary::after {
    transform: rotate(225deg);
  }

  .nav-mobile-group__count {
    margin-left: auto;
    padding: 0.18rem 0.48rem;
    color: var(--color-green);
    border-radius: 999px;
    background: rgba(42, 135, 88, 0.12);
    font-size: 0.72rem;
    font-weight: 900;
  }

  .nav-mobile-group__links {
    display: grid;
    gap: 0.18rem;
    padding: 0 0.45rem 0.55rem;
  }

  .nav-mobile-section {
    margin-bottom: var(--space-sm);
  }

  .nav-mobile-section__title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    padding-left: 0.25rem;
  }

  .nav-mobile__link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 0.72rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 0;
    transition: all var(--transition-fast);
    border-radius: 10px;
  }

  .nav-mobile__link:active,
  .nav-mobile__link:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
  }

  .nav-mobile-main-link {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    color: var(--color-primary-dark);
    border: 1px solid rgba(28, 51, 83, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(18, 37, 58, 0.05);
    font-weight: 900;
    text-decoration: none;
  }

  .nav-mobile-main-link:active,
  .nav-mobile-main-link:hover {
    color: var(--color-accent);
    background: #f8fafc;
  }

  .nav-mobile-don {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    margin-top: 0.35rem;
    padding: 0.9rem 1rem;
    color: #fff;
    border-radius: 999px;
    background: #f27a1a;
    box-shadow: 0 14px 28px rgba(242, 122, 26, 0.3);
    font-weight: 900;
    text-decoration: none;
  }

  .nav-mobile-don:active,
  .nav-mobile-don:hover {
    color: #fff;
    background: #d8650e;
  }

  .nav-mobile-don svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .nav-mobile__btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
  }

  /* --- Hero mobile --- */
  .hero {
    min-height: auto;
    padding: calc(var(--pre-header-height) + var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  }

  .hero__content {
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-xl);
  }

  .hero__title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .hero__desc {
    font-size: var(--text-base);
    line-height: 1.6;
  }

  .hero__badge {
    font-size: var(--text-xs);
    padding: 0.25rem 0.75rem;
  }

  .hero__image-grid {
    grid-template-rows: 120px 90px 120px;
    gap: var(--space-sm);
  }

  .hero__stats {
    position: static;
    justify-content: center;
    margin-top: var(--space-lg);
  }

  .hero__stat {
    min-width: 80px;
    padding: var(--space-sm) var(--space-md);
  }

  .hero__stat-number {
    font-size: var(--text-xl);
  }

  .hero__scroll {
    display: none;
  }

  /* --- Page hero mobile --- */
  .page-hero {
    padding: calc(var(--pre-header-height) + var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .page-hero__title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }

  .page-hero__subtitle {
    font-size: var(--text-base);
  }

  /* --- Grids mobile --- */
  .news-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stat-item {
    padding: var(--space-lg);
  }

  .stat-item__number {
    font-size: 2.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* --- Cards mobile --- */
  .pillar-card__image {
    height: 160px;
  }

  .pillar-card__body {
    padding: var(--space-md);
  }

  .pillar-card__title {
    font-size: var(--text-base);
  }

  .pub-card__image {
    height: 180px;
  }

  .pub-card__body {
    padding: var(--space-md);
  }

  /* --- Two-col layouts --- */
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .two-col__image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* --- Event cards --- */
  .event-card {
    flex-direction: column;
  }

  .event-card__date-box {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    min-width: 0;
  }

  .event-card__day {
    font-size: var(--text-2xl);
  }

  .event-card__body {
    padding: var(--space-md);
  }

  .event-card__meta {
    flex-direction: column;
    gap: var(--space-xs);
  }

  /* --- Newsletter --- */
  .newsletter {
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
    border-radius: var(--radius-lg);
  }

  .newsletter__title {
    font-size: var(--text-xl);
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__input {
    width: 100%;
  }

  /* --- Footer --- */
  .footer {
    padding: var(--space-3xl) 0 var(--space-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  /* --- Breadcrumb --- */
  .breadcrumb {
    padding: var(--space-md) 0;
    font-size: var(--text-xs);
  }

  /* --- Timeline --- */
  .timeline {
    padding-left: var(--space-lg);
  }

  .timeline__item {
    padding-bottom: var(--space-lg);
  }

  .timeline__item::before {
    left: calc(-1 * var(--space-lg) - 5px);
  }

  /* --- Pagination --- */
  .pagination {
    margin-top: var(--space-xl);
  }

  .pagination__btn {
    width: 36px;
    height: 36px;
    font-size: var(--text-sm);
  }

  /* --- Filter bar --- */
  .filter-bar {
    gap: var(--space-xs);
  }

  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: var(--text-xs);
  }

  /* --- Action detail cards --- */
  .action-detail-card__image {
    height: 180px;
  }

  .action-detail-card__body {
    padding: var(--space-lg);
  }

  .action-detail-card__stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .action-detail-card__stat strong {
    font-size: var(--text-lg);
  }

  /* --- Search overlay --- */
  .search-overlay {
    padding: var(--space-md);
  }

  .search-overlay__input {
    font-size: var(--text-base);
    padding: 0.6rem 0.75rem;
  }

  /* --- Back to top --- */
  .back-to-top {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* --- Dropdown sub-nav on mobile --- */
  .header-sub-nav {
    position: static;
    box-shadow: none;
    border: none;
    padding: var(--space-sm) var(--space-md);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: auto;
  }

  .nav-secondary__item--open .header-sub-nav {
    display: block;
  }

  .header-sub-nav__title {
    font-size: var(--text-sm);
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__partners-grid {
    gap: var(--space-md);
  }

  .footer__partner-logo {
    height: 36px;
    max-width: 100px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Small mobile: 480px --- */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 100px;
    gap: var(--space-sm);
  }

  .hero__img--3,
  .hero__img--4 {
    display: none;
  }

  .hero__img--2 {
    grid-row: 1;
  }

  .hero__stat {
    min-width: 70px;
    padding: var(--space-sm);
  }

  .hero__stat-number {
    font-size: var(--text-lg);
  }

  .hero__stat-label {
    font-size: 0.625rem;
  }

  .btn--lg {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
  }

  .newsletter {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-2xl) 0;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .partner-logo {
    padding: var(--space-md);
    min-height: 60px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    font-size: var(--text-base);
  }
}

/* --- Print styles --- */
@media print {
  .header,
  .back-to-top,
  .nav-mobile-overlay,
  .nav-mobile-panel,
  .search-overlay,
  .newsletter,
  .hero__scroll {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .hero,
  .page-hero,
  .section--dark {
    background: none !important;
    color: #000 !important;
  }

  .hero__title,
  .page-hero__title,
  .section--dark * {
    color: #000 !important;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ALAFIA 2050 HOMEPAGE - Production-grade layout
   ============================================================ */

/* --- CONTAINER (wider for hero sections) --- */
.container--wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ═══════════════ HERO CAROUSEL ═══════════════ */
.s4a-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: #111827;
  overflow: hidden;
  margin-top: 0;
}

.s4a-hero__media,
.s4a-hero__slide,
.s4a-hero__shade {
  position: absolute;
  inset: 0;
}

.s4a-hero__media {
  z-index: 0;
  background: #142033;
}

.s4a-hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: none;
  transition: opacity 5000ms ease-in-out;
}

.s4a-hero__slide--active {
  opacity: 1;
}

.s4a-hero__shade {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(236,230,219,0.76) 0%, rgba(236,230,219,0) 34%),
    linear-gradient(to bottom, rgba(236,230,219,0) 0%, rgba(236,230,219,0) 50%, rgba(236,230,219,0.78) 100%),
    linear-gradient(90deg, rgba(12, 16, 18, 0.45) 0%, rgba(12, 16, 18, 0.22) 44%, rgba(12, 16, 18, 0.05) 74%);
  pointer-events: none;
}

.s4a-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(3rem, 9vh, 6rem)) var(--space-xl) clamp(6.5rem, 13vh, 9.5rem);
  display: flex;
  align-items: flex-end;
}

.s4a-hero__copy {
  position: absolute;
  left: clamp(2rem, 7.4vw, 8.75rem);
  bottom: clamp(10rem, 28vh, 19rem);
  width: min(1220px, calc(100% - clamp(4rem, 16vw, 17.5rem)));
  opacity: 0;
  transform: translateX(-46px);
  pointer-events: none;
  transition: opacity 900ms ease, transform 900ms ease;
}

.s4a-hero__copy--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.s4a-hero__eyebrow {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.s4a-hero__eyebrow::before {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--color-secondary);
}

.s4a-hero__title {
  max-width: 1180px;
  margin-bottom: 1.9rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.45vw, 5rem);
  font-weight: 800;
  line-height: 1.16;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.s4a-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 1.55rem;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.s4a-hero__btn:hover,
.s4a-hero__btn:focus-visible {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.s4a-hero__btn span {
  margin-left: 0.45rem;
  font-size: 1.1em;
  line-height: 0.8;
}

.slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  z-index: 3;
}

.sp-slot {
  width: 36px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sp-slot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 7px;
  border-radius: 999px;
}

.sp-segment {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sp-segment.active {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.sp-segment.completed {
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.sp-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes fillBar {
  from { width: 0%; }
  to   { width: 100%; }
}

.sp-slot:hover .sp-segment:not(.active) {
  background: rgba(255, 255, 255, 0.8);
  width: 6px;
  height: 6px;
}

.sp-slot:hover .sp-segment.active {
  height: 4px;
}

@media (max-width: 640px) {
  .slider-nav {
    padding: 0;
    gap: 12px;
    bottom: 28px;
  }

  .sp-slot {
    width: 24px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-segment,
  .slider-nav {
    transition: none;
  }

  .sp-segment.active .sp-fill {
    width: 100%;
    animation: none !important;
  }
}

.s4a-hero__controls {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  transform: translate3d(-40px, -50%, 0);
}

.s4a-hero__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.s4a-hero__arrow:hover,
.s4a-hero__arrow:focus-visible {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #142033;
  transform: translateY(-1px);
}

.s4a-hero__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s4a-hero__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.s4a-hero__dot {
  position: relative;
  width: 11px;
  height: 11px;
  margin: 8px 0;
  padding: 0;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.3s, border-color 0.3s;
}

.s4a-hero__dot:hover,
.s4a-hero__dot:focus-visible,
.s4a-hero__dot--active {
  background: #fff;
  border-color: #fff;
}

.s4a-hero__dot span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.s4a-hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ═══════════════ IMPACT SECTION ═══════════════ */
.s4a-impact {
  padding: var(--space-5xl) 0;
  background: #fff;
}

.s4a-impact__head {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.s4a-impact__subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.s4a-impact__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.05;
  margin-bottom: var(--space-xl);
}

.s4a-impact__lead {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Impact Stat Cards (4 across) --- */
.s4a-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.s4a-impact-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: var(--space-2xl) var(--space-xl);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.3s ease;
}

.s4a-impact-stat:last-child {
  border-right: none;
}

/* Background image - invisible by default, fades in on hover */
.s4a-impact-stat__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.05);
  z-index: 0;
}

.s4a-impact-stat:hover .s4a-impact-stat__bg,
.s4a-impact-stat--active .s4a-impact-stat__bg {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay over the background image */
.s4a-impact-stat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,21,40,0.85) 0%, rgba(13,21,40,0.6) 50%, rgba(13,21,40,0.3) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

.s4a-impact-stat:hover .s4a-impact-stat__overlay {
  background: linear-gradient(to top, rgba(13,21,40,0.9) 0%, rgba(13,21,40,0.5) 50%, rgba(13,21,40,0.2) 100%);
}

/* Content on top of everything */
.s4a-impact-stat__content {
  position: relative;
  z-index: 2;
}

.s4a-impact-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}

.s4a-impact-stat:hover .s4a-impact-stat__number {
  color: var(--color-secondary);
}

.s4a-impact-stat__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ═══════════════ WHAT WE DO - Image Track + Dots ═══════════════ */
.s4a-whatwedo {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.s4a-whatwedo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.s4a-whatwedo__text,
.s4a-whatwedo-card {
  min-width: 0;
}

.s4a-whatwedo__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.s4a-whatwedo__desc {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.s4a-whatwedo__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.s4a-whatwedo__btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.s4a-whatwedo__btn .arrow { transition: transform 0.2s; }
.s4a-whatwedo__btn:hover .arrow { transform: translateX(3px); }

/* --- Card --- */
.s4a-whatwedo-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.s4a-whatwedo-card__img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.s4a-whatwedo-card__img-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.s4a-whatwedo-card__img-wrapper {
  flex: 0 0 100%;
  height: 100%;
}

.s4a-whatwedo-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.s4a-whatwedo-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Card Body --- */
.s4a-whatwedo-card__body {
  padding: var(--space-xl);
}

.s4a-whatwedo-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.s4a-whatwedo-card__badge {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

/* --- Dots --- */
.s4a-whatwedo-card__dots {
  display: flex;
  gap: 8px;
}

.s4a-whatwedo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d6db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.s4a-whatwedo-dot.active,
.s4a-whatwedo-dot:hover {
  background: var(--color-primary);
  transform: scale(1.35);
}

/* --- Content Viewport --- */
.s4a-whatwedo-card__content-viewport {
  overflow: hidden;
}

.s4a-whatwedo-card__content-track {
  display: flex;
  transition: transform 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s4a-whatwedo-card__content-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.s4a-whatwedo-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.s4a-whatwedo-card__title a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.15s;
}

.s4a-whatwedo-card__title a:hover {
  color: var(--color-primary);
}

.s4a-whatwedo-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .s4a-whatwedo__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .s4a-whatwedo-card__img-container {
    aspect-ratio: 16/9;
  }
}

/* ═══════════════/* ═══════════════ NEWS SECTION ═══════════════ */
.s4a-news {
  padding: var(--space-5xl) 0;
  background: #fff;
}

.s4a-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.s4a-news__head h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
}

.s4a-news__more {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.s4a-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.s4a-news-card {
  transition: transform 0.2s;
}

.s4a-news-card:hover {
  transform: translateY(-3px);
}

.s4a-news-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.s4a-news-card__tag {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.s4a-news-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.s4a-news-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════ COUNTRY SPOTLIGHTS ═══════════════ */
.s4a-spots {
  padding: var(--space-5xl) 0;
  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.s4a-spots::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(14,126,251,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.s4a-spots__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.s4a-spots__head h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
}

.s4a-spots__more {
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.s4a-spots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.s4a-spot-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s;
}

.s4a-spot-card:hover { transform: translateY(-3px); }

.s4a-spot-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.s4a-spot-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.s4a-spot-card__body {
  padding: var(--space-lg);
}

.s4a-spot-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.s4a-spot-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.s4a-spot-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

/* ═══════════════ PROJECTS ═══════════════ */
.s4a-projects {
  padding: var(--space-5xl) 0;
  background: #fff;
}

.s4a-projects__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.s4a-projects__head h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
}

.s4a-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.s4a-project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.s4a-project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

.s4a-project-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.s4a-project-card__body {
  padding: var(--space-xl);
}

.s4a-project-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.s4a-project-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.s4a-project-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ═══════════════ CTA SPLIT ═══════════════ */
.s4a-cta {
  padding: var(--space-5xl) 0;
  background: linear-gradient(170deg, var(--color-primary) 0%, color-mix(in srgb, var(--color-primary) 60%, #000) 100%);
  position: relative;
  overflow: hidden;
}

.s4a-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,126,251,0.12) 0%, transparent 70%);
  right: -100px;
  top: -200px;
  pointer-events: none;
}

.s4a-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.s4a-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
}

.s4a-cta__title .yellow { color: var(--color-secondary); }

.s4a-cta__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.s4a-cta__desc strong { color: var(--color-secondary); }

/* ═══════════════ PUBLICATIONS ═══════════════ */
.s4a-pubs {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.s4a-pubs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.s4a-pubs__head h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
}

.s4a-pubs__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-lg);
}

.s4a-pubs-featured {
  grid-row: 1 / 3;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.s4a-pubs-featured:hover { transform: translateY(-2px); }

.s4a-pubs-featured__img {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.s4a-pubs-featured__body {
  padding: var(--space-xl);
}

.s4a-pubs-featured__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.s4a-pubs-featured__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.s4a-pubs-featured__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

.s4a-pubs-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.s4a-pubs-card:hover { transform: translateY(-2px); }

.s4a-pubs-card__img {
  height: 120px;
  background-size: cover;
  background-position: center;
}

.s4a-pubs-card__body {
  padding: var(--space-md);
}

.s4a-pubs-card__tag {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.s4a-pubs-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.s4a-pubs-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* ═══════════════ NEWSLETTER ═══════════════ */
.s4a-newsletter {
  padding: var(--space-4xl) 0 var(--space-5xl);
  background: #fff;
  text-align: center;
}

.s4a-newsletter__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.s4a-newsletter__form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
}

.s4a-newsletter__input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.15s;
}

.s4a-newsletter__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .s4a-impact__grid { grid-template-columns: repeat(2, 1fr); }
  .s4a-impact-stat:nth-child(even) { border-right: none; }
  .s4a-impact-stat:nth-child(3) { border-top: none; }
  .s4a-whatwedo__grid { grid-template-columns: 1fr; }
  .s4a-news__grid { grid-template-columns: repeat(2, 1fr); }
  .s4a-spots__grid { grid-template-columns: repeat(2, 1fr); }
  .s4a-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .s4a-cta__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .s4a-pubs__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .s4a-pubs-featured { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 768px) {
  .s4a-hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .s4a-hero__content {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 3.5rem) var(--space-md) 7rem;
  }
  .s4a-hero__copy {
    left: var(--space-md);
    bottom: 8.5rem;
    width: calc(100% - (var(--space-md) * 2) - 40px);
  }
  .s4a-hero__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 1.12;
  }
  .s4a-hero__controls {
    top: 50%;
    right: -30px;
    left: auto;
    bottom: auto;
    justify-content: center;
    gap: 0;
    transform: translate3d(-40px, -50%, 0);
  }
  .s4a-hero__dots {
    flex: initial;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .s4a-hero__dot {
    width: 11px;
    height: 11px;
    margin: 8px 0;
  }
  .s4a-impact__grid { grid-template-columns: 1fr; }
  .s4a-impact-stat { min-height: 240px; border-right: none; }
  .s4a-whatwedo__grid,
  .s4a-whatwedo__text,
  .s4a-whatwedo-carousel,
  .s4a-whatwedo-card {
    width: 100%;
    max-width: 100%;
  }
  .s4a-whatwedo__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .s4a-whatwedo__text,
  .s4a-whatwedo-carousel {
    overflow: hidden;
  }
  .s4a-news__grid { grid-template-columns: 1fr; }
  .s4a-spots__grid { grid-template-columns: 1fr; }
  .s4a-projects__grid { grid-template-columns: 1fr; }
  .s4a-pubs__grid { grid-template-columns: 1fr; }
  .s4a-newsletter__form { flex-direction: column; }
  .container--wide { padding: 0 var(--space-md); }
  .s4a-impact, .s4a-whatwedo, .s4a-news, .s4a-spots, .s4a-projects, .s4a-cta, .s4a-pubs { padding: var(--space-3xl) 0; }
}

/* ═══════════════ MAP SECTION - Presence locale, Impact durable ═══════════════ */
.s4a-map {
  padding: var(--space-4xl) 0 var(--space-5xl);
  background: #fff;
  overflow: hidden;
}

.s4a-map__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: start;
}

.s4a-map__text {
  padding-top: var(--space-xl);
}

.s4a-map__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 900;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.s4a-map__desc {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.s4a-map__hint {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: #4e6673;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: var(--space-xl);
}

.s4a-map__hint svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Map wrapper --- */
.s4a-map__map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-primary-dark);
  aspect-ratio: 4/3;
  min-height: 400px;
}

.s4a-map__map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 0.6s;
}

.s4a-map__map-wrapper:hover .s4a-map__map-bg {
  opacity: 0.65;
}

/* --- Map markers --- */
.s4a-map__marker {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.s4a-map__marker-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(254,202,66,0.3), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.20s, box-shadow 0.20s;
  animation: markerPulse 2.5s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(254,202,66,0.3), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(254,202,66,0.08), 0 4px 16px rgba(0,0,0,0.35); }
}

.s4a-map__marker:hover .s4a-map__marker-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 8px rgba(254,202,66,0.25), 0 4px 16px rgba(0,0,0,0.4);
}

.s4a-map__marker-label {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(0,0,0,0.82);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.s4a-map__marker:hover .s4a-map__marker-label {
  opacity: 1;
}

.s4a-map__marker--active .s4a-map__marker-dot {
  background: var(--color-cta);
  border-color: #fff;
  transform: scale(1.4);
  box-shadow: 0 0 0 8px rgba(212,51,56,0.25), 0 4px 16px rgba(0,0,0,0.4);
  animation: none;
}

/* --- Info box (stat counter) --- */
.s4a-map__info {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: var(--space-lg);
}

.s4a-map__legend {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
}

.s4a-map__legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 2px solid rgba(255,255,255,0.8);
}

.s4a-map__stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.s4a-map__stat-text {
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* --- Interactive panel --- */
.s4a-map__panel {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  z-index: 3;
  max-width: 320px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: all 0.30s ease;
}

.s4a-map__panel--visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.s4a-map__panel-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.s4a-map__panel-region {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(53,80,135,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.s4a-map__panel-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.s4a-map__panel-stat {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
}

.s4a-map__panel-stat-item {
  text-align: center;
  flex: 1;
}

.s4a-map__panel-stat-val {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.s4a-map__panel-stat-lbl {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.s4a-map__panel-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.s4a-map__panel-link:hover { gap: var(--space-md); }

/* --- Mobile footer (hidden on desktop) --- */
.s4a-map__mobile-footer {
  display: none;
}

/* --- Map section responsive --- */
@media (max-width: 1024px) {
  .s4a-map__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .s4a-map__map-wrapper {
    aspect-ratio: 16/9;
    min-height: 340px;
  }
  .s4a-map__panel {
    max-width: 260px;
    right: var(--space-md);
    top: var(--space-md);
  }
}

@media (max-width: 768px) {
  .s4a-map {
    padding: var(--space-2xl) 0;
  }
  .s4a-map__info {
    display: none;
  }
  .s4a-map__map-wrapper {
    aspect-ratio: 4/3;
    min-height: 300px;
    border-radius: var(--radius-md);
  }
  .s4a-map__mobile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
  }
  .s4a-map__mobile-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  .s4a-map__mobile-stat .s4a-map__stat-number {
    font-size: var(--text-4xl);
    color: var(--color-primary-dark);
    margin: 0;
  }
  .s4a-map__mobile-stat .s4a-map__stat-text {
    color: var(--color-text-muted);
  }
  .s4a-map__mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .s4a-map__mobile-cta:hover {
    background: var(--color-primary);
    color: #fff;
  }
  .s4a-map__panel {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    margin-top: var(--space-md);
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
}

/* ============================================================
   Header responsive overrides
   ============================================================ */

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: var(--space-xl);
  }

  .header__logo-img {
    width: auto;
    height: 92px;
    max-width: 118px;
  }

  .header__nav-wrap {
    gap: 1.25rem;
  }

  .nav-secondary__list {
    gap: var(--space-lg);
  }

  .nav-secondary__link {
    font-size: 0.92rem;
  }

  .site-topics {
    gap: var(--space-xl);
  }

  .site-topics__link {
    font-size: 0.98rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
    --pre-header-height: 0px;
  }

  .header .container.header__inner {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 48px 48px;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    min-height: var(--header-height);
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 var(--space-md);
    gap: 0.55rem;
  }

  .header__logo {
    grid-column: 1;
    order: 0;
    height: 100%;
    justify-content: flex-start;
    align-self: center;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .header__logo-img {
    width: auto;
    height: min(64px, calc(var(--header-height) - 10px));
    max-width: min(132px, 44vw);
    object-fit: contain;
  }

  .header__nav-wrap {
    display: none;
  }

  .header__mobile-search {
    grid-column: 2;
    order: 1;
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-height: 0;
    justify-self: end;
    align-self: center;
    border: 0;
    border-radius: 0;
    color: var(--color-primary-dark);
    background: transparent;
    transform: none;
  }

  .header__mobile-search:hover {
    color: var(--color-primary);
    border-color: transparent;
    background: transparent;
    transform: none;
  }

  .btn-toggle-nav {
    grid-column: 3;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    cursor: pointer;
  }

  .btn-toggle-nav:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after {
    width: 22px;
    height: 2px;
    background-color: var(--color-primary-dark);
    border-radius: 999px;
  }

  .btn-toggle-nav:hover .btn-toggle-nav-icon,
  .btn-toggle-nav:hover .btn-toggle-nav-icon::before,
  .btn-toggle-nav:hover .btn-toggle-nav-icon::after {
    background-color: #fff;
  }

  .btn-toggle-nav-icon::before { top: -7px; }
  .btn-toggle-nav-icon::after { top: 7px; }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
    background-color: transparent;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::before {
    transform: translateY(7px) rotate(45deg);
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-mobile-panel__logo {
    width: auto;
    height: 82px;
    max-width: 120px;
    display: block;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .header .container.header__inner {
    grid-template-columns: minmax(124px, 1fr) 42px 42px;
    padding: 0 var(--space-sm);
    gap: 0.45rem;
  }

  .header__logo-img {
    width: auto;
    height: min(58px, calc(var(--header-height) - 10px));
    max-width: min(118px, 46vw);
  }

  .header__mobile-search,
  .btn-toggle-nav {
    width: 40px;
    height: 40px;
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after {
    width: 20px;
  }
}

/* ============================================================
   Compact footer final overrides
   ============================================================ */

@media (max-width: 980px) {
  .footer {
    padding: var(--space-xl) 0;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer__legal,
  .footer__support {
    justify-content: flex-start;
  }

  .footer__support {
    order: 1;
  }

  .footer__legal {
    order: 2;
    padding-top: var(--space-md);
  }

  .footer__support {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__support-text {
    white-space: normal;
  }

  .footer__partners-grid {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .footer .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__copyright,
  .footer__credit,
  .footer__link {
    white-space: normal;
  }

  .footer__partner-logo {
    height: 38px;
    max-width: 92px;
  }
}

/* ============================================================
   Homepage compact institutional polish
   ============================================================ */

.home-page .s4a-impact,
.home-page .s4a-news,
.home-page .s4a-whatwedo,
.home-page .s4a-map {
  position: relative;
}

.home-page .s4a-impact {
  padding: clamp(3.25rem, 6vw, 4.5rem) 0 0;
  background: #fff;
}

.home-page .s4a-impact__head {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: 0.05rem;
  align-items: start;
  text-align: left;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-page .s4a-impact__subtitle,
.home-page .s4a-news-card__tag,
.home-page .s4a-whatwedo-card__badge {
  letter-spacing: 0.08em;
}

.home-page .s4a-impact__title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: clamp(3.25rem, 6.6vw, 5.6rem);
  font-weight: 700;
  line-height: 0.86;
  margin-bottom: 0;
  color: #087299;
}

.home-page .s4a-impact__lead {
  grid-column: 2;
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.58;
}

.home-page .s4a-impact__subtitle {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  color: #183247;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.home-page .s4a-impact__lead + .s4a-impact__lead {
  margin-top: 0.85rem !important;
}

.home-page .s4a-impact__grid {
  border-top: 1px solid #e3e9ef;
  border-bottom: 1px solid #e3e9ef;
  background: #fff;
}

.home-page .s4a-impact-stat {
  min-height: 285px;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: #fff;
  border-right: 1px solid #dfe7ef;
  text-align: center;
}

.home-page .s4a-impact-stat:last-child {
  border-right: none;
}

.home-page .s4a-impact-stat__number {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 4.25vw, 4.25rem);
  font-weight: 300;
  color: #087299;
  line-height: 1;
  margin-bottom: 1rem;
}

.home-page .s4a-impact-stat__label {
  max-width: 320px;
  color: #183247;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 500;
  line-height: 1.25;
}

.home-page .s4a-impact-stat__overlay {
  background: transparent;
}

.home-page .s4a-impact-stat:hover .s4a-impact-stat__overlay {
  background: linear-gradient(to top, rgba(13,21,40,0.9) 0%, rgba(13,21,40,0.52) 55%, rgba(13,21,40,0.22) 100%);
}

.home-page .s4a-impact-stat:hover .s4a-impact-stat__number {
  color: #fff;
}

.home-page .s4a-impact-stat:hover .s4a-impact-stat__label {
  color: rgba(255, 255, 255, 0.9);
}

.home-page .s4a-news {
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  background: #fff;
}

.home-page .s4a-news__head,
.home-page .s4a-projects__head,
.home-page .s4a-pubs__head {
  align-items: flex-end;
  padding-bottom: 0.9rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid #e8edf3;
}

.home-page .s4a-news__head h2,
.home-page .s4a-projects__head h2,
.home-page .s4a-pubs__head h2 {
  color: var(--color-primary-dark);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.home-page .s4a-news__more {
  color: var(--color-cta);
}

.home-page .s4a-news__grid {
  gap: 1rem;
}

.home-page .s4a-news-card {
  min-height: 100%;
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 35, 62, 0.045);
}

.home-page .s4a-news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 35, 62, 0.09);
}

.home-page .s4a-news-card__img {
  height: 152px;
  margin-bottom: 0;
  border-radius: 0;
}

.home-page .s4a-news-card__tag,
.home-page .s4a-news-card__title,
.home-page .s4a-news-card__date {
  margin-left: 1rem;
  margin-right: 1rem;
}

.home-page .s4a-news-card__tag {
  margin-top: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--color-cta);
}

.home-page .s4a-news-card__title {
  margin-bottom: 0.7rem;
  color: var(--color-primary-dark);
  line-height: 1.28;
}

.home-page .s4a-news-card__date {
  margin-bottom: 1rem;
}

.home-page .s4a-whatwedo {
  padding: clamp(3.25rem, 6vw, 4.75rem) 0;
  background: #f7f9fc;
}

.home-page .s4a-whatwedo__grid {
  gap: clamp(2rem, 4.5vw, 3.25rem);
  align-items: center;
}

.home-page .s4a-whatwedo__title,
.home-page .s4a-map__title {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.home-page .s4a-whatwedo__desc,
.home-page .s4a-map__desc {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.58;
  margin-bottom: 1.25rem;
}

.home-page .s4a-whatwedo-card {
  border-radius: 8px;
  border: 1px solid #e5ebf2;
  box-shadow: 0 12px 32px rgba(17, 35, 62, 0.07);
}

.home-page .s4a-whatwedo-card__img-container {
  aspect-ratio: 16/8.5;
}

.home-page .s4a-whatwedo-card__body {
  padding: 1.2rem;
}

.home-page .s4a-map {
  padding: clamp(3.25rem, 6vw, 4.5rem) 0;
}

.home-page .s4a-map__grid {
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

.home-page .s4a-map__text {
  padding-top: 0;
}

.home-page .s4a-map__hint {
  margin-top: 1.25rem;
}

.home-page .s4a-map__map-wrapper {
  min-height: 340px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(17, 35, 62, 0.12);
}

.home-page .s4a-map__panel {
  border-radius: 8px;
  padding: 1.25rem;
}

@media (max-width: 1024px) {
  .home-page .s4a-impact__head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .home-page .s4a-impact__subtitle,
  .home-page .s4a-impact__title,
  .home-page .s4a-impact__lead {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page .s4a-impact-stat {
    min-height: 220px;
  }

  .home-page .s4a-impact-stat:nth-child(even) {
    border-right: none;
  }

  .home-page .s4a-impact-stat:nth-child(n+3) {
    border-top: 1px solid #dfe7ef;
  }
}

@media (max-width: 768px) {
  .home-page .s4a-impact,
  .home-page .s4a-news,
  .home-page .s4a-whatwedo,
  .home-page .s4a-map {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .home-page .s4a-impact {
    padding-bottom: 0;
  }

  .home-page .s4a-impact__head,
  .home-page .s4a-news__head {
    margin-bottom: 1.5rem;
  }

  .home-page .s4a-impact-stat {
    min-height: 180px;
    border-right: none;
    border-top: 1px solid #dfe7ef;
  }

  .home-page .s4a-impact-stat:first-child {
    border-top: none;
  }

  .home-page .s4a-news-card__img {
    height: 170px;
  }
}

/* --- Full-width Benin intervention map --- */
.home-page .s4a-map > .container--wide {
  max-width: none;
  padding: 0;
}

.home-page .s4a-map__grid {
  display: block;
}

.home-page .s4a-map__text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl) clamp(1.75rem, 4vw, 2.75rem);
}

.home-page .s4a-map__map-wrapper {
  width: 100%;
  min-height: clamp(560px, 74vh, 760px);
  aspect-ratio: auto;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(237,244,248,0.94) 44%, rgba(223,235,242,0.96) 100%);
  box-shadow: none;
}

.home-page .s4a-map__map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 114, 153, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 114, 153, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  pointer-events: none;
}

.s4a-map__map-art {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(470px, 48vw);
  height: auto;
  aspect-ratio: 760 / 980;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.s4a-map__benin-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 22px 38px rgba(13, 34, 59, 0.18));
}

.s4a-map__department {
  fill: #e8f3ee;
  stroke: var(--color-green);
  stroke-width: 5.2;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.s4a-map__department--active {
  fill: url(#activeFill);
}

.s4a-map__boundary {
  fill: none;
  stroke: rgba(42, 135, 88, 0.5);
  stroke-width: 2.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.s4a-map__benin-shape {
  fill: #eef7fb;
  stroke: #087299;
  stroke-width: 5;
  stroke-linejoin: round;
}

.s4a-map__dept-line {
  fill: none;
  stroke: rgba(8, 114, 153, 0.52);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s4a-map__dept-label {
  fill: #183247;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  text-anchor: middle;
  pointer-events: none;
}

.s4a-map__benin-svg--real .s4a-map__dept-label {
  fill: #183247;
  font-size: 22px;
  font-weight: 850;
  paint-order: stroke;
  stroke: rgba(237, 248, 243, 0.92);
  stroke-width: 7px;
  stroke-linejoin: round;
}

.header__social-link svg.social-icon--solid,
.nav-mobile-social svg.social-icon--solid,
.footer__social-link svg.social-icon--solid,
.contact-replacement-social svg.social-icon--solid {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.s4a-map__dept-label--small {
  font-size: 10px;
  font-weight: 800;
}

.s4a-map__geo-marker {
  cursor: pointer;
  outline: none;
}

.s4a-map__marker-halo {
  fill: rgba(254, 203, 62, 0.25);
  transition: fill 180ms ease, r 180ms ease;
}

.s4a-map__marker-ring {
  fill: #fff9e5;
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 6;
  filter: drop-shadow(0 8px 10px rgba(69, 72, 63, 0.18));
  transition: r 180ms ease;
}

.s4a-map__marker-core {
  fill: var(--color-secondary);
  transition: fill 180ms ease, r 180ms ease;
}

.s4a-map__geo-marker--primary .s4a-map__marker-halo,
.s4a-map__geo-marker--active .s4a-map__marker-halo {
  fill: rgba(213, 52, 57, 0.22);
}

.s4a-map__geo-marker--primary .s4a-map__marker-ring,
.s4a-map__geo-marker--active .s4a-map__marker-ring {
  fill: #fff;
}

.s4a-map__geo-marker--primary .s4a-map__marker-core,
.s4a-map__geo-marker--active .s4a-map__marker-core {
  fill: var(--color-cta);
}

.s4a-map__geo-marker:hover .s4a-map__marker-halo,
.s4a-map__geo-marker:focus-visible .s4a-map__marker-halo {
  r: 39;
}

.s4a-map__geo-marker:hover .s4a-map__marker-ring,
.s4a-map__geo-marker:focus-visible .s4a-map__marker-ring {
  r: 23;
}

.s4a-map__geo-marker text {
  fill: #183247;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 850;
  paint-order: stroke;
  stroke: rgba(235, 247, 242, 0.95);
  stroke-width: 6px;
  stroke-linejoin: round;
  pointer-events: none;
}

.s4a-map__geo-marker:focus-visible .s4a-map__marker-ring {
  stroke: var(--color-primary);
  stroke-width: 8;
}

.home-page .s4a-map__info {
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  color: var(--color-primary-dark);
}

.home-page .s4a-map__legend {
  color: rgba(24, 50, 71, 0.68);
}

.home-page .s4a-map__stat-number {
  color: var(--color-primary-dark);
}

.home-page .s4a-map__stat-text {
  color: rgba(24, 50, 71, 0.7);
}

.home-page .s4a-map__panel {
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 114, 153, 0.12);
}

@media (max-width: 1024px) {
  .s4a-map__map-art {
    width: min(420px, 62vw);
    height: auto;
  }
}

@media (max-width: 768px) {
  .home-page .s4a-map {
    padding: clamp(2rem, 7vw, 2.75rem) 0;
  }

  .home-page .s4a-map__text {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    padding-bottom: 1.15rem;
  }

  .home-page .s4a-map__title {
    margin-bottom: 0.75rem;
  }

  .home-page .s4a-map__desc {
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .home-page .s4a-map__hint {
    max-width: 31rem;
    margin-top: 0;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .home-page .s4a-map__map-wrapper {
    min-height: clamp(500px, 78vh, 590px);
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 37, 58, 0.08);
  }

  .home-page .s4a-map__map-wrapper::before {
    opacity: 0.22;
  }

  .s4a-map__map-art {
    top: 34%;
    width: min(310px, 74vw);
    height: auto;
  }

  .s4a-map__benin-svg--real .s4a-map__dept-label {
    font-size: 18px;
    stroke-width: 6px;
  }

  .s4a-map__geo-marker text {
    display: none;
  }

  .home-page .s4a-map__panel {
    position: absolute;
    top: auto;
    right: var(--space-md);
    bottom: var(--space-md);
    left: var(--space-md);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.8rem;
    row-gap: 0.48rem;
    align-items: center;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0.88rem;
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(28, 51, 83, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(17, 35, 62, 0.1);
    transform: translateY(14px);
  }

  .home-page .s4a-map__panel--visible {
    transform: translateY(0);
  }

  .home-page .s4a-map__panel-title {
    grid-column: 1;
    font-size: 1.02rem;
    margin: 0;
  }

  .home-page .s4a-map__panel-region {
    grid-column: 2;
    justify-self: end;
    margin: 0;
    padding: 0.18rem 0.5rem;
    color: var(--color-primary);
    background: #f6f8fb;
  }

  .home-page .s4a-map__panel-desc {
    grid-column: 1 / -1;
    display: -webkit-box;
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .s4a-map__panel-stat {
    grid-column: 1;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .home-page .s4a-map__panel-stat-val {
    font-size: 1.12rem;
  }

  .home-page .s4a-map__panel-stat-lbl {
    margin-top: 0.12rem;
    font-size: 0.48rem;
    line-height: 1.15;
  }

  .home-page .s4a-map__panel-link {
    grid-column: 2;
    justify-self: end;
    min-height: 34px;
    padding: 0.5rem 0.68rem;
    font-size: 0.64rem;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: var(--color-primary);
    box-shadow: none;
  }

  .home-page .s4a-map__mobile-footer {
    margin-top: 0.85rem;
    padding: 0.8rem 0.95rem;
    justify-content: center;
    border: 1px solid rgba(28, 51, 83, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 35, 62, 0.06);
  }

  .home-page .s4a-map__mobile-stat {
    width: 100%;
    justify-content: center;
  }

  .home-page .s4a-map__mobile-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .home-page .s4a-map__map-wrapper {
    min-height: clamp(470px, 76vh, 540px);
  }

  .s4a-map__map-art {
    top: 32%;
    width: min(270px, 72vw);
    height: auto;
  }

  .home-page .s4a-map__panel {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    grid-template-columns: 1fr auto;
    padding: 0.78rem;
  }

  .home-page .s4a-map__panel-region {
    font-size: 0.54rem;
  }

  .home-page .s4a-map__panel-link {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* --- About page: journey-style history timeline --- */
.history-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(35, 199, 165, 0.16), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(5, 159, 216, 0.13), transparent 28%),
    linear-gradient(135deg, #2f4b47 0%, #223a37 48%, #132724 100%) !important;
  color: #fff;
  isolation: isolate;
}

.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.42;
}

.history-section::after {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 50%;
  z-index: -1;
  width: 72px;
  height: 142px;
  border-top: 2px dashed rgba(255, 255, 255, 0.62);
  border-right: 2px dashed rgba(255, 255, 255, 0.62);
  border-radius: 0 42px 34px 0;
  transform: translateX(-18%) rotate(-12deg);
  opacity: 0.72;
}

.history-section .timeline {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(3.75rem, 7vw, 5.25rem) 0 0;
}

.history-section .timeline::before {
  left: 50%;
  top: clamp(2.5rem, 5vw, 3.75rem);
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.58) 16%, rgba(255,255,255,0.36) 82%, rgba(255,255,255,0.08));
  transform: translateX(-50%);
}

.history-section .timeline::after {
  content: '';
  position: absolute;
  top: clamp(7.4rem, 12vw, 9rem);
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.history-section .timeline__item {
  position: relative;
  width: calc(50% - clamp(2.5rem, 6vw, 4.25rem));
  min-height: 118px;
  margin-bottom: clamp(1.45rem, 3vw, 2.35rem);
  padding: 0;
  text-align: right;
}

.history-section .timeline__item:nth-child(even) {
  margin-left: calc(50% + clamp(2.5rem, 6vw, 4.25rem));
  text-align: left;
}

.history-section .timeline__item:last-child {
  margin-bottom: 0;
}

.history-section .timeline__item::before {
  left: auto;
  top: 1.05rem;
  right: calc(-1 * clamp(2.5rem, 6vw, 4.25rem) - 6px);
  width: clamp(2.5rem, 6vw, 4.25rem);
  height: 1px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.44);
}

.history-section .timeline__item:nth-child(even)::before {
  right: auto;
  left: calc(-1 * clamp(2.5rem, 6vw, 4.25rem) - 6px);
}

.history-section .timeline__item::after {
  content: '';
  position: absolute;
  top: 0.72rem;
  right: calc(-1 * clamp(2.5rem, 6vw, 4.25rem) - 11px);
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #2f4b47;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.055);
}

.history-section .timeline__item:nth-child(even)::after {
  right: auto;
  left: calc(-1 * clamp(2.5rem, 6vw, 4.25rem) - 11px);
}

.history-section .timeline__year {
  margin-bottom: 0.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.history-section .timeline__text {
  max-width: 390px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 500;
  line-height: 1.42;
}

.history-section .timeline__item:nth-child(even) .timeline__text {
  margin-left: 0;
  margin-right: auto;
}

.history-section .timeline__text strong {
  color: #fff;
  font-weight: 800;
}

/* --- Vision page: readable statement block --- */
.vision-statement-section,
body:not(.home-page) .vision-statement-section {
  background: #fff !important;
  color: var(--color-primary-dark);
}

.vision-statement-section .section__label {
  color: var(--color-green) !important;
}

.vision-statement-section .section__title {
  color: var(--color-primary-dark) !important;
}

.vision-statement-section p {
  color: var(--color-text-light) !important;
}

.vision-statement-section p:first-child {
  color: var(--color-primary-dark) !important;
}

@media (max-width: 760px) {
  .history-section {
    padding: 4rem 0;
  }

  .history-section::after {
    left: auto;
    right: 1.5rem;
    transform: rotate(-12deg);
    opacity: 0.42;
  }

  .history-section .timeline {
    padding-top: 2.25rem;
    padding-left: 2.1rem;
  }

  .history-section .timeline::before {
    left: 0.35rem;
    top: 2rem;
    transform: none;
  }

  .history-section .timeline::after {
    left: 0.35rem;
    top: 7rem;
  }

  .history-section .timeline__item,
  .history-section .timeline__item:nth-child(even) {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-bottom: 2rem;
    text-align: left;
  }

  .history-section .timeline__item::before,
  .history-section .timeline__item:nth-child(even)::before {
    left: -1.75rem;
    right: auto;
    width: 1.45rem;
  }

  .history-section .timeline__item::after,
  .history-section .timeline__item:nth-child(even)::after {
    left: -2.1rem;
    right: auto;
  }

  .history-section .timeline__text,
  .history-section .timeline__item:nth-child(even) .timeline__text {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* --- Final overrides: upcoming events keep the stepped layout on inner pages --- */
body:not(.home-page) .upcoming-events .event-card {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  align-items: end;
  width: min(760px, 100%);
  min-height: 152px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.home-page) .upcoming-events .event-card::before {
  display: none;
}

body:not(.home-page) .upcoming-events .event-card:hover {
  box-shadow: none;
  transform: translateX(0);
}

body:not(.home-page) .upcoming-events .event-card__date-box {
  min-width: 0;
  min-height: 152px;
  padding: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 8px 8px 0 0;
}

body:not(.home-page) .upcoming-events .event-card:nth-child(1) .event-card__date-box {
  background: linear-gradient(160deg, #ee7a39 0%, #e85d32 100%);
}

body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__date-box {
  background: linear-gradient(160deg, #ffbd3d 0%, #f5961d 100%);
}

body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__date-box {
  background: linear-gradient(160deg, #dbe4ef 0%, #aebdce 100%);
}

body:not(.home-page) .upcoming-events .event-card:nth-child(4) .event-card__date-box {
  background: linear-gradient(160deg, #9cadc2 0%, #70849c 100%);
}

body:not(.home-page) .upcoming-events .event-card__body {
  min-height: 112px;
  padding: 1.25rem 1.6rem 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 50, 96, 0.06);
  box-shadow: 0 18px 40px rgba(30, 50, 96, 0.08);
}

@media (max-width: 900px) {
  body:not(.home-page) .upcoming-events .event-card,
  body:not(.home-page) .upcoming-events .event-card:nth-child(2),
  body:not(.home-page) .upcoming-events .event-card:nth-child(3),
  body:not(.home-page) .upcoming-events .event-card:nth-child(4) {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  body:not(.home-page) .upcoming-events .event-list {
    padding-top: 0;
  }

  body:not(.home-page) .upcoming-events .event-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: auto;
    margin-top: 1rem;
  }

  body:not(.home-page) .upcoming-events .event-card__date-box {
    min-height: 100%;
    border-radius: 8px 0 0 8px;
  }

  body:not(.home-page) .upcoming-events .event-card__date-box::after {
    display: none;
  }

  body:not(.home-page) .upcoming-events .event-card__date-box::before {
    left: 0.8rem;
    font-size: 2rem;
  }

  body:not(.home-page) .upcoming-events .event-card__day,
  body:not(.home-page) .upcoming-events .event-card__month {
    align-self: flex-start;
  }

  body:not(.home-page) .upcoming-events .event-card__body {
    padding: 1rem 1rem 1rem 1.35rem;
  }

  body:not(.home-page) .upcoming-events .event-card__meta {
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  body:not(.home-page) .upcoming-events .event-card {
    grid-template-columns: 1fr;
  }

  body:not(.home-page) .upcoming-events .event-card__date-box {
    min-height: 94px;
    border-radius: 8px 8px 0 0;
  }

  body:not(.home-page) .upcoming-events .event-card__body {
    border-radius: 0 0 8px 8px;
  }
}

/* --- Final overrides: circular title heroes for inner pages --- */
body:not(.home-page) .page-hero {
  min-height: clamp(430px, 54vh, 620px);
  display: flex;
  align-items: center;
  padding: calc(var(--pre-header-height) + var(--header-height) + clamp(4rem, 7vw, 6rem)) 0 clamp(4rem, 7vw, 6rem);
  text-align: left;
  color: #0f1724;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.98) 0%, rgba(248,250,253,0.96) 48%, rgba(255,255,255,0.98) 100%) !important;
  isolation: isolate;
}

body:not(.home-page) .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(30, 50, 96, 0.08) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(5, 159, 216, 0.035), transparent 36%, rgba(212, 51, 56, 0.025));
  background-size: 32px 32px, auto;
  opacity: 0.48;
  pointer-events: none;
}

body:not(.home-page) .page-hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: calc(var(--pre-header-height) + var(--header-height) + clamp(9rem, 15vw, 12.5rem));
  left: calc(50% - min(600px, 50vw) + clamp(5.5rem, 10vw, 10.5rem));
  width: clamp(260px, 27vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 48%, rgba(255,255,255,0.72) 0 33%, rgba(255,255,255,0.24) 34% 51%, transparent 54%),
    radial-gradient(circle at 42% 34%, rgba(255, 96, 182, 0.38), transparent 38%),
    radial-gradient(circle at 20% 70%, rgba(14, 126, 251, 0.42), transparent 43%),
    radial-gradient(circle at 68% 72%, rgba(35, 199, 165, 0.22), transparent 42%);
  box-shadow:
    0 0 70px rgba(14, 126, 251, 0.11),
    0 0 96px rgba(212, 51, 56, 0.08);
  filter: blur(1px);
  transform: translate(-50%, -50%);
  opacity: 0.52;
  clip-path: none;
  pointer-events: none;
}

body:not(.home-page) .page-hero .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
}

body:not(.home-page) .page-hero .container::before {
  content: '';
  display: block;
  width: 54px;
  height: 13px;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
  background: #111820;
}

body:not(.home-page) .page-hero .container::after {
  content: 'ALAFIA 2050';
  position: absolute;
  top: clamp(0.25rem, 2vw, 1.25rem);
  left: clamp(7.25rem, 12vw, 11rem);
  right: auto;
  color: rgba(15, 23, 36, 0.44);
  font-family: var(--font-body);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

body:not(.home-page) .page-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 0 1.55rem;
  border: 1px solid rgba(30, 50, 96, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.38) 48%, transparent 50%),
    linear-gradient(135deg, rgba(14,126,251,0.2), rgba(35,199,165,0.18));
  box-shadow:
    0 18px 34px rgba(30, 50, 96, 0.13),
    inset 0 0 0 9px rgba(255, 255, 255, 0.52);
  font-size: 1.85rem;
}

body:not(.home-page) .page-hero__title {
  max-width: 780px;
  margin-bottom: 1rem;
  color: #101720;
  font-size: clamp(2.8rem, 6.3vw, 6.35rem);
  line-height: 0.96;
  text-shadow: none;
}

body:not(.home-page) .page-hero__subtitle {
  max-width: 700px;
  margin: 0;
  color: rgba(16, 23, 32, 0.72);
  font-size: clamp(1.06rem, 1.45vw, 1.38rem);
  line-height: 1.55;
}

@media (max-width: 920px) {
  body:not(.home-page) .page-hero {
    min-height: 390px;
    padding-top: calc(var(--header-height) + 3.75rem);
  }

  body:not(.home-page) .page-hero::after {
    top: calc(var(--header-height) + 10rem);
    left: clamp(10rem, 39vw, 20rem);
    width: min(360px, 58vw);
    opacity: 0.42;
  }

  body:not(.home-page) .page-hero .container::after {
    display: none;
  }
}

@media (max-width: 640px) {
  body:not(.home-page) .page-hero {
    min-height: 360px;
    padding-bottom: 3.5rem;
  }

  body:not(.home-page) .page-hero::after {
    top: calc(var(--header-height) + 8.5rem);
    left: 52%;
    width: min(300px, 76vw);
    opacity: 0.32;
  }

  body:not(.home-page) .page-hero .container::before {
    width: 44px;
    height: 10px;
    margin-bottom: 1.45rem;
  }

  body:not(.home-page) .page-hero__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.2rem;
    font-size: 1.45rem;
  }

  body:not(.home-page) .page-hero__title {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  body:not(.home-page) .page-hero__subtitle {
    max-width: 92%;
  }
}

/* --- Final overrides: breadcrumb above inner-page hero --- */
body:not(.home-page) main {
  display: flex;
  flex-direction: column;
}

body:not(.home-page) main > * {
  order: 3;
}

body:not(.home-page) main > .breadcrumb,
body:not(.home-page) main > .container:has(> .breadcrumb) {
  order: 1;
  margin-top: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 37, 58, 0.08);
  box-shadow: 0 10px 28px rgba(18, 37, 58, 0.05);
}

body:not(.home-page) main > .container:has(> .breadcrumb) {
  max-width: none;
  padding: 0;
}

body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb,
body:not(.home-page) main > .breadcrumb > .container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb,
body:not(.home-page) main > .breadcrumb {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body:not(.home-page) main > .page-hero {
  order: 2;
  padding-top: clamp(3.5rem, 6vw, 5.25rem);
}

@media (max-width: 640px) {
  body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb,
  body:not(.home-page) main > .breadcrumb > .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  body:not(.home-page) main > .page-hero {
    padding-top: 3rem;
  }
}

/* --- Final overrides: smooth global page background inspired by liguecancer44.fr --- */
:root {
  --color-bg: #ececec;
  --color-bg-alt: #f7f7f7;
  --color-surface: #ffffff;
  --color-border-light: #e2e2e2;
}

html,
body {
  background:
    linear-gradient(180deg, #f7f7f7 0%, #ececec 52%, #f3f3f3 100%);
}

body {
  background-color: #ececec;
}

main {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(247,247,247,0.58) 24rem, rgba(236,236,236,0.92) 100%);
}

.section {
  background-color: transparent;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(247,247,247,0.92) 0%, rgba(236,236,236,0.98) 100%);
}

.cards-grid,
.feature-row,
.two-col,
.contact-grid,
.stats-grid,
.event-list,
.actions-grid {
  position: relative;
}

.pillar-card,
.news-card,
.event-card,
.pub-card,
.action-detail-card,
.stat-card,
.contact-info__item,
.form-input,
.form-textarea,
.partner-logo {
  border-color: rgba(18, 37, 58, 0.08);
  box-shadow: 0 12px 30px rgba(18, 37, 58, 0.055);
}

.home-page .s4a-impact,
.home-page .s4a-news,
.home-page .s4a-whatwedo,
.home-page .s4a-map,
.home-page .s4a-pubs,
.home-page .s4a-projects,
.home-page .s4a-spots,
.home-page .s4a-cta {
  background:
    linear-gradient(180deg, rgba(247,247,247,0.96) 0%, rgba(236,236,236,0.92) 100%);
}

.home-page .s4a-impact-stat,
.home-page .s4a-news-card,
.home-page .s4a-whatwedo-card,
.home-page .s4a-project-card,
.home-page .s4a-pubs-card,
.home-page .s4a-pubs-featured {
  background: rgba(255, 255, 255, 0.92);
}

body:not(.home-page) .page-hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(247,247,247,0.9) 64%, rgba(236,236,236,0.98) 100%) !important;
}

body:not(.home-page) main > .breadcrumb,
body:not(.home-page) main > .container:has(> .breadcrumb) {
  background: rgba(247, 247, 247, 0.94);
  border-bottom-color: rgba(18, 37, 58, 0.07);
  box-shadow: 0 10px 26px rgba(18, 37, 58, 0.04);
}

body:not(.home-page) .page-hero::before {
  opacity: 0.26;
}

body:not(.home-page) .page-hero::after {
  opacity: 0.44;
}

/* --- Final overrides: ALAFIA palette and Montserrat system --- */
:root {
  --color-primary: #355087;
  --color-primary-light: #4f6aa2;
  --color-primary-dark: #243864;
  --color-secondary: #fecb3e;
  --color-accent: #007efc;
  --color-accent-hover: #0065d6;
  --color-cta: #d53439;
  --color-cta-hover: #b9272d;
  --color-green: #2a8758;
  --color-bg: #ececec;
  --color-bg-alt: #f7f7f7;
  --color-text: #162033;
  --color-text-light: #4b5870;
  --color-text-muted: #78849a;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-hero__title,
.section__title,
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
}

a {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-accent);
}

.btn--primary,
.newsletter .btn--white:hover {
  background-color: var(--color-cta);
  border-color: var(--color-cta);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
}

.btn--secondary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
}

.section__label {
  color: var(--color-green);
}

.section__title,
.two-col__content h2,
.pillar-card__title,
.news-card__title,
.event-card__title,
.pub-card__title,
.action-detail-card__title,
.s4a-news__head h2,
.s4a-projects__head h2,
.s4a-pubs__head h2,
.s4a-whatwedo__title,
.s4a-map__title {
  color: var(--color-primary);
}

.section__title::after {
  background: linear-gradient(90deg, var(--color-green), var(--color-secondary), var(--color-accent));
}

.site-topics__link:hover,
.site-topics__link--active,
.nav-secondary__link:hover,
.nav-secondary__link--active {
  color: var(--color-accent);
}

.header__social-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.header__social-link:hover,
.header__social-link:focus-visible {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary-dark);
}

.page-hero__title,
body:not(.home-page) .page-hero__title {
  color: var(--color-primary);
  font-weight: 800;
}

body:not(.home-page) .page-hero__subtitle {
  color: rgba(36, 56, 100, 0.78);
}

body:not(.home-page) .page-hero .container::before {
  background: var(--color-green);
}

body:not(.home-page) .page-hero .container::after {
  color: rgba(53, 80, 135, 0.46);
}

body:not(.home-page) .page-hero__icon {
  border-color: rgba(0, 126, 252, 0.14);
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.42) 48%, transparent 50%),
    linear-gradient(135deg, rgba(42,135,88,0.2), rgba(0,126,252,0.16));
}

body:not(.home-page) .page-hero::after {
  background:
    radial-gradient(circle at 54% 48%, rgba(255,255,255,0.74) 0 33%, rgba(255,255,255,0.24) 34% 51%, transparent 54%),
    radial-gradient(circle at 39% 32%, rgba(254, 203, 62, 0.4), transparent 38%),
    radial-gradient(circle at 21% 70%, rgba(0, 126, 252, 0.38), transparent 43%),
    radial-gradient(circle at 68% 72%, rgba(42, 135, 88, 0.26), transparent 42%);
}

.pillar-card__icon,
.contact-info__icon {
  background: rgba(42, 135, 88, 0.1);
  color: var(--color-green);
}

.check-list li::before {
  color: var(--color-green);
}

.news-card__tag,
.pub-card__type,
.event-card__tag,
.action-detail-card__stat strong,
.stat-card__number,
.s4a-news-card__tag,
.s4a-project-card__tag,
.s4a-pubs-card__tag {
  color: var(--color-green);
}

.event-card__date-box {
  background: var(--color-primary);
}

.newsletter,
.s4a-newsletter {
  background:
    linear-gradient(135deg, var(--color-primary) 0%, #294170 54%, var(--color-green) 100%);
}

.newsletter::before,
.s4a-newsletter::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(254,203,62,0.18), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(0,126,252,0.18), transparent 30%);
}

.home-page .s4a-impact__title,
.home-page .s4a-impact-stat__number,
.home-page .s4a-map__benin-shape {
  color: var(--color-green);
  fill: rgba(42, 135, 88, 0.08);
  stroke: var(--color-green);
}

.home-page .s4a-map__dept-line {
  stroke: rgba(42, 135, 88, 0.52);
}

.home-page .s4a-news__more,
.s4a-project-card__tag,
.s4a-news-card__tag {
  color: var(--color-cta);
}

.upcoming-events .event-card:nth-child(1) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(1) .event-card__date-box {
  background: linear-gradient(160deg, var(--color-green), #1f6c46);
}

.upcoming-events .event-card:nth-child(2) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__date-box {
  background: linear-gradient(160deg, var(--color-secondary), #efb823);
}

.upcoming-events .event-card:nth-child(3) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__date-box {
  background: linear-gradient(160deg, var(--color-cta), #b9272d);
}

.upcoming-events .event-card:nth-child(4) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(4) .event-card__date-box {
  background: linear-gradient(160deg, var(--color-primary), #243864);
}

.upcoming-events .event-card:nth-child(2) .event-card__date-box::before {
  color: #162033;
}

.upcoming-events .event-card:nth-child(3) .event-card__date-box::before,
.upcoming-events .event-card:nth-child(4) .event-card__date-box::before {
  color: #fff;
}

/* --- Agenda page: clean event list, no roadmap lines --- */
body:not(.home-page) .upcoming-events {
  overflow: visible;
  background: #f7f9fb;
}

body:not(.home-page) .upcoming-events::before,
body:not(.home-page) .upcoming-events .event-card::before,
body:not(.home-page) .upcoming-events .event-card::after,
body:not(.home-page) .upcoming-events .event-card__date-box::before,
body:not(.home-page) .upcoming-events .event-card__date-box::after,
body:not(.home-page) .upcoming-events .event-card__body::before {
  content: none !important;
  display: none !important;
}

body:not(.home-page) .upcoming-events .event-list {
  width: min(940px, 100%);
  max-width: 940px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  padding: 0;
  gap: 1rem;
}

body:not(.home-page) .upcoming-events .event-card,
body:not(.home-page) .upcoming-events .event-card:nth-child(1),
body:not(.home-page) .upcoming-events .event-card:nth-child(2),
body:not(.home-page) .upcoming-events .event-card:nth-child(3),
body:not(.home-page) .upcoming-events .event-card:nth-child(4) {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  margin: 0 !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 50, 96, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 35, 62, 0.07);
  transform: none;
}

body:not(.home-page) .upcoming-events .event-card:hover {
  box-shadow: 0 18px 42px rgba(17, 35, 62, 0.1);
  transform: translateY(-2px);
}

body:not(.home-page) .upcoming-events .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(1) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__date-box,
body:not(.home-page) .upcoming-events .event-card:nth-child(4) .event-card__date-box {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2a8758;
  border-radius: 0;
  color: #fff;
  box-shadow: none;
  text-align: center;
}

body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__date-box {
  background: #f27a1a;
}

body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__date-box {
  background: #355087;
}

body:not(.home-page) .upcoming-events .event-card:nth-child(4) .event-card__date-box {
  background: #1f6c46;
}

body:not(.home-page) .upcoming-events .event-card__day,
body:not(.home-page) .upcoming-events .event-card__month,
body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__day,
body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__month,
body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__day,
body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__month {
  position: static;
  align-self: center;
  color: #fff;
  font-family: var(--font-body);
  line-height: 1;
  letter-spacing: 0;
}

body:not(.home-page) .upcoming-events .event-card__day {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
}

body:not(.home-page) .upcoming-events .event-card__month {
  margin-top: 0.38rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.home-page) .upcoming-events .event-card__body {
  min-height: 0;
  margin: 0;
  padding: 1.3rem 1.45rem;
  background: #fff;
  border: 0;
  box-shadow: none;
}

body:not(.home-page) .upcoming-events .event-card__tag {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body:not(.home-page) .upcoming-events .event-card__title {
  margin-bottom: 0.58rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.22;
}

body:not(.home-page) .upcoming-events .event-card__body p {
  max-width: none;
  margin-bottom: 0.85rem !important;
}

body:not(.home-page) .upcoming-events .event-card__meta {
  display: flex;
  gap: 0.8rem 1.15rem;
  flex-wrap: wrap;
  color: #5b6b7d;
}

body:not(.home-page) .upcoming-events .event-card .btn {
  min-height: 38px;
  border-radius: 999px;
  background: #fff;
  border-color: rgba(30, 50, 96, 0.16);
}

@media (max-width: 680px) {
  body:not(.home-page) .upcoming-events .event-list {
    gap: 0.9rem;
  }

  body:not(.home-page) .upcoming-events .event-card,
  body:not(.home-page) .upcoming-events .event-card:nth-child(1),
  body:not(.home-page) .upcoming-events .event-card:nth-child(2),
  body:not(.home-page) .upcoming-events .event-card:nth-child(3),
  body:not(.home-page) .upcoming-events .event-card:nth-child(4) {
    grid-template-columns: 1fr;
  }

  body:not(.home-page) .upcoming-events .event-card__date-box,
  body:not(.home-page) .upcoming-events .event-card:nth-child(1) .event-card__date-box,
  body:not(.home-page) .upcoming-events .event-card:nth-child(2) .event-card__date-box,
  body:not(.home-page) .upcoming-events .event-card:nth-child(3) .event-card__date-box,
  body:not(.home-page) .upcoming-events .event-card:nth-child(4) .event-card__date-box {
    min-height: 70px;
    padding: 0.85rem 1rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.58rem;
  }

  body:not(.home-page) .upcoming-events .event-card__day {
    font-size: 2rem;
  }

  body:not(.home-page) .upcoming-events .event-card__month {
    margin-top: 0;
    font-size: 0.82rem;
  }

  body:not(.home-page) .upcoming-events .event-card__body {
    padding: 1.05rem;
  }

  body:not(.home-page) .upcoming-events .event-card__meta {
    flex-direction: column;
    gap: 0.35rem;
  }
}

.history-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(254, 203, 62, 0.16), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(0, 126, 252, 0.13), transparent 28%),
    linear-gradient(135deg, var(--color-primary) 0%, #263c68 48%, var(--color-green) 100%) !important;
}

.footer__copyright,
.footer__credit,
.footer__link {
  color: var(--color-primary);
}

/* --- Numeric typography cleanup --- */
.hero__stat-number,
.stat-item__number,
.stat-card__number,
.s4a-impact-stat__number,
.s4a-map__stat-number,
.s4a-map__panel-stat-val,
.numeric-text,
[data-count] {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ============================================================
   Taste skill targeted polish
   Institutional, calm, compact
   ============================================================ */

:root {
  --alafia-surface: rgba(255, 255, 255, 0.96);
  --alafia-surface-soft: rgba(255, 255, 255, 0.72);
  --alafia-line: rgba(28, 51, 83, 0.105);
  --alafia-shadow-soft: 0 18px 45px rgba(18, 37, 58, 0.08);
  --alafia-shadow-hover: 0 24px 62px rgba(18, 37, 58, 0.13);
  --alafia-focus: rgba(0, 126, 252, 0.34);
}

html {
  background: #f3f5f7;
}

body {
  background:
    linear-gradient(180deg, #f8fafb 0%, #f1f4f7 42%, #eceff3 100%);
}

::selection {
  background: rgba(254, 203, 62, 0.42);
  color: var(--color-primary-dark);
}

a,
button,
.btn,
.s4a-hero__btn,
.s4a-whatwedo__btn,
.s4a-map__panel-link,
.s4a-news__more {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-input:focus,
.form-textarea:focus {
  outline: 3px solid var(--alafia-focus);
  outline-offset: 3px;
}

.btn,
.s4a-hero__btn,
.s4a-whatwedo__btn,
.s4a-map__mobile-cta,
.s4a-map__panel-link {
  border-radius: 999px;
}

.btn:active,
.s4a-hero__btn:active,
.s4a-whatwedo__btn:active,
.s4a-map__mobile-cta:active,
.s4a-map__panel-link:active {
  transform: translateY(0) scale(0.985);
}

.section__subtitle,
.s4a-impact__lead,
.s4a-whatwedo__desc,
.s4a-map__desc,
.page-hero__subtitle {
  color: rgba(22, 32, 51, 0.72);
}

.section__title,
.page-hero__title,
.s4a-hero__title,
.s4a-impact__title,
.s4a-news__head h2,
.s4a-whatwedo__title,
.s4a-map__title {
  text-wrap: balance;
}

.home-page .s4a-hero__shade {
  background:
    linear-gradient(to bottom, rgba(236,230,219,0.76) 0%, rgba(236,230,219,0) 34%),
    linear-gradient(to bottom, rgba(236,230,219,0) 0%, rgba(236,230,219,0) 50%, rgba(236,230,219,0.78) 100%),
    linear-gradient(90deg, rgba(12, 16, 18, 0.45) 0%, rgba(12, 16, 18, 0.22) 44%, rgba(12, 16, 18, 0.05) 74%);
}

.home-page .s4a-hero__copy {
  max-width: 980px;
}

.home-page .s4a-hero__title {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 7px rgba(91, 81, 59, 0.72);
}

.home-page .s4a-hero__btn {
  background: #fff;
  border-color: #fff;
  color: var(--color-green);
  box-shadow: none;
}

.home-page .s4a-hero__btn:hover,
.home-page .s4a-hero__btn:focus-visible {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

.home-page .s4a-impact {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.home-page .s4a-impact__head {
  padding-top: 0.25rem;
}

.home-page .s4a-impact__subtitle {
  color: rgba(36, 56, 100, 0.72);
}

.home-page .s4a-impact__grid {
  grid-template-columns: 1.16fr 0.92fr 0.92fr 1fr;
  border-color: var(--alafia-line);
}

.home-page .s4a-impact-stat {
  isolation: isolate;
  border-color: var(--alafia-line);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.home-page .s4a-impact-stat:hover,
.home-page .s4a-impact-stat:focus-visible {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--alafia-shadow-hover);
}

.home-page .s4a-impact-stat__number {
  font-weight: 700 !important;
}

.home-page .s4a-news {
  background: #f6f8fb;
}

.home-page .s4a-news__head,
.home-page .s4a-projects__head,
.home-page .s4a-pubs__head {
  border-bottom-color: var(--alafia-line);
}

.home-page .s4a-news__more {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.45rem;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-page .s4a-news__more span {
  transition: transform var(--transition-fast);
}

.home-page .s4a-news__more:hover span {
  transform: translateX(3px);
}

.home-page .s4a-news-card,
.home-page .s4a-whatwedo-card,
.pillar-card,
.news-card,
.event-card,
.pub-card,
.action-detail-card,
.stat-card,
.contact-info__item {
  border-color: var(--alafia-line);
  box-shadow: var(--alafia-shadow-soft);
}

.home-page .s4a-news-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .s4a-news-card:hover {
  border-color: rgba(42, 135, 88, 0.18);
  box-shadow: var(--alafia-shadow-hover);
}

.home-page .s4a-news-card__img,
.home-page .s4a-whatwedo-card__img-link img {
  transition: transform 500ms ease, filter 500ms ease;
}

.home-page .s4a-news-card:hover .s4a-news-card__img,
.home-page .s4a-whatwedo-card:hover .s4a-whatwedo-card__img-link img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.03);
}

.home-page .s4a-whatwedo {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #eef4f1 100%);
}

.home-page .s4a-whatwedo__grid {
  align-items: center;
}

.home-page .s4a-whatwedo__btn {
  color: var(--color-primary-dark);
  border-color: rgba(36, 56, 100, 0.28);
  background: rgba(255, 255, 255, 0.72);
  text-transform: none;
  letter-spacing: 0;
}

.home-page .s4a-whatwedo__btn:hover,
.home-page .s4a-whatwedo__btn:focus-visible {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.home-page .s4a-whatwedo-card {
  overflow: hidden;
}

.home-page .s4a-whatwedo-card__badge {
  color: rgba(36, 56, 100, 0.68);
}

.home-page .s4a-whatwedo-dot {
  width: 9px;
  height: 9px;
  background: rgba(36, 56, 100, 0.2);
}

.home-page .s4a-whatwedo-dot.active,
.home-page .s4a-whatwedo-dot:hover {
  background: var(--color-green);
}

.home-page .s4a-map {
  background: #f8fafb;
}

.home-page .s4a-map__map-wrapper {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(237,245,242,0.96) 46%, rgba(226,236,243,0.98) 100%);
}

.home-page .s4a-map__panel {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 54px rgba(18, 37, 58, 0.14);
}

.home-page .s4a-map__panel-region {
  color: var(--color-primary-dark);
  background: rgba(254, 203, 62, 0.28);
}

.home-page .s4a-map__panel-link {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.home-page .s4a-map__panel-link:hover,
.home-page .s4a-map__panel-link:focus-visible {
  background: var(--color-green);
  color: #fff;
}

body:not(.home-page) .page-hero {
  min-height: clamp(270px, 34vh, 390px);
  border-bottom: 1px solid var(--alafia-line);
}

body:not(.home-page) .page-hero::before,
body:not(.home-page) .page-hero::after {
  filter: saturate(0.9);
}

body:not(.home-page) .page-hero__icon {
  box-shadow: 0 16px 40px rgba(18, 37, 58, 0.08);
}

.footer {
  background: rgba(255, 255, 255, 0.94);
  border-top-color: var(--alafia-line);
}

.footer__support {
  padding: 0.65rem 0;
}

.footer__partners-grid {
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
}

.footer__partner-logo {
  filter: saturate(0.92) contrast(1.02);
}

@media (min-width: 769px) {
  .home-page .s4a-impact-stat:first-child,
  .home-page .s4a-impact-stat:last-child {
    min-height: 315px;
  }
}

@media (max-width: 1024px) {
  .home-page .s4a-impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-page .s4a-hero__title {
    line-height: 1.25;
  }

  .home-page .s4a-hero__btn {
    min-height: 50px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .home-page .s4a-impact__grid,
  .home-page .s4a-news__grid {
    grid-template-columns: 1fr;
  }

  .home-page .s4a-impact-stat:hover,
  .home-page .s4a-impact-stat:focus-visible,
  .home-page .s4a-news-card:hover {
    transform: none;
  }

  .home-page .s4a-news__head {
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Footer CTA 2026
   Premium minimal, logo green / donation orange / beige actions
   ============================================================ */

:root {
  --cta-footer-beige: #fdfbf7;
  --cta-footer-charcoal: #101817;
}

.newsletter {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.75rem);
  margin: clamp(4rem, 8vw, 6.5rem) 0;
  padding: clamp(2rem, 5vw, 4.75rem);
  overflow: hidden;
  text-align: left;
  color: var(--cta-footer-beige);
  border: 1px solid rgba(253, 251, 247, 0.14);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015) 44%, rgba(255,255,255,0.045)),
    linear-gradient(145deg, var(--cta-footer-charcoal) 0%, #13211d 42%, #152a21 66%, var(--color-green) 140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.06),
    0 30px 90px rgba(12, 24, 22, 0.24);
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(253,251,247,0.08), transparent 38%, rgba(253,251,247,0.035)),
    linear-gradient(180deg, rgba(42,135,88,0.22), transparent 48%);
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  inset: auto clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.8rem);
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(253,251,247,0.24), transparent);
  pointer-events: none;
}

.newsletter__title,
.newsletter__desc {
  grid-column: 1;
  margin-left: 0;
  margin-right: 0;
}

.newsletter__title {
  max-width: 760px;
  margin-bottom: clamp(0.75rem, 1.7vw, 1.15rem);
  color: var(--cta-footer-beige);
  font-size: clamp(2rem, 4.6vw, 4.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.newsletter__desc {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(253, 251, 247, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.62;
}

.newsletter__actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.85rem;
  min-width: min(100%, 300px);
}

.newsletter > .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
}

.newsletter__form {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 520px);
  max-width: 520px;
  margin: 0;
  padding: 0.42rem;
  border: 1px solid rgba(253,251,247,0.14);
  border-radius: 999px;
  background: rgba(253,251,247,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.newsletter__input {
  min-width: 0;
  height: 52px;
  padding: 0 1.15rem;
  color: var(--cta-footer-beige);
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.newsletter__input::placeholder {
  color: rgba(253,251,247,0.58);
}

.newsletter__input:focus {
  box-shadow: none;
}

.newsletter .btn {
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(253,251,247,0.36);
  border-radius: 999px;
  background: var(--cta-footer-beige);
  color: #17211d;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.62),
    0 14px 28px rgba(0,0,0,0.16);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.newsletter .btn:hover,
.newsletter .btn:focus-visible {
  background: #fff;
  border-color: rgba(253,251,247,0.62);
  color: var(--color-green);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 20px 44px rgba(0,0,0,0.22);
}

.newsletter .btn--don {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.newsletter .btn--don:hover,
.newsletter .btn--don:focus-visible {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
}

.newsletter .btn--outline-white {
  background: rgba(253,251,247,0.1);
  border-color: rgba(253,251,247,0.34);
  color: var(--cta-footer-beige);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.newsletter .btn--outline-white:hover,
.newsletter .btn--outline-white:focus-visible {
  background: var(--cta-footer-beige);
  border-color: var(--cta-footer-beige);
  color: #17211d;
}

@media (max-width: 980px) {
  .newsletter {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter__title,
  .newsletter__desc,
  .newsletter__actions,
  .newsletter > .btn,
  .newsletter__form {
    grid-column: 1;
    grid-row: auto;
  }

  .newsletter__title,
  .newsletter__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter__actions,
  .newsletter > .btn {
    justify-self: center;
    justify-content: center;
  }

  .newsletter__form {
    justify-self: center;
    margin-top: 0.35rem;
  }
}

@media (max-width: 560px) {
  .newsletter {
    border-radius: 26px;
    padding: 2rem 1.15rem;
  }

  .newsletter__actions,
  .newsletter__form {
    width: 100%;
  }

  .newsletter__actions,
  .newsletter__form {
    flex-direction: column;
  }

  .newsletter .btn,
  .newsletter > .btn,
  .newsletter__input {
    width: 100%;
  }

  .newsletter__form {
    padding: 0.5rem;
    border-radius: 24px;
  }
}

/* ============================================================
   Contact page premium redesign
   ============================================================ */

.contact-page main {
  background: linear-gradient(180deg, #f5f8f7 0%, #eef3f1 100%);
}

.contact-page main > .contact-hero {
  order: 1;
  padding-top: calc(var(--header-height) + clamp(4rem, 7vw, 6rem));
}

.contact-page main > .container:has(> .breadcrumb) {
  order: 2;
  margin-top: 0;
  background: rgba(245, 248, 247, 0.92);
  border-bottom-color: rgba(28, 51, 83, 0.08);
  box-shadow: none;
}

.contact-page .breadcrumb {
  color: rgba(22, 32, 51, 0.56);
}

.contact-page .breadcrumb a {
  color: rgba(22, 32, 51, 0.62);
}

.contact-page .breadcrumb a:hover {
  color: var(--color-green);
}

.contact-page .breadcrumb__sep {
  color: rgba(22, 32, 51, 0.28);
}

.contact-hero {
  order: 2;
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 76vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 7rem);
  color: #fdfbf7;
  background:
    linear-gradient(135deg, rgba(16,24,23,0.96), rgba(19,33,29,0.94) 52%, rgba(42,135,88,0.76)),
    url('https://images.unsplash.com/photo-1496307653780-42ee777d4833?w=1800&q=82') center/cover;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16,24,23,0.88), rgba(16,24,23,0.54) 54%, rgba(16,24,23,0.28)),
    linear-gradient(180deg, rgba(16,24,23,0.2), rgba(16,24,23,0.72));
}

.contact-hero::after {
  content: '';
  position: absolute;
  right: clamp(1.5rem, 7vw, 8rem);
  bottom: clamp(2rem, 6vw, 5rem);
  z-index: -1;
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(253,251,247,0.34), transparent 34%),
    radial-gradient(circle at 70% 64%, rgba(254,203,62,0.25), transparent 38%),
    radial-gradient(circle at 36% 72%, rgba(42,135,88,0.5), transparent 42%);
  filter: blur(10px);
  opacity: 0.72;
  pointer-events: none;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-hero__copy {
  max-width: 860px;
}

.contact-hero__eyebrow,
.contact-form-shell__head span,
.contact-map-section__copy span,
.contact-social-section__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  color: rgba(253, 251, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero__title {
  max-width: 820px;
  margin: 0 0 1.35rem;
  color: #fdfbf7;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-hero__subtitle {
  max-width: 680px;
  margin: 0;
  color: rgba(253, 251, 247, 0.74);
  font-size: clamp(1.05rem, 1.65vw, 1.42rem);
  font-weight: 500;
  line-height: 1.58;
}

.contact-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-hero__actions .btn--white {
  color: #14201d;
  background: #fdfbf7;
  border-color: #fdfbf7;
}

.contact-hero__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.8vw, 2rem);
  border: 1px solid rgba(253,251,247,0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(253,251,247,0.14), rgba(253,251,247,0.045)),
    rgba(16,24,23,0.36);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 28px 72px rgba(0,0,0,0.22);
}

.contact-hero__panel-label {
  margin: 0 0 0.85rem;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero__panel-text {
  margin: 0 0 2rem;
  color: rgba(253,251,247,0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-hero__stat {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(253,251,247,0.14);
}

.contact-hero__stat span {
  color: #fdfbf7;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.9;
}

.contact-hero__stat p {
  margin: 0;
  color: rgba(253,251,247,0.62);
  font-weight: 600;
}

.contact-modern {
  order: 3;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 5.75rem);
}

.contact-modern__intro {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.contact-modern__intro h2,
.contact-map-section__copy h2,
.contact-social-section h2 {
  margin: 0 0 1rem;
  color: var(--color-primary-dark);
  font-size: clamp(2rem, 4.3vw, 4.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.contact-modern__intro p,
.contact-map-section__copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(22, 32, 51, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.68;
}

.contact-modern__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.contact-modern__aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  border: 1px solid rgba(28, 51, 83, 0.09);
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 42px rgba(18,37,58,0.065);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42,135,88,0.2);
  box-shadow: 0 24px 58px rgba(18,37,58,0.11);
}

.contact-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 40px;
  padding: 0 0.7rem;
  color: #fdfbf7;
  border-radius: 999px;
  background: var(--color-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  color: var(--color-primary-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.contact-card p {
  margin: 0;
  color: rgba(22,32,51,0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--color-green);
}

.contact-form-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid rgba(28, 51, 83, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72)),
    rgba(255,255,255,0.86);
  box-shadow: 0 28px 82px rgba(18,37,58,0.12);
}

.contact-form-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(42,135,88,0.12), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(254,203,62,0.18), transparent 28%);
  pointer-events: none;
}

.contact-form-shell > * {
  position: relative;
}

.contact-form-shell__head {
  margin-bottom: clamp(1.3rem, 3vw, 2rem);
}

.contact-form-shell__head span,
.contact-map-section__copy span {
  color: var(--color-green);
}

.contact-form-shell__head h2 {
  margin: 0 0 0.65rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.8rem, 3.3vw, 3.2rem);
  line-height: 1;
}

.contact-form-shell__head p {
  max-width: 560px;
  margin: 0;
  color: rgba(22,32,51,0.64);
  line-height: 1.6;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-page .form-label {
  color: rgba(22,32,51,0.72);
  font-weight: 800;
}

.contact-page .form-input,
.contact-page .form-textarea {
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(28,51,83,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-page .form-input:focus,
.contact-page .form-textarea:focus {
  border-color: rgba(42,135,88,0.56);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(42,135,88,0.12),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.contact-page .form-textarea {
  min-height: 170px;
}

.contact-map-section {
  order: 4;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.contact-map-section__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.contact-map-card {
  overflow: hidden;
  min-height: clamp(360px, 48vw, 560px);
  border: 1px solid rgba(28, 51, 83, 0.1);
  border-radius: 34px;
  background: #dfe8e3;
  box-shadow: 0 28px 82px rgba(18,37,58,0.13);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.85) contrast(1.04);
}

/* Contact page replacement block */
.contact-replacement-section,
.contact-replacement-map {
  --contact-green-deep: #1e5631;
  --contact-orange: #f27a1a;
  --contact-orange-hover: #d8650e;
  --contact-text-dark: #1a202c;
  --contact-text-grey: #718096;
  --contact-bg-light: #f7fafc;
}

.contact-replacement-section {
  order: 3;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3.2rem);
}

.contact-replacement-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 50px -15px rgba(30, 86, 49, 0.15);
}

.contact-replacement-info {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 4vw, 3.15rem) clamp(1.8rem, 3.2vw, 2.5rem);
  color: #fff;
  background: linear-gradient(135deg, var(--contact-green-deep) 0%, #2e7d32 100%);
}

.contact-replacement-info__content {
  position: relative;
  z-index: 1;
}

.contact-replacement-info h2,
.contact-replacement-form__header h2,
.contact-replacement-map__header h2 {
  margin: 0 0 0.65rem;
  color: inherit;
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-replacement-info h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

.contact-replacement-info p {
  margin: 0 0 clamp(1.8rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-replacement-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-replacement-info__item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.contact-replacement-info__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-replacement-info__text h3 {
  margin: 0 0 0.15rem;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.2;
}

.contact-replacement-info__text span,
.contact-replacement-info__text a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.4;
  text-decoration: none;
}

.contact-replacement-info__text a:hover,
.contact-replacement-info__text a:focus-visible {
  color: #fff;
}

.contact-replacement-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(1.9rem, 4vw, 2.5rem);
}

.contact-replacement-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.contact-replacement-social:hover,
.contact-replacement-social:focus-visible {
  color: #fff;
  background: var(--contact-orange);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 15px rgba(242, 122, 26, 0.4);
}

.contact-replacement-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 4vw, 3.15rem) clamp(1.8rem, 3.2vw, 2.5rem);
}

.contact-replacement-form__header {
  margin-bottom: 1.85rem;
}

.contact-replacement-form__header h2 {
  color: var(--contact-text-dark);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.contact-replacement-form__header p,
.contact-replacement-map__header p {
  margin: 0;
  color: var(--contact-text-grey);
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-replacement-form__row {
  display: flex;
  gap: 1.25rem;
}

.contact-replacement-form__row .contact-replacement-field {
  flex: 1;
}

.contact-replacement-field {
  position: relative;
  margin-bottom: 1.25rem;
}

.contact-replacement-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--contact-text-grey);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-replacement-field input,
.contact-replacement-field select,
.contact-replacement-field textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  color: var(--contact-text-dark);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  outline: none;
  background: #fbfcfd;
  font: inherit;
  font-size: 0.96rem;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-replacement-field input:focus,
.contact-replacement-field select:focus,
.contact-replacement-field textarea:focus {
  border-color: var(--contact-green-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.contact-replacement-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-replacement-field input:not(:placeholder-shown),
.contact-replacement-field textarea:not(:placeholder-shown),
.contact-replacement-field select:valid {
  background: #fff;
}

.contact-replacement-field input::selection,
.contact-replacement-field textarea::selection {
  color: var(--contact-text-dark);
  background: rgba(254, 203, 62, 0.28);
}

.contact-replacement-field input:-webkit-autofill,
.contact-replacement-field input:-webkit-autofill:hover,
.contact-replacement-field input:-webkit-autofill:focus,
.contact-replacement-field input:-webkit-autofill:active,
.contact-replacement-field textarea:-webkit-autofill,
.contact-replacement-field textarea:-webkit-autofill:hover,
.contact-replacement-field textarea:-webkit-autofill:focus,
.contact-replacement-field textarea:-webkit-autofill:active,
.contact-replacement-field select:-webkit-autofill,
.contact-replacement-field select:-webkit-autofill:hover,
.contact-replacement-field select:-webkit-autofill:focus,
.contact-replacement-field select:-webkit-autofill:active {
  -webkit-text-fill-color: var(--contact-text-dark);
  caret-color: var(--contact-text-dark);
  transition: background-color 9999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

.contact-replacement-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.6rem;
  padding: 1.05rem 1.4rem;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--contact-orange);
  box-shadow: 0 8px 20px rgba(242, 122, 26, 0.3);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 1.04rem;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.contact-replacement-submit:hover,
.contact-replacement-submit:focus-visible {
  background: var(--contact-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(242, 122, 26, 0.4);
}

.contact-replacement-map {
  order: 4;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.contact-replacement-map__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.8rem, 3.4vw, 2.5rem);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 50px -15px rgba(30, 86, 49, 0.15);
}

.contact-replacement-map__header {
  margin-bottom: 1.85rem;
  text-align: center;
}

.contact-replacement-map__header h2 {
  color: var(--contact-text-dark, #1a202c);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.contact-replacement-map__container {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 42vw, 400px);
  border: 4px solid #f7fafc;
  border-radius: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-replacement-map__container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.contact-replacement-map__container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.1) saturate(0.85);
}

.site-wide-sleek-cta {
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.sleek-cta-container {
  --sleek-green-deep: #1e5631;
  --sleek-green-soft: #e8f5e9;
  --sleek-orange: #f27a1a;
  --sleek-orange-hover: #d8650e;
  --sleek-text-dark: #1a202c;
  --sleek-text-grey: #718096;
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(2rem, 4.8vw, 3.4rem);
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(620px, 1.45fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 50px -15px rgba(30, 86, 49, 0.15);
}

.sleek-cta-container::before,
.sleek-cta-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.sleek-cta-container::before {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 122, 26, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.sleek-cta-container::after {
  bottom: -60px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 86, 49, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  min-width: 0;
  text-align: left;
}

.cta-icon-bubble {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--sleek-green-soft);
  font-size: 1.5rem;
}

.cta-text h2 {
  margin: 0 0 0.3rem;
  color: var(--sleek-text-dark);
  font-family: var(--font-heading);
  max-width: 310px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.cta-text p {
  margin: 0;
  max-width: 330px;
  color: var(--sleek-text-grey);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.45;
}

.cta-actions {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.05rem, 2.2vw, 1.65rem);
  width: 100%;
}

.sleek-newsletter {
  display: flex;
  align-items: center;
  width: clamp(260px, 26vw, 330px);
  min-height: 56px;
  padding: 5px 5px 5px 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f7fafc;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.sleek-newsletter:focus-within {
  border-color: var(--sleek-green-deep);
  box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.sleek-newsletter input {
  width: clamp(180px, 16vw, 230px);
  min-width: 0;
  color: var(--sleek-text-dark);
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
}

.sleek-newsletter input::placeholder {
  color: #a0aec0;
}

.sleek-newsletter button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.45rem;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--sleek-green-deep);
  box-shadow: 0 8px 18px rgba(30, 86, 49, 0.22);
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.sleek-newsletter button svg {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: currentColor;
  transform: none;
}

.sleek-newsletter button:hover,
.sleek-newsletter button:focus-visible {
  background: #154025;
  transform: translateY(-1px);
}

.link-member {
  position: relative;
  flex: 0 0 auto;
  padding: 0.65rem 0.35rem;
  color: var(--sleek-text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 220ms ease;
}

.link-member::after {
  content: '';
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  background: var(--sleek-green-deep);
  transition: width 220ms ease;
}

.link-member:hover,
.link-member:focus-visible {
  color: var(--sleek-green-deep);
}

.link-member:hover::after,
.link-member:focus-visible::after {
  width: calc(100% - 0.7rem);
}

.cta-donation-zone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.btn-don-sleek {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 210px;
  min-height: 60px;
  padding: 0.95rem 2rem;
  color: #fff;
  border-radius: 999px;
  background: var(--sleek-orange);
  box-shadow: 0 12px 28px rgba(242, 122, 26, 0.34);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.04rem;
  text-decoration: none;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.btn-don-sleek:hover,
.btn-don-sleek:focus-visible {
  color: #fff;
  background: var(--sleek-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(242, 122, 26, 0.42);
}

.donation-modal-overlay {
  --donation-green-deep: #1e5631;
  --donation-green-soft: #e8f5e9;
  --donation-orange: #f27a1a;
  --donation-orange-hover: #d8650e;
  --donation-text-dark: #1a202c;
  --donation-text-grey: #718096;
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(26, 32, 44, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.donation-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.donation-modal {
  position: relative;
  width: min(100%, 480px);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 280ms cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.donation-modal-overlay.is-active .donation-modal {
  transform: translateY(0) scale(1);
}

.donation-modal__close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--donation-text-grey);
  background: #f7fafc;
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.donation-modal__close:hover,
.donation-modal__close:focus-visible {
  color: var(--donation-text-dark);
  background: #edf2f7;
  transform: rotate(90deg);
}

.donation-modal__header {
  margin-bottom: 1.85rem;
  padding-right: 2rem;
  text-align: center;
}

.donation-modal__header h2 {
  margin: 0 0 0.5rem;
  color: var(--donation-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 4vw, 1.9rem);
  line-height: 1.12;
}

.donation-modal__header p {
  margin: 0;
  color: var(--donation-text-grey);
  font-size: 0.95rem;
  line-height: 1.45;
}

.donation-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.donation-amount-btn {
  padding: 0.78rem 0.35rem;
  color: var(--donation-text-dark);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.donation-amount-btn:hover,
.donation-amount-btn:focus-visible {
  border-color: var(--donation-green-deep);
}

.donation-amount-btn.is-active {
  color: var(--donation-green-deep);
  border-color: var(--donation-green-deep);
  background: var(--donation-green-soft);
}

.donation-custom-amount {
  position: relative;
  margin-bottom: 1.55rem;
}

.donation-custom-amount span {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  color: var(--donation-text-grey);
  font-weight: 800;
  transform: translateY(-50%);
}

.donation-custom-amount input,
.donation-field input {
  width: 100%;
  color: var(--donation-text-dark);
  outline: none;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.donation-custom-amount input {
  padding: 0.95rem 1.2rem 0.95rem 2.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.donation-field {
  margin-bottom: 0.95rem;
}

.donation-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--donation-text-grey);
  font-size: 0.85rem;
  font-weight: 800;
}

.donation-field input {
  padding: 0.95rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f7fafc;
}

.donation-custom-amount input:focus,
.donation-field input:focus {
  border-color: var(--donation-green-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.donation-card-row {
  display: flex;
  gap: 0.95rem;
}

.donation-card-row .donation-field {
  flex: 1;
}

.donation-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.6rem;
  padding: 1.05rem 1.25rem;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--donation-orange);
  box-shadow: 0 8px 20px rgba(242, 122, 26, 0.3);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.donation-submit:hover,
.donation-submit:focus-visible {
  background: var(--donation-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(242, 122, 26, 0.4);
}

.donation-modal__footer {
  margin-top: 1.55rem;
  text-align: center;
}

.donation-secure-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  color: var(--donation-text-grey);
  font-size: 0.8rem;
}

.donation-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.donation-social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--donation-green-deep);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.donation-social:hover,
.donation-social:focus-visible {
  color: #fff;
  background: var(--donation-green-deep);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 15px rgba(30, 86, 49, 0.2);
}

.contact-social-section {
  order: 5;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.contact-social-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(253,251,247,0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(16,24,23,0.96), rgba(20,32,29,0.96)),
    var(--color-primary-dark);
  box-shadow: 0 26px 70px rgba(18,37,58,0.16);
}

.contact-social-section__eyebrow {
  margin-bottom: 0.65rem;
  color: var(--color-secondary);
}

.contact-social-section h2 {
  max-width: 760px;
  margin: 0;
  color: #fdfbf7;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
}

.contact-social-section__links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.contact-social-section__links .header__social-link {
  width: 44px;
  height: 44px;
  background: var(--color-green);
  border-color: var(--color-green);
}

.contact-social-section__links .header__social-link:hover,
.contact-social-section__links .header__social-link:focus-visible {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

@media (max-width: 980px) {
  .contact-hero__grid,
  .contact-modern__layout,
  .contact-map-section__grid {
    grid-template-columns: 1fr;
  }

  .contact-replacement-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-hero__panel {
    max-width: 520px;
  }

  .contact-social-section__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sleek-cta-container {
    grid-template-columns: 1fr;
  }

  .cta-content,
  .cta-actions {
    grid-column: 1 / -1;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    justify-content: stretch;
  }

  .sleek-newsletter {
    justify-self: stretch;
    width: 100%;
  }

  .link-member {
    justify-self: center;
  }

  .cta-donation-zone {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .contact-page main {
    background: linear-gradient(180deg, #f5f8f7 0%, #eef3f1 100%);
  }

  .contact-page main > .contact-hero {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .contact-hero__actions,
  .contact-social-section__links {
    width: 100%;
  }

  .contact-hero__actions .btn {
    width: 100%;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-replacement-section {
    padding-top: 3rem;
  }

  .contact-replacement-wrapper,
  .contact-replacement-map__inner {
    border-radius: 24px;
  }

  .contact-replacement-info {
    padding: 2.5rem 1.85rem;
    text-align: center;
  }

  .contact-replacement-info__list {
    align-items: center;
  }

  .contact-replacement-info__item {
    width: 100%;
    max-width: 320px;
    text-align: left;
  }

  .contact-replacement-socials {
    justify-content: center;
  }

  .contact-replacement-form,
  .contact-replacement-map__inner {
    padding: 2.5rem 1.85rem;
  }

  .contact-replacement-form__row {
    flex-direction: column;
    gap: 0;
  }

  .contact-replacement-map__container {
    height: 300px;
  }

  .sleek-cta-container {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: 100%;
    padding: 1.35rem;
    gap: 1.05rem;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(18, 37, 58, 0.08);
  }

  .sleek-cta-container::before,
  .sleek-cta-container::after {
    display: none;
  }

  .cta-content {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
    gap: 0.8rem;
  }

  .cta-icon-bubble {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .cta-text h2 {
    max-width: 19rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .cta-text p {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .cta-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    gap: 0.78rem;
  }

  .sleek-newsletter {
    justify-self: stretch;
    width: 100%;
    padding: 5px 5px 5px 1rem;
  }

  .sleek-newsletter input {
    width: 100%;
    padding: 0.65rem 0;
    text-align: left;
  }

  .sleek-newsletter button {
    width: 44px;
    height: 44px;
    margin-left: 0.45rem;
  }

  .cta-donation-zone,
  .link-member {
    justify-self: stretch;
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .cta-donation-zone {
    min-width: 0;
    padding: 0;
    border-radius: 0;
  }

  .btn-don-sleek,
  .link-member {
    width: 100%;
    justify-content: center;
    padding: 0.82rem;
  }

  .btn-don-sleek {
    min-width: 0;
    min-height: 54px;
    font-size: 1rem;
  }

  .donation-modal {
    border-radius: 24px;
    padding: 1.85rem 1.25rem;
  }

  .donation-modal__header {
    padding-right: 1.75rem;
  }

  .donation-amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-card-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-shell,
  .contact-map-card,
  .contact-social-section__inner {
    border-radius: 24px;
  }

  .contact-social-section__links .header__social-link {
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   Compact CTA correction
   Minimal height, site colors
   ============================================================ */

.home-cta {
  padding: clamp(0.75rem, 2.5vw, 1.75rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.home-cta .newsletter {
  margin: 0;
}

.newsletter {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  margin: clamp(2.75rem, 5vw, 4rem) 0;
  padding: clamp(1.15rem, 2.4vw, 1.7rem) clamp(1.1rem, 3vw, 2rem);
  min-height: auto;
  border: 1px solid rgba(53, 80, 135, 0.12);
  border-radius: 22px;
  color: var(--color-primary-dark);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,245,242,0.84)),
    linear-gradient(135deg, rgba(42,135,88,0.12), rgba(53,80,135,0.08));
  box-shadow: 0 18px 46px rgba(18, 37, 58, 0.08);
  text-align: left;
}

.newsletter::before,
.newsletter::after {
  display: none;
}

.newsletter__title {
  max-width: 760px;
  margin-bottom: 0.35rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
}

.newsletter__desc {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(22, 32, 51, 0.66);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 500;
  line-height: 1.45;
}

.newsletter__actions {
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.newsletter > .btn {
  justify-self: end;
}

.newsletter__form {
  padding: 0.25rem;
  border-color: rgba(53,80,135,0.12);
  background: rgba(255,255,255,0.74);
  box-shadow: none;
}

.newsletter__input {
  height: 44px;
  color: var(--color-primary-dark);
}

.newsletter__input::placeholder {
  color: rgba(22, 32, 51, 0.48);
}

.newsletter .btn {
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-color: rgba(53, 80, 135, 0.16);
  background: #fdfbf7;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  box-shadow: none;
}

.newsletter .btn:hover,
.newsletter .btn:focus-visible {
  background: #fff;
  color: var(--color-green);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 37, 58, 0.1);
}

.newsletter .btn--don {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: #fff;
}

.newsletter .btn--don:hover,
.newsletter .btn--don:focus-visible {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
}

.newsletter .btn--outline-white {
  background: transparent;
  border-color: rgba(53, 80, 135, 0.2);
  color: var(--color-primary);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.newsletter .btn--outline-white:hover,
.newsletter .btn--outline-white:focus-visible {
  background: #fdfbf7;
  border-color: rgba(53, 80, 135, 0.22);
  color: var(--color-primary-dark);
}

@media (max-width: 980px) {
  .newsletter {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .newsletter__title,
  .newsletter__desc {
    margin-left: 0;
    margin-right: 0;
  }

  .newsletter__actions,
  .newsletter > .btn {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .newsletter {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .newsletter__actions {
    flex-direction: row;
  }

  .newsletter .btn,
  .newsletter > .btn {
    width: auto;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
  }

  .newsletter__form .btn,
  .newsletter__input {
    width: 100%;
  }
}

/* ============================================================
   Inner page minimalist hero and section rhythm
   Compact, premium pages with smaller titles
   ============================================================ */

body:not(.home-page) main > .breadcrumb,
body:not(.home-page) main > .container:has(> .breadcrumb) {
  margin-top: var(--header-height);
  background: rgba(247, 247, 247, 0.82);
  border-bottom: 1px solid rgba(18, 37, 58, 0.06);
  box-shadow: none;
}

body:not(.home-page) main > .breadcrumb {
  padding: 0;
}

body:not(.home-page) main > .breadcrumb > .container,
body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb {
  max-width: 920px;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

body:not(.home-page) .breadcrumb {
  font-size: 0.82rem;
  color: rgba(53, 80, 135, 0.68);
}

body:not(.home-page) main > .page-hero,
body:not(.home-page) .page-hero {
  min-height: clamp(250px, 30vh, 340px);
  align-items: center;
  padding: clamp(2.15rem, 4vw, 3.4rem) 0 clamp(2.5rem, 4.4vw, 3.8rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,246,0.92)) !important;
  border-bottom: 1px solid rgba(18, 37, 58, 0.07);
}

body:not(.home-page) .page-hero::before {
  background-image: linear-gradient(90deg, rgba(42, 135, 88, 0.08), transparent 42%);
  background-size: auto;
  opacity: 1;
}

body:not(.home-page) .page-hero::after,
body:not(.home-page) .page-hero .container::after {
  display: none;
}

body:not(.home-page) .page-hero .container {
  max-width: 920px;
}

body:not(.home-page) .page-hero .container::before {
  width: 42px;
  height: 4px;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: var(--color-green);
}

body:not(.home-page) .page-hero__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(42, 135, 88, 0.1);
  box-shadow: none;
  font-size: 1.45rem;
}

body:not(.home-page) .page-hero__title {
  max-width: 720px;
  margin-bottom: 0.72rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

body:not(.home-page) .page-hero__subtitle {
  max-width: 610px;
  font-size: clamp(0.98rem, 1.18vw, 1.14rem);
  line-height: 1.55;
}

body:not(.home-page) .section {
  padding: clamp(3rem, 5vw, 4.8rem) 0;
}

body:not(.home-page) .section__header {
  max-width: 760px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.6rem);
}

body:not(.home-page) .section__label {
  margin-bottom: 0.55rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

body:not(.home-page) .section__title {
  font-size: clamp(1.55rem, 2.55vw, 2.65rem);
  line-height: 1.12;
}

body:not(.home-page) .section__title::after {
  width: 42px;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
}

body:not(.home-page) .section__subtitle {
  max-width: 620px;
  font-size: clamp(0.96rem, 1vw, 1.06rem);
}

body:not(.home-page) .feature-row {
  max-width: 1040px;
  margin: clamp(1.8rem, 3vw, 2.6rem) auto;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.88fr);
}

body:not(.home-page) .feature-row--reverse {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.02fr);
}

body:not(.home-page) .feature-row__image {
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(18, 37, 58, 0.1);
}

body:not(.home-page) .feature-row__image img {
  min-height: 260px;
}

body:not(.home-page) .feature-row__text h3 {
  margin-top: 0;
  font-size: clamp(1.15rem, 1.45vw, 1.42rem);
}

@media (max-width: 920px) {
  body:not(.home-page) main > .breadcrumb > .container,
  body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb,
  body:not(.home-page) .page-hero .container {
    max-width: none;
  }

  body:not(.home-page) .feature-row,
  body:not(.home-page) .feature-row--reverse {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  body:not(.home-page) main > .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 230px;
    padding-top: 2rem;
    padding-bottom: 2.35rem;
  }

  body:not(.home-page) .page-hero__title {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  body:not(.home-page) .section {
    padding: 2.6rem 0;
  }
}

/* --- Final typography polish: soft premium reading system --- */
:root {
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-heavy: 800;
  --tracking-tight: -0.015em;
  --tracking-normal: 0;
  --tracking-soft: 0.01em;
  --tracking-label: 0.11em;
  --leading-title: 1.08;
  --leading-heading: 1.14;
  --leading-body: 1.68;
  --leading-compact: 1.38;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-normal);
}

h1,
.page-hero__title,
.s4a-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-title);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

h2,
.section__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

h3,
h4,
.pub-card__title,
.event-card__title,
.pillar-card__title,
.action-detail-card__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  line-height: 1.22;
  letter-spacing: -0.006em;
  text-wrap: balance;
}

p,
li,
.page-hero__subtitle,
.section__subtitle,
.pillar-card__desc,
.pub-card__date,
.event-card__meta,
.action-detail-card__desc {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-normal);
}

.lead,
.section__subtitle,
.page-hero__subtitle {
  font-weight: var(--font-weight-regular);
  line-height: 1.62;
  letter-spacing: 0.002em;
}

.section__label,
.pub-card__type,
.event-card__tag,
.s4a-hero__eyebrow,
.s4a-impact__subtitle,
.contact-social-section__eyebrow {
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

button,
.btn,
.s4a-hero__btn,
.site-topics__link,
.nav-secondary__link,
.pub-card__action,
.event-card .btn {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.005em;
}

strong,
b {
  font-weight: var(--font-weight-semibold);
}

.numeric-text,
.stat-card__number,
.s4a-impact-stat__number,
.hero__stat-number {
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-secondary__link {
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.002em;
}

.site-topics__link {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.004em;
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.45;
  letter-spacing: 0;
}

.typo-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.typo-soft-title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.014em;
}

.typo-smooth-body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.002em;
}

.typo-label {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* --- Targeted readability fixes: about vision and homepage impact intro --- */
body:not(.home-page) .about-vision-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 203, 62, 0.18), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(0, 126, 252, 0.16), transparent 34%),
    linear-gradient(135deg, #17243f 0%, #243864 52%, #24694c 100%) !important;
  color: #fff;
}

body:not(.home-page) .about-vision-section .section__header {
  margin-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
}

body:not(.home-page) .about-vision-section .section__label {
  color: #fecb3e !important;
}

body:not(.home-page) .about-vision-section .section__title {
  color: #fff !important;
}

body:not(.home-page) .about-vision-section .section__title::after {
  background: rgba(255, 255, 255, 0.72);
}

.about-vision-section__statement {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-section__quote {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.75;
}

.about-vision-section__text {
  max-width: 920px;
  margin: clamp(1.1rem, 2vw, 1.45rem) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.home-page .s4a-impact__head {
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1fr);
  grid-template-rows: auto;
  column-gap: clamp(4rem, 8vw, 8rem);
  row-gap: 1.35rem;
  align-items: start;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .s4a-impact__heading {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 0.8vw, 0.65rem);
}

.home-page .s4a-impact__copy {
  grid-column: 2;
  max-width: 760px;
  padding-top: 0.15rem;
}

.home-page .s4a-impact__subtitle,
.home-page .s4a-impact__title,
.home-page .s4a-impact__lead {
  grid-column: auto;
  grid-row: auto;
}

.home-page .s4a-impact__subtitle,
.home-page .s4a-impact__title {
  margin-bottom: 0;
}

.home-page .s4a-impact__copy .s4a-impact__lead {
  max-width: none;
}

.home-page .s4a-impact__copy .s4a-impact__lead + .s4a-impact__lead {
  margin-top: 0.85rem !important;
}

@media (max-width: 1024px) {
  .home-page .s4a-impact__head {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.45rem;
  }

  .home-page .s4a-impact__heading,
  .home-page .s4a-impact__copy {
    grid-column: 1 / -1;
  }

  .home-page .s4a-impact__copy {
    max-width: 780px;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .home-page .s4a-impact {
    padding-top: 3rem;
  }

  .home-page .s4a-impact__head {
    gap: 1.15rem;
    margin-bottom: 2rem;
  }

  .home-page .s4a-impact__heading {
    gap: 0.45rem;
  }

  .home-page .s4a-impact__subtitle {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .home-page .s4a-impact__title {
    font-size: clamp(2.85rem, 13vw, 4.35rem);
    line-height: 0.94;
  }

  .home-page .s4a-impact__copy {
    max-width: 36rem;
  }

  .home-page .s4a-impact__copy .s4a-impact__lead {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.55;
  }

  .home-page .s4a-impact__copy .s4a-impact__lead + .s4a-impact__lead {
    margin-top: 1rem !important;
  }
}

@media (max-width: 480px) {
  .home-page .s4a-impact__title {
    font-size: clamp(2.55rem, 15vw, 3.45rem);
  }

  .home-page .s4a-impact__copy .s4a-impact__lead {
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  body:not(.home-page) .about-vision-section {
    padding: 3rem 0;
  }

  .about-vision-section__statement {
    text-align: left;
  }
}

/* --- Homepage action ecosystem: circular selector + SDG detail cards --- */
.home-page .s4a-whatwedo {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, #f7faf9 0%, #eef4f1 100%);
}

.s4a-whatwedo__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1.08fr) minmax(340px, 0.88fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.s4a-whatwedo__intro {
  max-width: 360px;
}

.s4a-whatwedo__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(36, 56, 100, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .s4a-whatwedo__title {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: clamp(2.15rem, 3.6vw, 3.65rem);
  font-weight: 800;
  line-height: 0.98;
}

.home-page .s4a-whatwedo__desc {
  margin-bottom: 1.55rem;
  color: rgba(22, 32, 51, 0.72);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.62;
}

.s4a-action-orbit {
  position: relative;
  width: min(100%, 560px);
  min-height: 520px;
  margin: 0 auto;
  isolation: isolate;
}

.s4a-action-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(18, 37, 58, 0.16);
  color: var(--color-primary);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.s4a-action-orbit__core span {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.s4a-action-orbit__core strong {
  display: block;
  margin-top: -0.45rem;
  font-size: 1.7rem;
  line-height: 1;
}

.s4a-action-bubble {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--bubble-size, 220px);
  height: var(--bubble-size, 220px);
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 48% 52% 44% 56% / 54% 45% 55% 46%;
  background: var(--bubble-bg);
  box-shadow: 0 26px 62px rgba(18, 37, 58, 0.12);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transform: translate(var(--bubble-x), var(--bubble-y)) scale(1);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, opacity 220ms ease;
  backdrop-filter: blur(5px);
}

.s4a-action-bubble::after {
  content: '';
  position: absolute;
  inset: 16%;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.16);
  opacity: 0.32;
}

.s4a-action-bubble:hover,
.s4a-action-bubble:focus-visible,
.s4a-action-bubble.is-active {
  z-index: 5;
  transform: translate(var(--bubble-x), var(--bubble-y)) scale(1.045);
  box-shadow: 0 34px 76px rgba(18, 37, 58, 0.2);
  filter: saturate(1.08);
}

.s4a-action-bubble__icon {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
}

.s4a-action-bubble__icon svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s4a-action-bubble strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  font-weight: 850;
  line-height: 1.04;
}

.s4a-action-bubble small {
  display: block;
  max-width: 13.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.s4a-action-bubble--sante {
  --bubble-size: 226px;
  --bubble-x: 150px;
  --bubble-y: 26px;
  --bubble-bg: rgba(42, 135, 88, 0.82);
}

.s4a-action-bubble--education {
  --bubble-size: 238px;
  --bubble-x: 18px;
  --bubble-y: 168px;
  --bubble-bg: rgba(184, 25, 49, 0.84);
}

.s4a-action-bubble--agriculture {
  --bubble-size: 226px;
  --bubble-x: 286px;
  --bubble-y: 184px;
  --bubble-bg: rgba(139, 20, 58, 0.82);
}

.s4a-action-bubble--environnement {
  --bubble-size: 242px;
  --bubble-x: 160px;
  --bubble-y: 282px;
  --bubble-bg: rgba(58, 99, 124, 0.84);
}

.s4a-action-bubble--genre {
  --bubble-size: 204px;
  --bubble-x: 240px;
  --bubble-y: 96px;
  --bubble-bg: rgba(226, 29, 127, 0.78);
}

.s4a-action-panel {
  min-width: 0;
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border: 1px solid rgba(28, 51, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(18, 37, 58, 0.11);
}

.s4a-action-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.s4a-action-panel__tag {
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.s4a-action-panel__link {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 750;
}

.s4a-action-panel__title {
  margin-bottom: 0.72rem;
  color: var(--color-primary);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 850;
  line-height: 1.04;
}

.s4a-action-panel__lead {
  margin: 0;
  color: rgba(22, 32, 51, 0.72);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.58;
}

.s4a-action-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 1.35rem;
}

.s4a-action-panel__actions span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(36, 56, 100, 0.12);
  border-radius: 999px;
  background: rgba(247, 250, 249, 0.88);
  color: rgba(22, 32, 51, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.12;
}

.s4a-sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.s4a-sdg-card {
  position: relative;
  display: grid;
  min-height: 124px;
  padding: 0.7rem;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sdg-color, #355087);
  color: #fff;
  box-shadow: inset 0 -34px 70px rgba(0, 0, 0, 0.14);
}

.s4a-sdg-card__num {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  line-height: 0.9;
}

.s4a-sdg-card strong {
  max-width: 92%;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.s4a-sdg-card__icon {
  align-self: end;
  justify-self: end;
  width: 58%;
  max-width: 68px;
  opacity: 0.95;
}

.s4a-sdg-card svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s4a-sdg-card--2 { --sdg-color: #dda63a; }
.s4a-sdg-card--3 { --sdg-color: #4c9f38; }
.s4a-sdg-card--4 { --sdg-color: #c5192d; }
.s4a-sdg-card--5 { --sdg-color: #ff3a21; }
.s4a-sdg-card--8 { --sdg-color: #a21942; }
.s4a-sdg-card--10 { --sdg-color: #dd1367; }
.s4a-sdg-card--12 { --sdg-color: #bf8b2e; }
.s4a-sdg-card--13 { --sdg-color: #3f7e44; }
.s4a-sdg-card--15 { --sdg-color: #56c02b; }

@media (max-width: 1260px) {
  .s4a-whatwedo__layout {
    grid-template-columns: minmax(300px, 0.76fr) minmax(430px, 1fr);
  }

  .s4a-whatwedo__intro {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .s4a-whatwedo__layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .s4a-whatwedo__intro {
    max-width: none;
  }

  .s4a-action-orbit {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .s4a-action-orbit__core {
    display: none;
  }

  .s4a-action-bubble,
  .s4a-action-bubble:hover,
  .s4a-action-bubble:focus-visible,
  .s4a-action-bubble.is-active {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 118px;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(28, 51, 83, 0.11);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 249, 0.88)),
      var(--bubble-bg);
    box-shadow: 0 14px 34px rgba(18, 37, 58, 0.08);
    color: var(--color-primary);
    transform: none;
  }

  .s4a-action-bubble::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--bubble-bg);
  }

  .s4a-action-bubble::after {
    inset: auto -18px -24px auto;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--bubble-bg);
    opacity: 0.1;
  }

  .s4a-action-bubble__icon {
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 0.62rem;
    border-color: transparent;
    background: var(--bubble-bg);
    color: #fff;
  }

  .s4a-action-bubble__icon svg {
    width: 1.18rem;
    height: 1.18rem;
  }

  .s4a-action-bubble strong {
    margin-bottom: 0.25rem;
    font-size: 1.02rem;
    color: var(--color-primary);
  }

  .s4a-action-bubble small {
    color: rgba(22, 32, 51, 0.62);
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .s4a-action-bubble.is-active {
    border-color: rgba(36, 56, 100, 0.26);
    box-shadow: 0 18px 44px rgba(18, 37, 58, 0.14);
    outline: none;
  }

  .s4a-action-panel {
    padding: 1.15rem;
  }
}

@media (max-width: 640px) {
  .home-page .s4a-whatwedo {
    padding: 2.9rem 0 3.25rem;
  }

  .home-page .s4a-whatwedo__title {
    max-width: 10rem;
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .home-page .s4a-whatwedo__desc {
    margin-bottom: 1.1rem;
    font-size: 1rem;
    line-height: 1.52;
  }

  .home-page .s4a-whatwedo__btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .s4a-action-orbit {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .s4a-action-bubble {
    min-height: auto;
    padding: 0.85rem 0.95rem 0.85rem 1.05rem;
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    column-gap: 0.75rem;
    align-items: center;
  }

  .s4a-action-bubble__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .s4a-action-bubble strong {
    margin-bottom: 0.1rem;
  }

  .s4a-action-bubble small {
    max-width: none;
  }

  .s4a-action-panel {
    margin-top: 0.35rem;
    border-radius: 8px;
  }

  .s4a-action-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .s4a-action-panel__title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .s4a-sdg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .s4a-sdg-card {
    min-height: 108px;
    padding: 0.62rem;
  }
}

/* --- Domain pages: detailed SDG context --- */
.domain-odd-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1rem);
  max-width: 980px;
  margin: clamp(1.4rem, 2.6vw, 2rem) auto 0;
}

.domain-odd-strip--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-odd-strip__item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  padding: 0.68rem;
  border: 1px solid rgba(28, 51, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(18, 37, 58, 0.07);
}

.domain-odd-strip .s4a-sdg-card {
  min-height: 92px;
  padding: 0.55rem;
}

.domain-odd-strip .s4a-sdg-card__num {
  font-size: 1.45rem;
}

.domain-odd-strip .s4a-sdg-card strong {
  font-size: 0.55rem;
}

.domain-odd-strip .s4a-sdg-card__icon {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.domain-odd-strip__text {
  min-width: 0;
  align-self: center;
}

.domain-odd-strip__text strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--color-primary);
  font-size: 0.92rem;
  line-height: 1.14;
}

.domain-odd-strip__text span {
  display: block;
  color: rgba(22, 32, 51, 0.68);
  font-size: 0.84rem;
  line-height: 1.42;
}

.domain-odd-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 249, 0.98) 0%, rgba(238, 244, 241, 0.96) 100%);
}

.domain-odd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.domain-odd-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid rgba(28, 51, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(18, 37, 58, 0.08);
}

.domain-odd-card .s4a-sdg-card {
  min-height: 126px;
}

.domain-odd-card .s4a-sdg-card__icon {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.domain-odd-card__body {
  min-width: 0;
  padding: 0.15rem 0.15rem 0.15rem 0;
}

.domain-odd-card__body h3 {
  margin-bottom: 0.45rem;
  color: var(--color-primary);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 850;
  line-height: 1.12;
}

.domain-odd-card__body p {
  margin: 0;
  color: rgba(22, 32, 51, 0.72);
  font-size: 0.94rem;
  line-height: 1.52;
}

@media (max-width: 1100px) {
  .domain-odd-strip,
  .domain-odd-strip--3 {
    grid-template-columns: 1fr;
  }

  .domain-odd-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .domain-odd-strip__item {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 0.55rem;
  }

  .domain-odd-strip .s4a-sdg-card {
    min-height: 86px;
  }

  .domain-odd-card {
    grid-template-columns: 1fr;
  }

  .domain-odd-card .s4a-sdg-card {
    min-height: 112px;
  }
}

/* Domain pages: vertical SDG markers inspired by the official ODD cards */
.domain-odd-strip__item {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.78rem;
}

.domain-odd-card {
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
}

.domain-odd-strip .s4a-sdg-card,
.domain-odd-card .s4a-sdg-card {
  width: 100px;
  min-height: 142px;
  aspect-ratio: 100 / 142;
  padding: 0.74rem 0.66rem 0.62rem;
  border-radius: 5px;
  background: var(--sdg-color, #355087);
  box-shadow:
    inset 0 -30px 58px rgba(0, 0, 0, 0.13),
    0 12px 24px rgba(18, 37, 58, 0.12);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.domain-odd-strip .s4a-sdg-card__num,
.domain-odd-card .s4a-sdg-card__num {
  font-size: 2.1rem;
  line-height: 0.84;
  letter-spacing: 0;
}

.domain-odd-strip .s4a-sdg-card strong,
.domain-odd-card .s4a-sdg-card strong {
  max-width: 94%;
  margin-top: 0.42rem;
  font-size: 0.55rem;
  line-height: 1;
  letter-spacing: 0.012em;
}

.domain-odd-strip .s4a-sdg-card__icon,
.domain-odd-card .s4a-sdg-card__icon {
  width: 43px;
  max-width: 43px;
  margin-top: auto;
  margin-left: auto;
  color: #fff;
  opacity: 0.96;
  line-height: 0;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.domain-odd-strip .s4a-sdg-card__icon svg,
.domain-odd-card .s4a-sdg-card__icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 620px) {
  .domain-odd-strip__item,
  .domain-odd-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.82rem;
    padding: 0.65rem;
  }

  .domain-odd-strip .s4a-sdg-card,
  .domain-odd-card .s4a-sdg-card {
    width: 86px;
    min-height: 122px;
    padding: 0.64rem 0.55rem 0.54rem;
  }

  .domain-odd-strip .s4a-sdg-card__num,
  .domain-odd-card .s4a-sdg-card__num {
    font-size: 1.76rem;
  }

  .domain-odd-strip .s4a-sdg-card strong,
  .domain-odd-card .s4a-sdg-card strong {
    font-size: 0.49rem;
  }

  .domain-odd-strip .s4a-sdg-card__icon,
  .domain-odd-card .s4a-sdg-card__icon {
    width: 36px;
    max-width: 36px;
  }
}

/* Final inner-page header polish: minimal breadcrumb + contained title bands */
body:not(.home-page) .header {
  border-bottom-color: transparent;
  box-shadow: none;
}

body:not(.home-page) .header--scrolled {
  box-shadow: none;
}

body:not(.home-page) main > .breadcrumb,
body:not(.home-page) main > .container:has(> .breadcrumb) {
  margin-top: var(--header-height) !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

body:not(.home-page) main > .breadcrumb {
  padding: 0 !important;
}

body:not(.home-page) main > .breadcrumb > .container,
body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb {
  width: 100%;
  max-width: var(--max-width) !important;
  margin-inline: auto;
  padding: 0.42rem var(--space-xl) 0.8rem !important;
}

body:not(.home-page) .breadcrumb,
body:not(.home-page) .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.86rem !important;
  line-height: 1.35;
  color: rgba(0, 94, 137, 0.74) !important;
}

body:not(.home-page) .breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

body:not(.home-page) .breadcrumb__list li + li::before {
  content: ">";
  color: rgba(0, 94, 137, 0.5);
  font-weight: 600;
}

body:not(.home-page) .breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: #006491 !important;
  font-weight: 500;
  transition: color 180ms ease;
}

body:not(.home-page) .breadcrumb a:hover,
body:not(.home-page) .breadcrumb a:focus-visible {
  background: transparent;
  color: var(--color-green) !important;
  transform: none;
}

body:not(.home-page) .breadcrumb__sep {
  color: rgba(0, 94, 137, 0.5) !important;
  font-weight: 600;
}

body:not(.home-page) .breadcrumb span:not(.breadcrumb__sep),
body:not(.home-page) .breadcrumb__list li[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(14, 39, 72, 0.76);
  font-weight: 500;
}

body:not(.home-page) main > .page-hero,
body:not(.home-page) .page-hero {
  min-height: 0 !important;
  padding: clamp(0.55rem, 1.4vw, 1rem) 0 clamp(1.9rem, 3.3vw, 2.8rem) !important;
  overflow: hidden;
  isolation: isolate;
  background: #fff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body:not(.home-page) .page-hero::before {
  display: none !important;
}

body:not(.home-page) .page-hero::after,
body:not(.home-page) .page-hero .container::after {
  display: none !important;
}

body:not(.home-page) .page-hero .container {
  position: relative;
  width: min(1080px, calc(100% - clamp(2rem, 7vw, 6rem)));
  max-width: 1080px !important;
  padding: clamp(2.2rem, 4.5vw, 4rem) clamp(1.65rem, 5vw, 4.8rem);
  overflow: hidden;
  border-radius: 34px 34px 34px 10px;
  background:
    linear-gradient(128deg, rgba(4, 123, 139, 0.98) 0%, rgba(10, 135, 135, 0.98) 48%, rgba(42, 135, 88, 0.96) 100%);
  box-shadow: 0 24px 54px rgba(18, 37, 58, 0.12);
  text-align: left;
}

body:not(.home-page) .page-hero .container::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: auto -14% -42% 45%;
  height: 150%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 13px);
  opacity: 0.52;
  pointer-events: none;
}

body:not(.home-page) .page-hero__icon,
body:not(.home-page) .page-hero__title,
body:not(.home-page) .page-hero__subtitle {
  position: relative;
  z-index: 1;
}

body:not(.home-page) .page-hero__icon {
  width: 42px;
  height: 42px;
  margin: 0 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
  font-size: 1.34rem;
}

body:not(.home-page) .page-hero__title {
  max-width: 820px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(1.95rem, 4.1vw, 3.55rem) !important;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(10, 24, 45, 0.22);
}

body:not(.home-page) .page-hero__subtitle {
  max-width: 680px;
  margin-top: 0.72rem;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(0.98rem, 1.25vw, 1.16rem) !important;
  line-height: 1.5;
}

body:not(.home-page) .section {
  padding: clamp(2.45rem, 4.2vw, 4rem) 0 !important;
}

body:not(.home-page) .page-hero + .section,
body:not(.home-page) main > .section:first-of-type {
  padding-top: clamp(2rem, 3.2vw, 3rem) !important;
}

body:not(.home-page) .section__header {
  margin-bottom: clamp(1.25rem, 2.3vw, 2rem) !important;
}

@media (max-width: 920px) {
  body:not(.home-page) main > .page-hero,
  body:not(.home-page) .page-hero {
    background: #fff !important;
  }
}

@media (max-width: 640px) {
  body:not(.home-page) main > .breadcrumb > .container,
  body:not(.home-page) main > .container:has(> .breadcrumb) .breadcrumb {
    padding: 0.52rem var(--space-lg) !important;
  }

  body:not(.home-page) main > .page-hero,
  body:not(.home-page) .page-hero {
    padding: 1.45rem 0 1.65rem !important;
  }

  body:not(.home-page) .page-hero .container {
    width: calc(100% - 1.5rem);
    padding: 1.65rem 1.25rem;
    border-radius: 22px 22px 22px 8px;
  }

  body:not(.home-page) .page-hero__title {
    font-size: clamp(1.75rem, 9vw, 2.55rem) !important;
  }

  body:not(.home-page) .section {
    padding: 2.2rem 0 !important;
  }
}

/* Paint-stroke page titles */
body:not(.home-page) main > .page-hero,
body:not(.home-page) .page-hero {
  padding: clamp(0.35rem, 1vw, 0.7rem) 0 clamp(2rem, 3.8vw, 3.4rem) !important;
  background: #fff !important;
}

body:not(.home-page) .page-hero .container {
  width: 100% !important;
  max-width: var(--max-width) !important;
  padding: clamp(1.35rem, 2.8vw, 2.4rem) var(--space-xl) 0 !important;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) .page-hero .container::before,
body:not(.home-page) .page-hero .container::after {
  display: none !important;
}

body:not(.home-page) .page-hero__icon {
  display: none !important;
}

body:not(.home-page) .page-hero__title {
  --paint-a: #0c8b95;
  --paint-b: #2a8758;
  --paint-shadow: rgba(12, 139, 149, 0.22);
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: min(900px, 100%);
  margin: 0 0 0.45rem !important;
  padding: 0.16em 0.48em 0.22em;
  isolation: isolate;
  color: #fff !important;
  font-size: clamp(2.15rem, 5.5vw, 4.9rem) !important;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

body:not(.home-page) .page-hero__title::before,
body:not(.home-page) .page-hero__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

body:not(.home-page) .page-hero__title::before {
  inset: 0.05em -0.28em 0.02em -0.2em;
  background: linear-gradient(96deg, var(--paint-a) 0%, var(--paint-b) 100%);
  border-radius: 10px 4px 12px 5px;
  clip-path: polygon(
    0 26%, 5% 16%, 14% 20%, 22% 12%, 33% 18%, 44% 10%,
    57% 18%, 68% 13%, 80% 19%, 91% 12%, 100% 22%,
    96% 43%, 100% 61%, 94% 77%, 83% 73%, 73% 86%,
    61% 78%, 49% 88%, 35% 80%, 23% 90%, 11% 76%,
    2% 83%, 6% 58%
  );
  box-shadow: 0 18px 34px var(--paint-shadow);
  transform: rotate(-0.8deg);
}

body:not(.home-page) .page-hero__title::after {
  left: 9%;
  right: 18%;
  bottom: -0.04em;
  height: 0.22em;
  background: color-mix(in srgb, var(--paint-b) 74%, #ffffff 26%);
  border-radius: 999px 18px 999px 20px;
  clip-path: polygon(0 38%, 7% 22%, 21% 34%, 37% 20%, 56% 42%, 70% 24%, 100% 36%, 96% 70%, 78% 58%, 62% 76%, 39% 61%, 19% 74%, 4% 64%);
  opacity: 0.7;
  transform: rotate(1.1deg);
}

body:not(.home-page) .page-hero__subtitle {
  max-width: 720px;
  margin-top: 0.95rem;
  color: rgba(26, 36, 57, 0.76) !important;
  font-size: clamp(1rem, 1.28vw, 1.2rem) !important;
  font-weight: 500;
  line-height: 1.58;
}

.page-hero--sante .page-hero__title { --paint-a: #2f9b43; --paint-b: #4c9f38; --paint-shadow: rgba(76, 159, 56, 0.24); }
.page-hero--education .page-hero__title { --paint-a: #c5192d; --paint-b: #ef4d5e; --paint-shadow: rgba(197, 25, 45, 0.24); }
.page-hero--agriculture .page-hero__title { --paint-a: #d39b24; --paint-b: #2a8758; --paint-shadow: rgba(211, 155, 36, 0.22); }
.page-hero--environnement .page-hero__title { --paint-a: #3f7e44; --paint-b: #0c8b95; --paint-shadow: rgba(63, 126, 68, 0.24); }
.page-hero--genre .page-hero__title { --paint-a: #dd1367; --paint-b: #ff3a21; --paint-shadow: rgba(221, 19, 103, 0.24); }
.page-hero--actions .page-hero__title { --paint-a: #078a95; --paint-b: #2a8758; --paint-shadow: rgba(7, 138, 149, 0.22); }
.page-hero--ressources .page-hero__title,
.page-hero--documents .page-hero__title,
.page-hero--rapports .page-hero__title,
.page-hero--publications .page-hero__title,
.page-hero--mediatheque .page-hero__title,
.page-hero--galerie .page-hero__title { --paint-a: #355087; --paint-b: #007efc; --paint-shadow: rgba(53, 80, 135, 0.22); }
.page-hero--actualites .page-hero__title,
.page-hero--evenements .page-hero__title { --paint-a: #007efc; --paint-b: #0c8b95; --paint-shadow: rgba(0, 126, 252, 0.2); }
.page-hero--apropos .page-hero__title,
.page-hero--qui .page-hero__title,
.page-hero--histoire .page-hero__title,
.page-hero--vision .page-hero__title,
.page-hero--equipe .page-hero__title { --paint-a: #2a8758; --paint-b: #fecb3e; --paint-shadow: rgba(42, 135, 88, 0.22); }
.page-hero--legal .page-hero__title { --paint-a: #243864; --paint-b: #6f7fa6; --paint-shadow: rgba(36, 56, 100, 0.18); }

@media (max-width: 640px) {
  body:not(.home-page) .page-hero .container {
    width: 100% !important;
    padding: 1.1rem var(--space-lg) 0 !important;
  }

  body:not(.home-page) .page-hero__title {
    font-size: clamp(1.8rem, 11vw, 3.05rem) !important;
    padding-inline: 0.34em;
  }

  body:not(.home-page) .page-hero__subtitle {
    margin-top: 0.72rem;
  }
}

/* Inner pages: quiet white rhythm, no extra pre-title labels */
body:not(.home-page),
body:not(.home-page) main,
body:not(.home-page) .section,
body:not(.home-page) .section--alt,
body:not(.home-page) .section--dark,
body:not(.home-page) .domain-odd-section,
body:not(.home-page) .vision-statement-section,
body:not(.home-page) .about-vision-section,
body:not(.home-page) .history-section {
  background: #fff !important;
}

body:not(.home-page) .page-hero .container > span:not(.page-hero__icon),
body:not(.home-page) .section__label {
  display: none !important;
}

body:not(.home-page) .section--dark,
body:not(.home-page) .section--dark h1,
body:not(.home-page) .section--dark h2,
body:not(.home-page) .section--dark h3,
body:not(.home-page) .section--dark p,
body:not(.home-page) .vision-statement-section,
body:not(.home-page) .vision-statement-section p,
body:not(.home-page) .about-vision-section,
body:not(.home-page) .about-vision-section p {
  color: var(--color-text) !important;
}

body:not(.home-page) .section + .section {
  border-top: 1px solid rgba(18, 37, 58, 0.06);
}

body:not(.home-page) .site-wide-sleek-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) var(--space-xl);
  background: #fff;
  border-top: 1px solid #eef2f7;
}

body:not(.home-page) .sleek-cta-container {
  max-width: var(--max-width);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

body:not(.home-page) .sleek-cta-container::before,
body:not(.home-page) .sleek-cta-container::after {
  display: none;
}

body:not(.home-page) .cta-icon-bubble {
  display: none;
}

body:not(.home-page) .cta-text h2 {
  color: var(--color-primary-dark);
}

body:not(.home-page) .cta-text p {
  color: rgba(26, 36, 57, 0.68);
}

body:not(.home-page) .sleek-newsletter {
  background: #fff;
  border-color: #dfe8ef;
}

@media (max-width: 760px) {
  body:not(.home-page) .site-wide-sleek-cta {
    padding-inline: var(--space-lg);
  }
}

/* Final surface unification: no visible section separators */
html,
body,
body:not(.home-page),
body:not(.home-page) main,
.home-page,
.home-page main {
  background: #fff !important;
  background-color: #fff !important;
}

body:not(.home-page) .section + .section,
body:not(.home-page) .site-wide-sleek-cta,
body:not(.home-page) .footer,
.home-page .s4a-impact,
.home-page .s4a-news,
.home-page .s4a-whatwedo,
.home-page .s4a-map,
.home-page .site-wide-sleek-cta,
.home-page .footer {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.home-page .s4a-impact,
.home-page .s4a-news,
.home-page .s4a-whatwedo,
.home-page .s4a-map,
.home-page .s4a-pubs,
.home-page .s4a-projects,
.home-page .s4a-spots,
.home-page .site-wide-sleek-cta,
.home-page .sleek-cta-container {
  background: #fff !important;
  background-color: #fff !important;
}

.home-page .s4a-impact__grid,
.home-page .s4a-news__head,
.home-page .s4a-projects__head,
.home-page .s4a-pubs__head,
.home-page .s4a-impact-stat,
.home-page .s4a-impact-stat:nth-child(n+3),
.home-page .s4a-impact-stat:first-child,
.home-page .s4a-impact-stat:last-child {
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
}

.home-page .site-wide-sleek-cta {
  margin-bottom: 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* Final CTA integration: no overlap, no floating-card feeling */
.site-wide-sleek-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.1rem, 4vw, 3.2rem) var(--space-xl);
  background: #fff !important;
}

.site-wide-sleek-cta .sleek-cta-container {
  width: min(100%, var(--max-width));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.site-wide-sleek-cta .sleek-cta-container::before,
.site-wide-sleek-cta .sleek-cta-container::after,
.site-wide-sleek-cta .cta-icon-bubble {
  display: none !important;
}

.site-wide-sleek-cta .cta-content,
.site-wide-sleek-cta .cta-actions {
  grid-column: auto;
  min-width: 0;
}

.site-wide-sleek-cta .cta-content {
  display: block;
}

.site-wide-sleek-cta .cta-text {
  min-width: 0;
}

.site-wide-sleek-cta .cta-text h2 {
  max-width: 420px;
  margin-bottom: 0.35rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.site-wide-sleek-cta .cta-text p {
  max-width: 440px;
  color: rgba(26, 36, 57, 0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.site-wide-sleek-cta .cta-actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: center;
  justify-content: stretch;
  width: 100%;
}

.site-wide-sleek-cta .sleek-newsletter {
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 54px;
  background: #fff;
  border-color: #dfe8ef;
}

.site-wide-sleek-cta .sleek-newsletter input {
  width: 100%;
  min-width: 0;
}

.site-wide-sleek-cta .link-member {
  white-space: nowrap;
}

.site-wide-sleek-cta .btn-don-sleek {
  min-width: 190px;
  min-height: 54px;
  padding: 0.85rem 1.65rem;
}

@media (max-width: 1120px) {
  .site-wide-sleek-cta .sleek-cta-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-wide-sleek-cta .cta-text h2,
  .site-wide-sleek-cta .cta-text p {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-wide-sleek-cta {
    padding: 2rem var(--space-lg);
  }

  .site-wide-sleek-cta .cta-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .site-wide-sleek-cta .link-member,
  .site-wide-sleek-cta .btn-don-sleek {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-wide-sleek-cta .link-member {
    padding: 0.65rem 0;
  }
}

/* Final mobile menu: quiet, grouped, minimal */
@media (max-width: 980px) {
  .btn-toggle-nav,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    width: 40px !important;
    height: 40px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .btn-toggle-nav:hover,
  .btn-toggle-nav:focus-visible {
    background: transparent !important;
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after {
    width: 24px !important;
    height: 2px !important;
    background-color: var(--color-primary-dark) !important;
  }

  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::before,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::after {
    background-color: #fff !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
    background-color: transparent !important;
  }

  .nav-mobile-overlay {
    background: rgba(12, 20, 32, 0.42);
  }

  .nav-mobile-panel {
    width: min(330px, 84vw);
    max-width: 84vw;
    padding: 1.1rem 1.25rem 1.25rem;
    gap: 0.7rem;
    background: #fff;
    box-shadow: -18px 0 42px rgba(18, 37, 58, 0.12);
  }

  .nav-mobile-panel--open {
    box-shadow: -18px 0 42px rgba(18, 37, 58, 0.12);
  }

  .nav-mobile-panel__header {
    justify-content: flex-end;
    min-height: 34px;
    padding: 0 0 0.45rem;
    border-bottom: 0;
  }

  .nav-mobile-panel__logo {
    display: none !important;
  }

  .nav-mobile-panel__close {
    width: 34px;
    height: 34px;
    border-radius: 0;
    background: transparent;
    color: var(--color-primary-dark);
    font-size: 1.45rem;
    line-height: 1;
  }

  .nav-mobile-panel__close:hover,
  .nav-mobile-panel__close:focus-visible {
    background: transparent;
    color: var(--color-green);
  }

  .nav-mobile-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.65rem;
    row-gap: 0.1rem;
    padding-top: 0;
  }

  .nav-mobile-group,
  .nav-mobile-main-link,
  .nav-mobile-social {
    grid-column: 1 / -1;
  }

  .nav-mobile-group {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-mobile-group + .nav-mobile-group,
  .nav-mobile-main-link {
    margin-top: 0.1rem;
  }

  .nav-mobile-group__summary,
  .nav-mobile-main-link {
    min-height: 42px;
    padding: 0.48rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-primary-dark);
    font-size: 0.98rem;
    font-weight: 800;
  }

  .nav-mobile-group__summary::after {
    width: 8px;
    height: 8px;
    border-width: 1.8px;
    opacity: 0.7;
  }

  .nav-mobile-group__count {
    display: none !important;
  }

  .nav-mobile-group__links {
    gap: 0.06rem;
    padding: 0.05rem 0 0.45rem 0.65rem;
  }

  .nav-mobile__link {
    min-height: 34px;
    padding: 0.35rem 0;
    border-radius: 0;
    color: rgba(26, 36, 57, 0.84);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .nav-mobile__link:hover,
  .nav-mobile__link:focus-visible,
  .nav-mobile-main-link:hover,
  .nav-mobile-main-link:focus-visible {
    background: transparent;
    color: var(--color-green);
  }

  .nav-mobile-member,
  .nav-mobile-don {
    min-height: 38px;
    margin-top: 0.75rem;
    padding: 0.55rem 0.78rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .nav-mobile-member {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    border: 1px solid rgba(36, 56, 100, 0.22);
    background: #fff;
  }

  .nav-mobile-member:hover,
  .nav-mobile-member:focus-visible {
    color: var(--color-green);
    border-color: rgba(42, 135, 88, 0.34);
  }

  .nav-mobile-don {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    color: #fff;
    background: #f27a1a;
    box-shadow: none;
  }

  .nav-mobile-don:hover,
  .nav-mobile-don:focus-visible {
    color: #fff;
    background: #d8650e;
  }

  .nav-mobile-don svg {
    width: 13px;
    height: 13px;
  }

  .nav-mobile-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
  }

  .nav-mobile-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    border: 1px solid rgba(36, 56, 100, 0.16);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  .nav-mobile-social a:hover,
  .nav-mobile-social a:focus-visible {
    color: var(--color-green);
    border-color: rgba(42, 135, 88, 0.32);
  }

  .nav-mobile-social svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }
}

@media (max-width: 420px) {
  .nav-mobile-panel {
    width: min(300px, 82vw);
    max-width: 82vw;
    padding-inline: 1rem;
  }

  .nav-mobile-member,
  .nav-mobile-don {
    min-height: 36px;
    padding-inline: 0.58rem;
    font-size: 0.8rem;
  }
}

/* ============================================================
   Final client revisions: soft grey site surface, minimal footer,
   compact inner pages, smoke-free hero, and centered mobile logo
   ============================================================ */

:root {
  --site-body-grey: #f6f7f7;
  --site-chrome-surface: #fbfcfc;
}

html,
body,
body:not(.home-page),
body:not(.home-page) main,
.home-page,
.home-page main {
  background: var(--site-body-grey) !important;
  background-color: var(--site-body-grey) !important;
}

.header,
.header--scrolled,
body:not(.home-page) .header,
body:not(.home-page) .header--scrolled {
  background: rgba(251, 252, 252, 0.96) !important;
  border-bottom: 1px solid rgba(18, 37, 58, 0.06) !important;
}

.home-page .s4a-impact,
.home-page .s4a-news,
.home-page .s4a-whatwedo,
.home-page .s4a-map,
.home-page .s4a-pubs,
.home-page .s4a-projects,
.home-page .s4a-spots,
.home-page .site-wide-sleek-cta,
body:not(.home-page) .section,
body:not(.home-page) .section--alt,
body:not(.home-page) .section--dark,
body:not(.home-page) .domain-odd-section,
body:not(.home-page) .vision-statement-section,
body:not(.home-page) .about-vision-section,
body:not(.home-page) .history-section,
body:not(.home-page) .site-wide-sleek-cta {
  background: transparent !important;
  background-color: transparent !important;
}

.s4a-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 0.62) 0%, rgba(8, 16, 24, 0.28) 48%, rgba(8, 16, 24, 0.08) 78%),
    linear-gradient(to top, rgba(8, 16, 24, 0.58) 0%, rgba(8, 16, 24, 0.12) 52%, rgba(8, 16, 24, 0.2) 100%) !important;
}

body:not(.home-page) main > .breadcrumb,
body:not(.home-page) main > .container:has(> .breadcrumb) {
  background: transparent !important;
}

body:not(.home-page) main > .page-hero,
body:not(.home-page) .page-hero {
  display: none !important;
}

body:not(.home-page) main > .breadcrumb + .section,
body:not(.home-page) main > .container:has(> .breadcrumb) + .section {
  padding-top: clamp(1.7rem, 3vw, 2.5rem) !important;
}

.site-wide-sleek-cta .cta-actions {
  grid-template-columns: minmax(260px, 1fr) auto !important;
}

.site-wide-sleek-cta .btn-don-sleek {
  display: none !important;
}

.footer,
.home-page .footer,
body:not(.home-page) .footer {
  min-height: 0;
  padding: clamp(1.35rem, 2.4vw, 2.1rem) 0;
  background: var(--site-chrome-surface) !important;
  border-top: 1px solid rgba(18, 37, 58, 0.07) !important;
}

.footer__inner {
  gap: clamp(1.4rem, 3.5vw, 3rem);
}

.footer__legal {
  gap: clamp(0.95rem, 1.8vw, 1.6rem);
}

.footer__copyright,
.footer__link {
  color: rgba(36, 56, 100, 0.82);
  font-size: 0.92rem;
}

.footer__support-text {
  color: rgba(26, 36, 57, 0.68);
  font-size: 0.9rem;
}

.footer__partners-grid {
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
}

.footer__partner-logo {
  height: clamp(30px, 2.45vw, 42px);
  max-width: 88px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--color-primary-dark);
  border: 1px solid rgba(36, 56, 100, 0.16);
  border-radius: 50%;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--color-green);
  border-color: rgba(42, 135, 88, 0.36);
  transform: translateY(-1px);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 980px) {
  .header .container.header__inner {
    grid-template-columns: 48px minmax(120px, 1fr) 48px !important;
    position: relative;
  }

  .header__mobile-search {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .header__logo {
    grid-column: 2 !important;
    justify-content: center !important;
    justify-self: center !important;
    width: 100%;
  }

  .btn-toggle-nav {
    grid-column: 3 !important;
    justify-self: end !important;
  }

  .nav-mobile-overlay {
    background: rgba(12, 20, 32, 0.22) !important;
  }

  .nav-mobile-panel {
    top: calc(var(--header-height) + 0.45rem) !important;
    right: var(--space-md) !important;
    bottom: auto !important;
    width: min(360px, calc(100vw - (var(--space-md) * 2))) !important;
    max-width: calc(100vw - (var(--space-md) * 2)) !important;
    height: auto !important;
    max-height: min(72vh, 620px) !important;
    overflow-y: auto !important;
    padding: 0.85rem 1rem 1rem !important;
    border: 1px solid rgba(18, 37, 58, 0.08);
    border-radius: 18px;
    background: #eef1f2 !important;
    box-shadow: 0 18px 52px rgba(18, 37, 58, 0.18) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98) !important;
    transform-origin: top right;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease !important;
  }

  .nav-mobile-panel--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) !important;
  }

  .nav-mobile-group__summary,
  .nav-mobile-main-link,
  .nav-mobile-member {
    color: var(--color-primary-dark);
  }

  .nav-mobile-member,
  .nav-mobile-social a {
    background: rgba(255, 255, 255, 0.62) !important;
  }
}

@media (max-width: 760px) {
  .site-wide-sleek-cta .cta-actions {
    grid-template-columns: 1fr !important;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav-mobile-panel {
    right: var(--space-sm) !important;
    width: calc(100vw - (var(--space-sm) * 2)) !important;
    max-width: calc(100vw - (var(--space-sm) * 2)) !important;
    max-height: 70vh !important;
  }
}

/* ============================================================
   Final viewport and header tune-up
   Transparent hero header, hidden scrollbars, shorter CTA
   ============================================================ */

html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: clip !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.nav-mobile-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.nav-mobile-panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-page .header:not(.header--scrolled) {
  background:
    linear-gradient(180deg, rgba(10, 18, 26, 0.34) 0%, rgba(10, 18, 26, 0.06) 100%) !important;
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .header.header--scrolled {
  background: rgba(251, 252, 252, 0.96) !important;
}

.site-wide-sleek-cta {
  padding-top: clamp(1.65rem, 3vw, 2.45rem) !important;
  padding-bottom: clamp(1.65rem, 3vw, 2.45rem) !important;
}

.site-wide-sleek-cta .sleek-cta-container {
  width: min(100%, 1080px);
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.3rem);
}

.site-wide-sleek-cta .cta-actions {
  grid-template-columns: minmax(240px, 520px) auto !important;
  justify-content: end;
}

.site-wide-sleek-cta .sleek-newsletter {
  max-width: 520px;
}

.site-wide-sleek-cta .link-member {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(42, 135, 88, 0.24);
  border-radius: 999px;
  background: rgba(42, 135, 88, 0.1);
  color: var(--color-primary-dark);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(42, 135, 88, 0.08);
}

.site-wide-sleek-cta .link-member::after {
  content: ">";
  position: static;
  width: auto;
  height: auto;
  margin-left: 0.42rem;
  background: transparent;
  opacity: 0.7;
  transform: none;
}

.site-wide-sleek-cta .link-member:hover,
.site-wide-sleek-cta .link-member:focus-visible {
  color: #fff;
  border-color: var(--color-green);
  background: var(--color-green);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .header .container.header__inner {
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    min-height: var(--header-height) !important;
    height: var(--header-height) !important;
    gap: 0.35rem !important;
    padding-inline: var(--space-md) !important;
  }

  .header__mobile-search,
  .btn-toggle-nav {
    width: 44px !important;
    height: 44px !important;
    align-self: center !important;
    grid-row: 1 !important;
    margin: 0 !important;
  }

  .home-page .header:not(.header--scrolled) .btn-toggle-nav,
  .header .btn-toggle-nav {
    width: 44px !important;
    height: 44px !important;
  }

  .header__mobile-search {
    justify-self: start !important;
  }

  .btn-toggle-nav {
    justify-self: end !important;
  }

  .header__logo {
    grid-row: 1 !important;
    align-self: center !important;
    justify-content: center !important;
    min-width: 0;
    height: var(--header-height) !important;
  }

  .header__logo-img {
    height: min(74px, calc(var(--header-height) - 2px)) !important;
    max-width: min(150px, 42vw) !important;
  }

  .home-page .header:not(.header--scrolled) {
    background:
      linear-gradient(180deg, rgba(246, 247, 247, 0.74) 0%, rgba(246, 247, 247, 0.38) 100%) !important;
    border-bottom-color: rgba(255, 255, 255, 0.18) !important;
  }

  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    color: #fff;
  }

  .nav-mobile-panel {
    top: calc(var(--header-height) + 0.35rem) !important;
    max-height: calc(100dvh - var(--header-height) - 0.7rem) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .s4a-impact-stat__bg {
    max-width: 100vw;
    left: 0 !important;
    right: 0 !important;
  }
}

@media (max-width: 760px) {
  .site-wide-sleek-cta .sleek-cta-container {
    gap: 1rem;
  }

  .site-wide-sleek-cta .cta-actions {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-content: stretch;
  }

  .site-wide-sleek-cta .sleek-newsletter {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .nav-mobile-panel {
    max-height: calc(100dvh - var(--header-height) - 0.55rem) !important;
  }
}

/* ============================================================
   Final footer, breadcrumb and history readability tune-up
   ============================================================ */

body:not(.home-page) .history-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(35, 199, 165, 0.16), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(5, 159, 216, 0.13), transparent 28%),
    linear-gradient(135deg, #2f4b47 0%, #223a37 48%, #132724 100%) !important;
  color: #fff !important;
}

body:not(.home-page) .history-section .timeline__year,
body:not(.home-page) .history-section .timeline__text strong {
  color: #fff !important;
}

body:not(.home-page) .history-section .timeline__text {
  color: rgba(255, 255, 255, 0.76) !important;
}

body:not(.home-page) .breadcrumb__list li[aria-current="page"] a,
body:not(.home-page) .breadcrumb span:not(.breadcrumb__sep) a {
  color: inherit !important;
  font-weight: inherit;
}

.site-wide-sleek-cta .sleek-cta-container {
  width: min(100%, 980px);
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.site-wide-sleek-cta .cta-actions {
  grid-template-columns: minmax(220px, 360px) auto !important;
  gap: 0.85rem;
}

.site-wide-sleek-cta .sleek-newsletter {
  max-width: 360px;
  min-height: 44px;
  padding: 0.22rem;
}

.site-wide-sleek-cta .sleek-newsletter input {
  height: 42px;
  font-size: 0.9rem;
}

.site-wide-sleek-cta .sleek-newsletter button {
  width: 42px;
  height: 42px;
}

.site-wide-sleek-cta .link-member {
  min-height: 44px;
  padding: 0.66rem 1rem;
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .header,
  .header--scrolled,
  body:not(.home-page) .header,
  body:not(.home-page) .header--scrolled {
    background: #f2f4f4 !important;
  }

  .home-page .header:not(.header--scrolled) {
    background:
      linear-gradient(180deg, rgba(240, 243, 243, 0.86) 0%, rgba(240, 243, 243, 0.56) 100%) !important;
  }

  .site-wide-sleek-cta {
    padding-top: 1.45rem !important;
    padding-bottom: 1.45rem !important;
  }

  .site-wide-sleek-cta .sleek-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    text-align: center;
  }

  .site-wide-sleek-cta .cta-text h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .site-wide-sleek-cta .cta-text p {
    max-width: 330px;
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .site-wide-sleek-cta .cta-actions {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0.72rem;
    justify-items: center;
  }

  .site-wide-sleek-cta .sleek-newsletter,
  .site-wide-sleek-cta .link-member {
    width: min(100%, 300px);
  }

  .site-wide-sleek-cta .link-member {
    justify-content: center;
  }

  .footer__inner {
    gap: 1.15rem;
  }

  .footer__support {
    order: 1;
    width: 100%;
  }

  .footer__legal {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0.9rem 1.2rem;
    padding-top: 0;
  }

  .footer__social {
    grid-column: 1 / -1;
    grid-row: 1;
    order: 1;
  }

  .footer__link {
    grid-row: 2;
    white-space: nowrap;
  }

  .footer__copyright {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0.55rem;
  }
}

/* ============================================================
   Final mobile CTA/footer/menu refinement
   ============================================================ */

.site-wide-sleek-cta .sleek-newsletter button {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
}

.site-wide-sleek-cta .sleek-newsletter button svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 760px) {
  .home-page .header:not(.header--scrolled) {
    background: rgba(242, 244, 244, 0.34) !important;
    border-bottom-color: rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(12px) saturate(1.08);
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
  }

  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-mobile-panel__close {
    display: none !important;
  }

  .nav-mobile-panel__header {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .site-wide-sleek-cta .cta-actions {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.52rem;
    align-items: center;
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .site-wide-sleek-cta .sleek-newsletter {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 42px;
    padding: 0.18rem;
  }

  .site-wide-sleek-cta .sleek-newsletter input {
    height: 38px;
    min-height: 38px;
    padding-inline: 0.8rem 0.45rem;
    font-size: 0.84rem;
  }

  .site-wide-sleek-cta .sleek-newsletter button {
    width: 38px;
    height: 38px;
    min-height: 38px;
    flex: 0 0 38px;
  }

  .site-wide-sleek-cta .link-member {
    width: auto;
    min-width: 112px;
    min-height: 42px;
    padding: 0.55rem 0.45rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .site-wide-sleek-cta .link-member::after {
    margin-left: 0.28rem;
  }

  .footer__legal {
    grid-template-columns: auto auto minmax(104px, 1fr);
    align-items: center;
    gap: 0.65rem;
  }

  .footer__link {
    grid-row: 1;
    font-size: 0.9rem;
  }

  .footer__social {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0.4rem;
  }

  .footer__social-link {
    width: 28px;
    height: 28px;
  }

  .footer__copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.65rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .site-wide-sleek-cta .cta-actions {
    width: min(100%, 318px);
    gap: 0.42rem;
  }

  .site-wide-sleek-cta .link-member {
    min-width: 104px;
    font-size: 0.74rem;
  }

  .footer__legal {
    gap: 0.48rem;
  }

  .footer__link {
    font-size: 0.84rem;
  }

  .footer__social-link {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   Final home map mobile and footer top-link refinement
   ============================================================ */

.footer__top-link,
.footer__scroll-top.footer__top-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  flex: 0 0 30px;
  position: static;
  inset: auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(42, 135, 88, 0.22);
  border-radius: 50%;
  background: rgba(42, 135, 88, 0.08);
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  transform: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer__top-link:hover,
.footer__top-link:focus-visible {
  color: #fff;
  border-color: var(--color-green);
  background: var(--color-green);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .home-page .s4a-map__grid {
    gap: 0;
    background:
      linear-gradient(rgba(8, 114, 153, 0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(8, 114, 153, 0.055) 1px, transparent 1px),
      linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(237,245,242,0.96) 46%, rgba(226,236,243,0.98) 100%);
    background-size: 72px 72px, 72px 72px, auto;
  }

  .home-page .s4a-map__map-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible;
  }

  .home-page .s4a-map__map-wrapper::before {
    display: none;
  }

  .home-page .s4a-map__mobile-footer {
    margin-top: 0 !important;
    padding: 1.25rem var(--space-lg) 1.35rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .s4a-map__mobile-stat {
    width: min(100%, 360px);
    margin-inline: auto;
    justify-content: center;
  }

  .footer__support {
    align-items: center;
    text-align: center;
  }

  .footer__partners-grid {
    justify-content: center;
    gap: clamp(0.85rem, 3vw, 1.25rem);
    width: 100%;
  }

  .footer__partner-logo {
    height: 42px;
    max-width: 106px;
  }

  .footer__legal {
    grid-template-columns: auto auto auto auto;
    justify-content: center;
    gap: 0.54rem;
  }

  .footer__social {
    grid-column: 3 / span 2;
    justify-self: start;
    transform: translateX(-0.35rem);
  }

  .footer__top-link,
  .footer__scroll-top.footer__top-link {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex-basis: 28px;
    font-size: 0.88rem;
  }

  .footer__copyright {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .footer__legal {
    gap: 0.38rem;
  }

  .footer__social {
    transform: translateX(-0.25rem);
  }

  .footer__partner-logo {
    height: 39px;
    max-width: 98px;
  }
}

/* ============================================================
   Final footer layout: follow label, single-line legal row,
   and floating minimal top link
   ============================================================ */

.footer {
  position: relative;
}

.footer__social-label {
  color: rgba(36, 56, 100, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer__links-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.3rem);
  min-width: 0;
}

.footer__top-link,
.footer__scroll-top.footer__top-link {
  position: absolute !important;
  top: clamp(0.75rem, 1.5vw, 1.15rem) !important;
  right: clamp(1.1rem, 3vw, 2.5rem) !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  flex: none !important;
  padding: 0.15rem 0.25rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(42, 135, 88, 0.72) !important;
  font-size: 1.05rem !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.footer__top-link:hover,
.footer__top-link:focus-visible {
  color: var(--color-green) !important;
  background: transparent !important;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .footer__inner {
    align-items: center !important;
  }

  .footer__legal {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.62rem 0.38rem;
    padding-right: 0;
  }

  .footer__social {
    order: 1;
    flex: 0 0 100%;
    justify-content: center;
    gap: 0.38rem;
    transform: none !important;
  }

  .footer__social-label {
    font-size: 0.68rem;
  }

  .footer__link {
    order: 0;
  }

  .footer__copyright {
    order: 0;
    margin-top: 0 !important;
    text-align: left !important;
  }

  .footer__links-row {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: clamp(0.32rem, 1.55vw, 0.52rem);
    padding-inline: 0.4rem 1.75rem;
    white-space: nowrap;
  }

  .footer__link,
  .footer__copyright {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
    font-size: clamp(0.62rem, 2.45vw, 0.7rem) !important;
    line-height: 1.1;
    white-space: nowrap;
  }

  .footer__top-link,
  .footer__scroll-top.footer__top-link {
    top: 0.85rem !important;
    right: 1rem !important;
    font-size: 1rem !important;
    padding: 0.12rem 0.2rem !important;
  }
}

@media (max-width: 380px) {
  .footer__legal {
    gap: 0.56rem 0.28rem;
  }

  .footer__links-row {
    gap: 0.24rem;
    padding-inline: 0.2rem 1.45rem;
  }

  .footer__link,
  .footer__copyright {
    font-size: clamp(0.58rem, 2.4vw, 0.66rem) !important;
  }
}

/* ============================================================
   Client color accents: values, vision cards, and ODD blocks
   ============================================================ */

:root {
  --alafia-green: #2A8758;
  --alafia-green-strong: #0B5E3D;
  --alafia-yellow: #FECB3E;
  --alafia-yellow-strong: #C98A00;
  --alafia-red: #D53439;
  --alafia-red-strong: #9E1F27;
  --alafia-blue: #355087;
  --alafia-blue-strong: #172F66;
  --alafia-sky: #007EFC;
  --alafia-sky-strong: #005DBF;
  --sdg-1: #E5243B;
  --sdg-2: #DDA63A;
  --sdg-3: #4C9F38;
  --sdg-4: #C5192D;
  --sdg-5: #FF3A21;
  --sdg-6: #26BDE2;
  --sdg-7: #FCC30B;
  --sdg-8: #A21942;
  --sdg-9: #FD6925;
  --sdg-10: #DD1367;
  --sdg-11: #FD9D24;
  --sdg-12: #BF8B2E;
  --sdg-13: #3F7E44;
  --sdg-14: #0A97D9;
  --sdg-15: #56C02B;
  --sdg-16: #00689D;
  --sdg-17: #19486A;
}

.s4a-sdg-card--1 { --sdg-color: var(--sdg-1); }
.s4a-sdg-card--2 { --sdg-color: var(--sdg-2); }
.s4a-sdg-card--3 { --sdg-color: var(--sdg-3); }
.s4a-sdg-card--4 { --sdg-color: var(--sdg-4); }
.s4a-sdg-card--5 { --sdg-color: var(--sdg-5); }
.s4a-sdg-card--6 { --sdg-color: var(--sdg-6); }
.s4a-sdg-card--7 { --sdg-color: var(--sdg-7); }
.s4a-sdg-card--8 { --sdg-color: var(--sdg-8); }
.s4a-sdg-card--9 { --sdg-color: var(--sdg-9); }
.s4a-sdg-card--10 { --sdg-color: var(--sdg-10); }
.s4a-sdg-card--11 { --sdg-color: var(--sdg-11); }
.s4a-sdg-card--12 { --sdg-color: var(--sdg-12); }
.s4a-sdg-card--13 { --sdg-color: var(--sdg-13); }
.s4a-sdg-card--14 { --sdg-color: var(--sdg-14); }
.s4a-sdg-card--15 { --sdg-color: var(--sdg-15); }
.s4a-sdg-card--16 { --sdg-color: var(--sdg-16); }
.s4a-sdg-card--17 { --sdg-color: var(--sdg-17); }

.cards-grid > .pillar-card:not(:has(.pillar-card__image)) {
  --card-fill: var(--alafia-green);
  --card-ink: #fff;
  background: var(--card-fill);
  border: 0;
  color: var(--card-ink);
  box-shadow: 0 18px 42px rgba(18, 37, 58, 0.2);
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)):nth-child(5n + 2) {
  --card-fill: var(--alafia-red);
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)):nth-child(5n + 3) {
  --card-fill: var(--alafia-blue);
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)):nth-child(5n + 4) {
  --card-fill: var(--alafia-sky-strong);
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)):nth-child(5n) {
  --card-fill: var(--alafia-yellow);
  --card-ink: #172F66;
}

.cards-grid:has(> .pillar-card:not(:has(.pillar-card__image)):nth-child(3):last-child) > .pillar-card:not(:has(.pillar-card__image)) {
  --card-fill: var(--alafia-blue);
  --card-ink: #fff;
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)) .pillar-card__icon {
  background: transparent;
  color: var(--card-ink);
  box-shadow: none;
}

.cards-grid > .pillar-card:not(:has(.pillar-card__image)) .pillar-card__title,
.cards-grid > .pillar-card:not(:has(.pillar-card__image)) .pillar-card__desc {
  color: var(--card-ink);
}

.domain-odd-card,
.domain-odd-strip__item {
  --odd-fill: var(--sdg-17);
  --odd-ink: #fff;
  background: var(--odd-fill);
  border: 0;
  color: var(--odd-ink);
  box-shadow: 0 20px 46px rgba(18, 37, 58, 0.2);
}

.domain-odd-card:nth-child(5n + 1),
.domain-odd-strip__item:nth-child(5n + 1) {
  --odd-fill: var(--alafia-green);
}

.domain-odd-card:nth-child(5n + 2),
.domain-odd-strip__item:nth-child(5n + 2) {
  --odd-fill: var(--alafia-red);
}

.domain-odd-card:nth-child(5n + 3),
.domain-odd-strip__item:nth-child(5n + 3) {
  --odd-fill: var(--alafia-blue);
}

.domain-odd-card:nth-child(5n + 4),
.domain-odd-strip__item:nth-child(5n + 4) {
  --odd-fill: var(--alafia-sky-strong);
}

.domain-odd-card:nth-child(5n),
.domain-odd-strip__item:nth-child(5n) {
  --odd-fill: var(--alafia-yellow-strong);
}

.domain-odd-card__body h3,
.domain-odd-card__body p,
.domain-odd-strip__body h3,
.domain-odd-strip__body p {
  color: var(--odd-ink);
}

.domain-odd-card:has(.s4a-sdg-card--1),
.domain-odd-strip__item:has(.s4a-sdg-card--1) {
  --odd-fill: var(--sdg-1);
}

.domain-odd-card:has(.s4a-sdg-card--2),
.domain-odd-strip__item:has(.s4a-sdg-card--2) {
  --odd-fill: var(--sdg-2);
}

.domain-odd-card:has(.s4a-sdg-card--3),
.domain-odd-strip__item:has(.s4a-sdg-card--3) {
  --odd-fill: var(--sdg-3);
}

.domain-odd-card:has(.s4a-sdg-card--4),
.domain-odd-strip__item:has(.s4a-sdg-card--4) {
  --odd-fill: var(--sdg-4);
}

.domain-odd-card:has(.s4a-sdg-card--5),
.domain-odd-strip__item:has(.s4a-sdg-card--5) {
  --odd-fill: var(--sdg-5);
}

.domain-odd-card:has(.s4a-sdg-card--6),
.domain-odd-strip__item:has(.s4a-sdg-card--6) {
  --odd-fill: var(--sdg-6);
}

.domain-odd-card:has(.s4a-sdg-card--7),
.domain-odd-strip__item:has(.s4a-sdg-card--7) {
  --odd-fill: var(--sdg-7);
  --odd-ink: #172F66;
}

.domain-odd-card:has(.s4a-sdg-card--8),
.domain-odd-strip__item:has(.s4a-sdg-card--8) {
  --odd-fill: var(--sdg-8);
}

.domain-odd-card:has(.s4a-sdg-card--9),
.domain-odd-strip__item:has(.s4a-sdg-card--9) {
  --odd-fill: var(--sdg-9);
}

.domain-odd-card:has(.s4a-sdg-card--10),
.domain-odd-strip__item:has(.s4a-sdg-card--10) {
  --odd-fill: var(--sdg-10);
}

.domain-odd-card:has(.s4a-sdg-card--11),
.domain-odd-strip__item:has(.s4a-sdg-card--11) {
  --odd-fill: var(--sdg-11);
}

.domain-odd-card:has(.s4a-sdg-card--12),
.domain-odd-strip__item:has(.s4a-sdg-card--12) {
  --odd-fill: var(--sdg-12);
}

.domain-odd-card:has(.s4a-sdg-card--13),
.domain-odd-strip__item:has(.s4a-sdg-card--13) {
  --odd-fill: var(--sdg-13);
}

.domain-odd-card:has(.s4a-sdg-card--14),
.domain-odd-strip__item:has(.s4a-sdg-card--14) {
  --odd-fill: var(--sdg-14);
}

.domain-odd-card:has(.s4a-sdg-card--15),
.domain-odd-strip__item:has(.s4a-sdg-card--15) {
  --odd-fill: var(--sdg-15);
}

.domain-odd-card:has(.s4a-sdg-card--16),
.domain-odd-strip__item:has(.s4a-sdg-card--16) {
  --odd-fill: var(--sdg-16);
}

.domain-odd-card:has(.s4a-sdg-card--17),
.domain-odd-strip__item:has(.s4a-sdg-card--17) {
  --odd-fill: var(--sdg-17);
}

.domain-odd-card .s4a-sdg-card,
.domain-odd-strip__item .s4a-sdg-card {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

#documents-utiles .cards-grid > div[style] {
  --doc-card-fill: var(--alafia-green);
  background: var(--doc-card-fill) !important;
  color: #fff;
  border: 0;
  box-shadow: 0 22px 52px rgba(5, 18, 34, 0.24) !important;
}

#documents-utiles .cards-grid > div[style]:nth-child(2n) {
  --doc-card-fill: var(--alafia-red);
}

#documents-utiles .cards-grid > div[style]:nth-child(3n) {
  --doc-card-fill: var(--alafia-blue);
}

#documents-utiles .cards-grid > div[style]:nth-child(4n) {
  --doc-card-fill: var(--alafia-sky-strong);
}

#documents-utiles .cards-grid > div[style]:nth-child(5n) {
  --doc-card-fill: var(--alafia-yellow);
  color: #172F66;
}

#documents-utiles .cards-grid > div[style] > div:first-child {
  background: rgba(255, 255, 255, 0.14) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

#documents-utiles .cards-grid > div[style] h3,
#documents-utiles .cards-grid > div[style] p,
#documents-utiles .cards-grid > div[style] span {
  color: #fff !important;
}

#documents-utiles .cards-grid > div[style]:nth-child(5n) h3,
#documents-utiles .cards-grid > div[style]:nth-child(5n) p,
#documents-utiles .cards-grid > div[style]:nth-child(5n) span {
  color: #172F66 !important;
}

#documents-utiles .cards-grid > div[style] .btn {
  background: #fff;
  border-color: #fff;
  color: var(--doc-card-fill);
}

#documents-utiles .cards-grid > div[style]:nth-child(5n) .btn {
  color: #172F66;
}

#documents-utiles .cards-grid > div[style] .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.home-page .s4a-impact__grid {
  background: transparent !important;
  border-color: rgba(24, 50, 71, 0.1);
}

.home-page .s4a-impact-stat {
  background: transparent !important;
  border-color: rgba(24, 50, 71, 0.1);
}

/* ============================================================
   Mobile image framing: preserve faces and reduce edge pressure
   ============================================================ */

@media (max-width: 760px) {
  .cards-grid,
  .cards-grid--3,
  .cards-grid--4 {
    padding-inline: clamp(0.55rem, 3.5vw, 1rem);
  }

  .pub-card {
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }

  .pub-card__image {
    height: clamp(158px, 30vw, 190px);
    background-position: center 18% !important;
  }

  .pillar-card {
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }

  .pillar-card__image {
    height: clamp(158px, 30vw, 190px);
    background-position: center 16% !important;
  }

  .pillar-card__image--portrait {
    background-position: center 10% !important;
    background-size: auto 118%;
  }

  .feature-row__image {
    max-width: min(100%, 540px);
    margin-inline: auto;
  }

  .feature-row__image img {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 20%;
  }

  .gallery-grid {
    padding-inline: clamp(0.55rem, 3.5vw, 1rem);
  }

  .gallery-item {
    max-width: 540px;
    margin-inline: auto;
  }

  .gallery-item img {
    object-position: center 20%;
  }

  .s4a-news-card,
  .s4a-impact-stat {
    max-width: 540px;
    margin-inline: auto;
  }

  .s4a-news-card__img,
  .s4a-impact-stat__bg {
    background-position: center 18% !important;
  }
}

@media (max-width: 420px) {
  .cards-grid,
  .cards-grid--3,
  .cards-grid--4,
  .gallery-grid {
    padding-inline: 0.35rem;
  }

  .pub-card__image,
  .pillar-card__image {
    height: 156px;
  }
}

/* ============================================================
   Final ODD, CTA and breadcrumb alignment pass
   ============================================================ */

body:not(.home-page) .breadcrumb,
body:not(.home-page) .breadcrumb__list,
body:not(.home-page) .breadcrumb a,
body:not(.home-page) .breadcrumb__sep,
body:not(.home-page) .breadcrumb span:not(.breadcrumb__sep),
body:not(.home-page) .breadcrumb__list li[aria-current="page"] {
  color: var(--color-primary) !important;
}

body:not(.home-page) .breadcrumb__list li + li::before {
  color: rgba(53, 80, 135, 0.48) !important;
}

body:not(.home-page) .breadcrumb a:hover,
body:not(.home-page) .breadcrumb a:focus-visible {
  color: var(--color-primary-dark) !important;
}

body:not(.home-page) .domain-odd-section {
  background: var(--color-bg) !important;
}

.domain-odd-card,
.domain-odd-strip__item {
  --odd-ink: var(--color-primary-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 249, 0.82)),
    var(--color-bg) !important;
  border: 1px solid rgba(53, 80, 135, 0.1) !important;
  color: var(--odd-ink) !important;
  box-shadow: 0 18px 44px rgba(18, 37, 58, 0.08) !important;
}

.domain-odd-card__body h3,
.domain-odd-card__body p,
.domain-odd-strip__body h3,
.domain-odd-strip__body p {
  color: var(--color-primary-dark) !important;
}

.domain-odd-card .s4a-sdg-card,
.domain-odd-strip__item .s4a-sdg-card {
  background: var(--sdg-color, var(--color-primary)) !important;
  color: #fff !important;
  box-shadow: inset 0 -34px 70px rgba(0, 0, 0, 0.14), 0 12px 26px rgba(18, 37, 58, 0.12) !important;
}

.domain-odd-card .s4a-sdg-card__icon,
.domain-odd-strip__item .s4a-sdg-card__icon {
  display: block;
}

.site-wide-sleek-cta .cta-actions {
  grid-template-columns: minmax(220px, 300px) auto !important;
  align-items: center;
}

.site-wide-sleek-cta .sleek-newsletter {
  max-width: 300px;
  min-height: 48px;
  padding: 0.24rem;
}

.site-wide-sleek-cta .sleek-newsletter input {
  height: 42px;
  min-height: 42px;
  padding-inline: 0.8rem 0.45rem;
  line-height: 42px;
}

.site-wide-sleek-cta .sleek-newsletter input::placeholder {
  text-align: left;
  text-indent: 0;
}

.site-wide-sleek-cta .sleek-newsletter button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  flex: 0 0 42px;
}

.site-wide-sleek-cta .link-member {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .site-wide-sleek-cta .sleek-newsletter,
  .site-wide-sleek-cta .link-member {
    min-height: 44px;
  }

  .site-wide-sleek-cta .sleek-newsletter input,
  .site-wide-sleek-cta .sleek-newsletter button {
    height: 38px;
    min-height: 38px;
  }
}

/* ============================================================
   Documents utiles download section
   ============================================================ */

.docs-download {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(58, 112, 220, 0.84), rgba(58, 112, 220, 0.84)),
    linear-gradient(115deg, rgba(30, 76, 178, 0.94), rgba(75, 133, 231, 0.88)),
    url("../images/client-photos/education/conference-entrepreneuriat-groupe.webp") center / cover no-repeat;
  color: #fff;
}

.docs-download::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 47, 102, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(23, 47, 102, 0.18));
}

.docs-download__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.1rem, 4vw, 3.2rem);
}

.docs-download__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-download__title {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.docs-download__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: #152f6f;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(18, 37, 58, 0.18);
}

.docs-download__all:hover,
.docs-download__all:focus-visible {
  color: #152f6f;
  transform: translateY(-2px);
}

.docs-download__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.docs-download-card {
  display: flex;
  min-height: 320px;
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 46px rgba(14, 39, 72, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.docs-download-card:hover,
.docs-download-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
}

.docs-download-card h3 {
  max-width: 270px;
  margin: 0.85rem auto 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.22;
}

.docs-download-card p {
  max-width: 250px;
  margin: 0.6rem auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.48;
}

.docs-download-card__meta {
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.docs-download-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 0.85rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.docs-download-card__link:hover,
.docs-download-card__link:focus-visible {
  background: #fff;
  color: #152f6f;
}

.file-download-icon {
  position: relative;
  width: 104px;
  height: 124px;
  flex: 0 0 auto;
  margin-top: -0.35rem;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #5b83df;
  box-shadow: 0 18px 28px rgba(18, 37, 58, 0.16);
}

.file-download-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 36px;
  height: 36px;
  border-left: 7px solid rgba(255, 255, 255, 0.94);
  border-bottom: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 0 10px 0 10px;
  background: rgba(229, 237, 255, 0.96);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.file-download-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) 50% 41% / 8px 18px no-repeat,
    linear-gradient(135deg, transparent 50%, #fff 0) 46% 66% / 13px 13px no-repeat,
    linear-gradient(225deg, transparent 50%, #fff 0) 54% 66% / 13px 13px no-repeat,
    #c5192d;
  transform: translateX(-50%);
}

.file-download-icon span {
  position: absolute;
  left: 50%;
  top: 38px;
  min-width: 88px;
  padding: 0.24rem 0.42rem 0.28rem;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 11px;
  background: #6d94ea;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.docs-download-card--docx .file-download-icon span {
  background: #5f8be8;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .docs-download__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .docs-download {
    padding: 3.8rem 0;
  }

  .docs-download__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .docs-download__grid {
    grid-template-columns: 1fr;
  }

  .docs-download-card {
    min-height: 286px;
    max-width: 420px;
    margin-inline: auto;
    border-radius: 22px;
  }
}

/* ============================================================
   Media hub, exact PDF icon and sector gallery
   ============================================================ */

.docs-download-card .pdf-download-icon {
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  margin-top: -0.55rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(18, 37, 58, 0.14));
}

.media-hub {
  padding: clamp(4.8rem, 7vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(253, 251, 247, 0.96), rgba(240, 243, 248, 0.96)),
    #fdfbf7;
}

.media-hub__intro {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.media-hub__label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-hub__intro h2 {
  max-width: 780px;
  color: var(--color-primary);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.media-hub__intro p {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(36, 56, 100, 0.72);
  font-size: 1.06rem;
}

.media-hub__featured {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.72fr) minmax(240px, 0.72fr);
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.media-feature-card {
  min-height: 280px;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(53, 80, 135, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 37, 58, 0.08);
}

.media-feature-card--large {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: 1.35rem;
  align-items: end;
}

.media-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 12px;
  object-fit: cover;
}

.media-feature-card span:not(.media-feature-card__icon) {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-feature-card h3 {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.media-feature-card p {
  margin-top: 0.72rem;
  color: rgba(36, 56, 100, 0.72);
}

.media-feature-card a,
.media-resource-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 900;
}

.media-feature-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

.media-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.media-resource-card {
  padding: 1.25rem;
  border: 1px solid rgba(53, 80, 135, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.media-resource-card > span {
  color: rgba(53, 80, 135, 0.36);
  font-weight: 900;
}

.media-resource-card h3 {
  margin-top: 0.35rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.media-resource-card p {
  margin-top: 0.5rem;
  color: rgba(36, 56, 100, 0.7);
  font-size: 0.92rem;
}

.gallery-sector-list {
  display: grid;
  gap: clamp(2.3rem, 5vw, 4rem);
}

.gallery-sector {
  padding-top: clamp(0.4rem, 1vw, 0.8rem);
}

.gallery-sector__head {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(53, 80, 135, 0.12);
}

.gallery-sector__head span {
  color: var(--color-green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-sector__head h3 {
  color: var(--color-primary);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.gallery-grid--sector {
  grid-auto-rows: 190px;
}

@media (max-width: 980px) {
  .media-hub__featured,
  .media-feature-card--large,
  .media-resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-feature-card--large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .media-hub__featured,
  .media-feature-card--large,
  .media-resource-grid,
  .gallery-sector__head {
    grid-template-columns: 1fr;
  }

  .media-feature-card img {
    min-height: 220px;
  }

  .gallery-grid--sector {
    grid-auto-rows: 210px;
  }
}

/* ============================================================
   Local Flaticon icon system
   ============================================================ */

.site-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  object-fit: contain;
  vertical-align: -0.18em;
  flex: 0 0 auto;
}

.site-icon--card {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.site-icon--hero {
  width: clamp(48px, 7vw, 72px);
  height: clamp(48px, 7vw, 72px);
}

.site-icon--cta {
  width: 34px;
  height: 34px;
}

.site-icon--label {
  width: 1.05em;
  height: 1.05em;
  margin-right: 0.45em;
}

.site-icon--title {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.45em;
  vertical-align: -0.22em;
}

.site-icon--action {
  width: 1.05em;
  height: 1.05em;
  margin-right: 0.4em;
}

.site-icon--doc {
  width: 34px;
  height: 34px;
}

.section__label:has(.site-icon),
.pub-card__type:has(.site-icon),
.pub-card__action:has(.site-icon),
.event-card__meta span:has(.site-icon),
.btn:has(.site-icon) {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.section__label:has(.site-icon) .site-icon,
.pub-card__type:has(.site-icon) .site-icon,
.pub-card__action:has(.site-icon) .site-icon,
.event-card__meta span:has(.site-icon) .site-icon,
.btn:has(.site-icon) .site-icon {
  margin-right: 0;
}

.section__title--with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pillar-card__icon,
.page-hero__icon,
.cta-icon-bubble {
  line-height: 1;
}

.pillar-card__icon img,
.page-hero__icon img,
.cta-icon-bubble img {
  display: block;
}

/* ============================================================
   Final responsive hardening: touch, overflow and stable motion
   ============================================================ */

.s4a-hero__copy {
  visibility: hidden;
}

.s4a-hero__copy--active {
  visibility: visible;
}

.s4a-impact-stat__bg {
  transform: scale(1);
}

.s4a-impact-stat:hover .s4a-impact-stat__bg,
.s4a-impact-stat--active .s4a-impact-stat__bg {
  transform: scale(1.015);
}

.header__lang-toggle,
.header__btn-search,
.header__social-link {
  min-width: 40px;
  min-height: 40px;
}

.header__btn-search,
.header__social-link {
  width: 40px;
  height: 40px;
}

.sp-slot {
  width: 44px;
  min-width: 44px;
  height: 44px;
}

.slider-nav {
  gap: clamp(0.25rem, 1.6vw, 0.8rem);
}

body:not(.home-page) .breadcrumb a,
.pub-card__action,
.contact-replacement-info__text a {
  min-height: 44px;
}

body:not(.home-page) .breadcrumb a,
.contact-replacement-info__text a {
  display: inline-flex;
  align-items: center;
}

body:not(.home-page) .breadcrumb a {
  min-width: 44px;
}

.pub-card__action {
  align-items: center;
  line-height: 1.35;
}

.site-topics__link,
.site-topics__don {
  min-height: 44px;
  align-items: center;
}

.contact-replacement-social {
  min-width: 44px;
  min-height: 44px;
}

/* ============================================================
   Home mobile media consistency and CTA readability
   ============================================================ */

@media (max-width: 760px) {
  .home-page .s4a-news__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch;
    gap: clamp(1.15rem, 4vw, 1.5rem);
  }

  .home-page .s4a-news-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .home-page .s4a-news-card__img {
    height: auto;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center 22%;
  }

  .site-wide-sleek-cta .cta-actions {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    gap: 0.75rem;
  }

  .site-wide-sleek-cta .sleek-newsletter {
    width: auto;
    max-width: none;
    min-width: 0;
    padding-left: 1rem;
  }

  .site-wide-sleek-cta .sleek-newsletter input {
    width: clamp(168px, 47vw, 190px);
    min-width: 168px;
    padding-inline: 0;
  }

  .site-wide-sleek-cta .sleek-newsletter input::placeholder {
    text-align: left;
    text-indent: 0;
  }

  .site-wide-sleek-cta .link-member {
    width: auto;
  }
}

@media (max-width: 380px) {
  .site-wide-sleek-cta .sleek-newsletter input {
    width: clamp(168px, 48vw, 180px);
    min-width: 168px;
  }
}

/* ============================================================
   Home mobile title rhythm and compact CTAs
   ============================================================ */

@media (max-width: 640px) {
  .home-page .s4a-impact__grid {
    width: min(100%, 36rem);
    margin-inline: auto;
    gap: 1.05rem;
  }

  .home-page .s4a-impact-stat {
    width: min(100%, calc(100vw - 1.6rem));
    max-width: none !important;
    min-height: clamp(230px, 60vw, 300px);
    margin-inline: auto;
    padding: clamp(1.25rem, 5vw, 1.75rem);
    border-radius: 10px;
  }

  .home-page .s4a-impact-stat__bg,
  .home-page .s4a-impact-stat__overlay {
    border-radius: inherit;
  }

  .home-page .s4a-whatwedo__title {
    max-width: min(100%, 15rem) !important;
    font-size: clamp(2.15rem, 10vw, 2.6rem) !important;
    line-height: 1.04 !important;
    text-wrap: balance;
  }

  .home-page .s4a-news__head h2,
  .home-page .s4a-impact__title,
  .home-page .s4a-map__title,
  .home-page .site-wide-sleek-cta .cta-text h2 {
    max-width: min(100%, 18rem);
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1.1;
    text-wrap: balance;
  }

  .home-page .s4a-whatwedo__btn,
  .home-page .s4a-map__mobile-cta,
  .home-page .s4a-map__panel-link {
    width: auto !important;
    max-width: min(100%, 18.5rem);
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-green), #1e6b3a);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(42, 135, 88, 0.22);
    font-size: 0.78rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    white-space: normal;
    text-align: center;
  }

  .home-page .s4a-whatwedo__btn .arrow {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
}

@media (max-width: 1180px) {
  .header__lang-toggle,
  .header__btn-search,
  .header__social-link,
  .btn-toggle-nav,
  .header__mobile-search {
    min-width: 44px;
    min-height: 44px;
  }

  .header__btn-search,
  .header__social-link {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .s4a-hero__copy {
    left: clamp(1rem, 5vw, 1.35rem);
    width: min(100% - clamp(4.5rem, 16vw, 5.75rem), 40rem);
  }

  .home-page .s4a-hero__title {
    font-size: clamp(1.95rem, 9.2vw, 3.15rem);
    line-height: 1.18;
  }

  body:not(.home-page) .breadcrumb {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body:not(.home-page) .breadcrumb a,
  .pub-card__action,
  .contact-replacement-info__text a {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .sp-slot {
    width: 44px;
  }

  .slider-nav {
    bottom: max(1.35rem, env(safe-area-inset-bottom));
    gap: 0.25rem;
  }
}

/* ============================================================
   Site-wide mobile media layout hardening
   ============================================================ */

@media (max-width: 760px) {
  body:not(.home-page) .gallery-grid,
  body:not(.home-page) .gallery-grid--sector {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-rows: auto !important;
    justify-items: stretch;
    gap: clamp(1rem, 4vw, 1.35rem);
    padding-inline: 0;
  }

  body:not(.home-page) .gallery-item,
  body:not(.home-page) .gallery-item--large,
  body:not(.home-page) .gallery-item--tall {
    width: 100% !important;
    max-width: min(100%, 34rem);
    min-width: 0;
    height: auto !important;
    min-height: 0;
    aspect-ratio: 16 / 10;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: center;
  }

  body:not(.home-page) .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
  }

  body:not(.home-page) .gallery-item figcaption {
    right: clamp(0.85rem, 4vw, 1.1rem);
    bottom: clamp(0.78rem, 3.5vw, 1rem);
    left: clamp(0.85rem, 4vw, 1.1rem);
  }

  body:not(.home-page) .gallery-item figcaption strong {
    max-width: 100%;
    font-size: clamp(1rem, 5vw, 1.22rem);
    line-height: 1.05;
  }

  body:not(.home-page) .gallery-item figcaption span {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  body:not(.home-page) .gallery-sector-list {
    gap: clamp(2.6rem, 9vw, 3.4rem);
  }

  body:not(.home-page) .gallery-sector__head {
    margin-bottom: 1.15rem;
  }

  .inline-action-photo {
    width: 100%;
    max-width: 34rem;
    margin: clamp(1.1rem, 5vw, 1.5rem) auto clamp(1.7rem, 7vw, 2.2rem);
  }

  .inline-action-photo img,
  body:not(.home-page) .feature-row__image img,
  .media-feature-card img {
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 24%;
  }

  body:not(.home-page) .feature-row__image {
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
  }

  .media-feature-card {
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
    border-radius: 10px;
  }

  .media-feature-card--large {
    gap: 1rem;
  }

  .pub-card__image,
  .pillar-card__image,
  .s4a-news-card__img {
    height: auto !important;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center 22% !important;
  }
}

@media (max-width: 420px) {
  body:not(.home-page) .gallery-item,
  body:not(.home-page) .gallery-item--large,
  body:not(.home-page) .gallery-item--tall,
  .inline-action-photo,
  body:not(.home-page) .feature-row__image,
  .media-feature-card {
    max-width: 100%;
  }

  body:not(.home-page) .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  img[src*="classe-kits-scolaires"],
  img[src*="kits-scolaires-enfants"],
  img[src*="remise-kits-scolaires"],
  img[src*="paludisme-remise-moustiquaire"] {
    object-position: center 28% !important;
  }

  img[src*="cuisine-atelier-large"],
  img[src*="cuisine-equipe-stand"],
  img[src*="plantation-groupe-terrain"],
  img[src*="wuru-baani-photo-groupe"],
  img[src*="conference-entrepreneuriat-groupe"] {
    object-position: center 42% !important;
  }
}

/* ============================================================
   Mobile paragraph readability: compact, calm long-form text
   ============================================================ */

@media (max-width: 760px) {
  body:not(.home-page) .section__header {
    margin-bottom: clamp(1.25rem, 5vw, 1.7rem) !important;
  }

  body:not(.home-page) .section__subtitle,
  body:not(.home-page) .page-hero__subtitle,
  body:not(.home-page) .lead {
    max-width: 34rem;
    margin-inline: auto;
    font-size: clamp(0.98rem, 3.9vw, 1.04rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
  }

  body:not(.home-page) .feature-row {
    gap: clamp(1.25rem, 5vw, 1.75rem) !important;
    margin-block: clamp(1.25rem, 5vw, 1.8rem) !important;
  }

  body:not(.home-page) .feature-row__text {
    max-width: 38rem;
    margin-inline: auto;
  }

  body:not(.home-page) .feature-row__text p,
  body:not(.home-page) .container--narrow > div[data-animate] > p,
  body:not(.home-page) .section p:not(.section__subtitle):not(.pub-card__date):not(.cta-text p):not(.footer__support-text) {
    font-size: clamp(0.98rem, 3.95vw, 1.05rem) !important;
    line-height: 1.58 !important;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    color: rgba(26, 36, 57, 0.76);
  }

  body:not(.home-page) .feature-row__text p + p,
  body:not(.home-page) .container--narrow > div[data-animate] > p + p,
  body:not(.home-page) .section p:not(.section__subtitle) + p {
    margin-top: clamp(0.85rem, 3.8vw, 1.1rem) !important;
  }
}

@media (max-width: 420px) {
  body:not(.home-page) .section__subtitle,
  body:not(.home-page) .page-hero__subtitle,
  body:not(.home-page) .feature-row__text p,
  body:not(.home-page) .container--narrow > div[data-animate] > p,
  body:not(.home-page) .section p:not(.section__subtitle):not(.pub-card__date):not(.cta-text p):not(.footer__support-text) {
    font-size: 1rem !important;
  }
}

/* ============================================================
   Magnetic hover for primary action buttons
   ============================================================ */

.magnetic-button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) !important;
  will-change: transform;
  backface-visibility: hidden;
}

.magnetic-button:not(.is-magnetic-active) {
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base);
}

.magnetic-button.is-magnetic-active {
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .magnetic-button {
    transform: none !important;
    will-change: auto;
  }
}

.header__social-link svg.social-icon--solid,
.nav-mobile-social svg.social-icon--solid,
.footer__social-link svg.social-icon--solid,
.contact-replacement-social svg.social-icon--solid {
  fill: currentColor !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

/* Final social icon polish */
.header__buttons .header__social {
  gap: 0.34rem;
  margin-left: -0.1rem;
  padding-right: 0.12rem;
}

.header__social-link {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  background: #34548c !important;
  border-color: #34548c !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(52, 84, 140, 0.14);
}

.header__social-link:hover,
.header__social-link:focus-visible {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(42, 135, 88, 0.2);
  transform: translateY(-1px);
}

.header__social-link svg {
  width: 14px !important;
  height: 14px !important;
}

.header__social-link[aria-label="Facebook"] svg {
  width: 12px !important;
  height: 12px !important;
}

.header__social-link[aria-label="TikTok"] svg {
  width: 13.5px !important;
  height: 13.5px !important;
}

.header__social-link[aria-label="LinkedIn"] svg {
  width: 13px !important;
  height: 13px !important;
}

.home-page .header:not(.header--scrolled) .header__social-link {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-page .header:not(.header--scrolled) .header__social-link:hover,
.home-page .header:not(.header--scrolled) .header__social-link:focus-visible {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
  color: #fff !important;
}

.footer__social {
  gap: 0.36rem;
}

.footer__social-link {
  width: 28px !important;
  height: 28px !important;
  background: rgba(255, 255, 255, 0.78);
}

.footer__social-link svg {
  width: 12.5px !important;
  height: 12.5px !important;
}

.footer__social-link[aria-label="Facebook"] svg {
  width: 11.5px !important;
  height: 11.5px !important;
}

.nav-mobile-social a {
  width: 30px !important;
  height: 30px !important;
}

.nav-mobile-social svg {
  width: 13px !important;
  height: 13px !important;
}

.nav-mobile-social a[aria-label="Facebook"] svg {
  width: 12px !important;
  height: 12px !important;
}

/* HorizonX-inspired mobile navigation polish */
@media (max-width: 920px) {
  :root {
    --header-height: 84px;
  }

  .header,
  .home-page .header:not(.header--scrolled),
  body:not(.home-page) .header {
    padding-top: max(0.45rem, env(safe-area-inset-top));
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .header .container.header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    width: calc(100% - 1.25rem) !important;
    height: 64px !important;
    min-height: 64px !important;
    margin-inline: auto !important;
    padding: 0 0.55rem !important;
    gap: 0.35rem !important;
    border: 1px solid rgba(31, 52, 88, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 249, 0.82)),
      linear-gradient(90deg, rgba(42, 135, 88, 0.08), rgba(242, 122, 26, 0.055));
    box-shadow: 0 16px 38px rgba(18, 37, 58, 0.13);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
  }

  .home-page .header:not(.header--scrolled) .container.header__inner {
    border-color: rgba(255, 255, 255, 0.36);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 249, 0.7)),
      linear-gradient(90deg, rgba(42, 135, 88, 0.1), rgba(242, 122, 26, 0.07));
  }

  .header__logo {
    height: 56px !important;
    align-items: center !important;
  }

  .header__logo-img {
    height: 54px !important;
    max-width: min(118px, 38vw) !important;
    filter: drop-shadow(0 8px 16px rgba(18, 37, 58, 0.1));
  }

  .header__mobile-search,
  .btn-toggle-nav,
  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border: 1px solid rgba(31, 52, 88, 0.1) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.74) !important;
    color: var(--color-primary-dark) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(18, 37, 58, 0.08) !important;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .header__mobile-search:hover,
  .header__mobile-search:focus-visible,
  .btn-toggle-nav:hover,
  .btn-toggle-nav:focus-visible {
    color: #fff !important;
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
    box-shadow: 0 12px 24px rgba(36, 56, 100, 0.18) !important;
    transform: translateY(-1px);
  }

  .header__mobile-search svg {
    width: 19px !important;
    height: 19px !important;
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::before,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::after {
    width: 18px !important;
    height: 2px !important;
    background-color: currentColor !important;
  }

  .btn-toggle-nav-icon::before {
    top: -5px !important;
  }

  .btn-toggle-nav-icon::after {
    top: 5px !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
    background-color: transparent !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::before {
    transform: translateY(5px) rotate(45deg) !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::after {
    transform: translateY(-5px) rotate(-45deg) !important;
  }

  .nav-mobile-overlay {
    background: rgba(10, 18, 28, 0.28) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .nav-mobile-panel {
    top: calc(max(0.45rem, env(safe-area-inset-top)) + 72px) !important;
    right: 0.75rem !important;
    left: 0.75rem !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(76vh, 650px) !important;
    padding: 0.75rem !important;
    border: 1px solid rgba(31, 52, 88, 0.1) !important;
    border-radius: 26px !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(42, 135, 88, 0.13), transparent 34%),
      radial-gradient(circle at 92% 8%, rgba(242, 122, 26, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 246, 0.92)) !important;
    box-shadow: 0 26px 70px rgba(13, 28, 46, 0.22) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
    backdrop-filter: blur(20px) saturate(1.08);
    transform: translateY(-8px) scale(0.985) !important;
    transform-origin: top center;
  }

  .nav-mobile-panel--open {
    transform: translateY(0) scale(1) !important;
  }

  .nav-mobile-panel__header {
    min-height: 42px !important;
    padding: 0 0 0.55rem !important;
  }

  .nav-mobile-panel__close {
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(31, 52, 88, 0.1) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    color: var(--color-primary-dark) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .nav-mobile-panel__close:hover,
  .nav-mobile-panel__close:focus-visible {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
  }

  .nav-mobile-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.58rem !important;
  }

  .nav-mobile-group,
  .nav-mobile-main-link {
    border: 1px solid rgba(31, 52, 88, 0.08) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.68) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    overflow: hidden;
  }

  .nav-mobile-group {
    grid-column: 1 / -1 !important;
  }

  .nav-mobile-main-link {
    grid-column: auto !important;
    min-height: 48px !important;
    padding: 0.75rem 0.85rem !important;
    align-items: center;
  }

  .nav-mobile-group__summary,
  .nav-mobile-main-link {
    color: var(--color-primary-dark) !important;
    font-size: 0.95rem !important;
    letter-spacing: 0 !important;
  }

  .nav-mobile-group__summary {
    min-height: 50px !important;
    padding: 0.76rem 0.9rem !important;
  }

  .nav-mobile-group[open] {
    background: rgba(255, 255, 255, 0.82) !important;
  }

  .nav-mobile-group__links {
    padding: 0 0.65rem 0.7rem !important;
    gap: 0.28rem !important;
  }

  .nav-mobile__link {
    min-height: 36px !important;
    padding: 0.48rem 0.6rem !important;
    border-radius: 12px !important;
    color: rgba(28, 43, 70, 0.78) !important;
  }

  .nav-mobile__link:hover,
  .nav-mobile__link:focus-visible,
  .nav-mobile-main-link:hover,
  .nav-mobile-main-link:focus-visible {
    color: var(--color-green) !important;
    background: rgba(42, 135, 88, 0.08) !important;
  }

  .nav-mobile-member,
  .nav-mobile-don {
    min-height: 46px !important;
    margin-top: 0.1rem !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }

  .nav-mobile-member {
    background: rgba(255, 255, 255, 0.74) !important;
  }

  .nav-mobile-don {
    background: linear-gradient(135deg, #ff841f, #f26d12) !important;
    box-shadow: 0 14px 26px rgba(242, 122, 26, 0.22) !important;
  }

  .nav-mobile-social {
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 0.2rem !important;
    padding-top: 0.2rem !important;
  }

  .nav-mobile-social a {
    width: 34px !important;
    height: 34px !important;
    border-color: rgba(31, 52, 88, 0.11) !important;
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .nav-mobile-social a:hover,
  .nav-mobile-social a:focus-visible {
    color: #fff !important;
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
  }
}

@media (max-width: 420px) {
  .header .container.header__inner {
    width: calc(100% - 0.85rem) !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  .header__logo-img {
    height: 50px !important;
    max-width: min(108px, 36vw) !important;
  }

  .header__mobile-search,
  .btn-toggle-nav,
  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    width: 39px !important;
    height: 39px !important;
    min-width: 39px !important;
    min-height: 39px !important;
  }

  .nav-mobile-panel {
    top: calc(max(0.45rem, env(safe-area-inset-top)) + 68px) !important;
    right: 0.45rem !important;
    left: 0.45rem !important;
    border-radius: 22px !important;
  }
}

/* ONG mobile navigation: keep the original structure, improve motion */
@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .header,
  body:not(.home-page) .header {
    padding-top: 0 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(31, 52, 88, 0.08) !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .home-page .header:not(.header--scrolled) {
    padding-top: 0 !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border-bottom: 1px solid rgba(31, 52, 88, 0.06) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .header .container.header__inner,
  .home-page .header:not(.header--scrolled) .container.header__inner {
    grid-template-columns: 48px minmax(120px, 1fr) 48px !important;
    width: 100% !important;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    max-width: var(--container-max) !important;
    padding: 0 var(--space-md) !important;
    gap: 0.55rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .header__logo {
    height: 100% !important;
  }

  .header__logo-img {
    height: min(64px, calc(var(--header-height) - 10px)) !important;
    max-width: min(132px, 44vw) !important;
    filter: none !important;
  }

  .header__mobile-search,
  .btn-toggle-nav,
  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--color-primary-dark) !important;
    box-shadow: none !important;
    transform: none !important;
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease !important;
  }

  .header__mobile-search:hover,
  .header__mobile-search:focus-visible,
  .btn-toggle-nav:hover,
  .btn-toggle-nav:focus-visible {
    color: var(--color-green) !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    transform: translateY(-1px) !important;
  }

  .header__mobile-search svg {
    width: 23px !important;
    height: 23px !important;
  }

  .btn-toggle-nav-icon,
  .btn-toggle-nav-icon::before,
  .btn-toggle-nav-icon::after,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::before,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::after {
    width: 24px !important;
    height: 2px !important;
    background-color: currentColor !important;
  }

  .btn-toggle-nav-icon::before {
    top: -7px !important;
  }

  .btn-toggle-nav-icon::after {
    top: 7px !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon {
    background-color: transparent !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::before {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .btn-toggle-nav[aria-expanded="true"] .btn-toggle-nav-icon::after {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .nav-mobile-overlay {
    background: rgba(12, 20, 32, 0.24) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: opacity 220ms ease, visibility 220ms ease, backdrop-filter 220ms ease !important;
  }

  .nav-mobile-panel {
    top: calc(var(--header-height) + 0.45rem) !important;
    right: var(--space-md) !important;
    left: auto !important;
    bottom: auto !important;
    width: min(360px, calc(100vw - (var(--space-md) * 2))) !important;
    max-width: calc(100vw - (var(--space-md) * 2)) !important;
    height: auto !important;
    max-height: min(72vh, 620px) !important;
    overflow-y: auto !important;
    padding: 0.85rem 1rem 1rem !important;
    border: 1px solid rgba(18, 37, 58, 0.08) !important;
    border-radius: 18px !important;
    background: #eef1f2 !important;
    box-shadow: 0 18px 52px rgba(18, 37, 58, 0.18) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.985) !important;
    transform-origin: top right;
    transition:
      opacity 240ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 240ms ease,
      transform 240ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .nav-mobile-panel--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) !important;
  }

  .nav-mobile-panel__header {
    min-height: 34px !important;
    padding: 0 0 0.45rem !important;
  }

  .nav-mobile-panel__close {
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--color-primary-dark) !important;
    box-shadow: none !important;
    transition: color 180ms ease, transform 180ms ease !important;
  }

  .nav-mobile-panel__close:hover,
  .nav-mobile-panel__close:focus-visible {
    color: var(--color-green) !important;
    background: transparent !important;
    transform: rotate(90deg);
  }

  .nav-mobile-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 0.65rem !important;
    row-gap: 0.1rem !important;
  }

  .nav-mobile-group,
  .nav-mobile-main-link,
  .nav-mobile-social {
    grid-column: 1 / -1 !important;
  }

  .nav-mobile-group {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .nav-mobile-main-link {
    grid-column: 1 / -1 !important;
  }

  .nav-mobile-group__summary,
  .nav-mobile-main-link {
    min-height: 42px !important;
    padding: 0.48rem 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-primary-dark) !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    transition: color 180ms ease, transform 180ms ease !important;
  }

  .nav-mobile-group__summary:hover,
  .nav-mobile-group__summary:focus-visible,
  .nav-mobile-main-link:hover,
  .nav-mobile-main-link:focus-visible {
    color: var(--color-green) !important;
    background: transparent !important;
    transform: translateX(3px);
  }

  .nav-mobile-group__summary::after {
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease !important;
  }

  .nav-mobile-group[open] .nav-mobile-group__summary::after {
    transform: rotate(225deg) !important;
  }

  .nav-mobile-group__links {
    gap: 0.06rem !important;
    padding: 0.05rem 0 0.45rem 0.65rem !important;
    animation: navSubmenuIn 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .nav-mobile__link {
    min-height: 34px !important;
    padding: 0.35rem 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(26, 36, 57, 0.84) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    transition: color 170ms ease, transform 170ms ease !important;
  }

  .nav-mobile__link:hover,
  .nav-mobile__link:focus-visible {
    color: var(--color-green) !important;
    background: transparent !important;
    transform: translateX(4px);
  }

  .nav-mobile-member,
  .nav-mobile-don {
    min-height: 38px !important;
    margin-top: 0.75rem !important;
    padding: 0.55rem 0.78rem !important;
    border-radius: 999px !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease !important;
  }

  .nav-mobile-member:hover,
  .nav-mobile-member:focus-visible,
  .nav-mobile-don:hover,
  .nav-mobile-don:focus-visible {
    transform: translateY(-1px);
  }

  .nav-mobile-don {
    background: #f27a1a !important;
    box-shadow: none !important;
  }

  .nav-mobile-social {
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    margin-top: 1rem !important;
    padding-top: 0.9rem !important;
  }

  .nav-mobile-social a {
    width: 28px !important;
    height: 28px !important;
    background: rgba(255, 255, 255, 0.62) !important;
    box-shadow: none !important;
    transition: color 170ms ease, border-color 170ms ease, transform 170ms ease !important;
  }

  .nav-mobile-social a:hover,
  .nav-mobile-social a:focus-visible {
    color: var(--color-green) !important;
    border-color: rgba(42, 135, 88, 0.32) !important;
    background: rgba(255, 255, 255, 0.62) !important;
    transform: translateY(-2px);
  }

  .nav-mobile-panel--open .nav-mobile-group,
  .nav-mobile-panel--open .nav-mobile-main-link,
  .nav-mobile-panel--open .nav-mobile-member,
  .nav-mobile-panel--open .nav-mobile-don,
  .nav-mobile-panel--open .nav-mobile-social {
    animation: navItemIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .nav-mobile-panel--open .nav-mobile-group:nth-of-type(1) {
    animation-delay: 35ms;
  }

  .nav-mobile-panel--open .nav-mobile-group:nth-of-type(2) {
    animation-delay: 70ms;
  }

  .nav-mobile-panel--open .nav-mobile-group:nth-of-type(3) {
    animation-delay: 105ms;
  }

  .nav-mobile-panel--open .nav-mobile-main-link:nth-of-type(1) {
    animation-delay: 140ms;
  }

  .nav-mobile-panel--open .nav-mobile-main-link:nth-of-type(2) {
    animation-delay: 175ms;
  }

  .nav-mobile-panel--open .nav-mobile-member {
    animation-delay: 210ms;
  }

  .nav-mobile-panel--open .nav-mobile-don {
    animation-delay: 245ms;
  }

  .nav-mobile-panel--open .nav-mobile-social {
    animation-delay: 280ms;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .header .container.header__inner,
  .home-page .header:not(.header--scrolled) .container.header__inner {
    grid-template-columns: minmax(44px, 1fr) minmax(108px, auto) minmax(44px, 1fr) !important;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    padding: 0 var(--space-sm) !important;
  }

  .header__logo-img {
    height: min(58px, calc(var(--header-height) - 10px)) !important;
    max-width: min(118px, 46vw) !important;
  }

  .header__mobile-search,
  .btn-toggle-nav,
  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navSubmenuIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-panel,
  .nav-mobile-overlay,
  .nav-mobile-panel--open .nav-mobile-group,
  .nav-mobile-panel--open .nav-mobile-main-link,
  .nav-mobile-panel--open .nav-mobile-member,
  .nav-mobile-panel--open .nav-mobile-don,
  .nav-mobile-panel--open .nav-mobile-social,
  .nav-mobile-group__links {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile menu fixes: unified submenu surface and visible social row */
@media (max-width: 920px) {
  .nav-mobile-panel {
    position: fixed !important;
    padding-bottom: 4.25rem !important;
    background: #eef1f2 !important;
  }

  .nav-mobile-group,
  .nav-mobile-group[open],
  .nav-mobile-group__summary,
  .nav-mobile-group__links,
  .nav-mobile__link {
    background: transparent !important;
  }

  .nav-mobile-group[open] {
    box-shadow: none !important;
  }

  .nav-mobile-group__links {
    margin-inline: 0 !important;
    border: 0 !important;
  }

  .nav-mobile-social {
    position: absolute !important;
    right: 1rem !important;
    bottom: 0.92rem !important;
    left: 1rem !important;
    z-index: 4;
    margin: 0 !important;
    padding: 0.78rem 0 0 !important;
    border-top: 0 !important;
    background: #eef1f2 !important;
  }
}

/* Mobile menu focus layer: blur the content behind the panel */
@media (max-width: 920px) {
  body.mobile-menu-open main,
  body.mobile-menu-open .footer {
    filter: blur(5px) !important;
    opacity: 0.58 !important;
    transform: scale(0.996) !important;
    pointer-events: none;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
  }

  body.mobile-menu-open .header__inner {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.mobile-menu-open .nav-mobile-overlay {
    background: rgba(12, 20, 32, 0.34) !important;
    -webkit-backdrop-filter: blur(10px) saturate(0.86);
    backdrop-filter: blur(10px) saturate(0.86);
  }

  body.mobile-menu-open .nav-mobile-panel {
    filter: none !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Desktop submenu polish: same calm surface as mobile, smoother reveal */
@media (min-width: 921px) {
  .header-sub-nav,
  .site-topics-sub-nav {
    background: #eef1f2 !important;
    border-color: rgba(18, 37, 58, 0.08) !important;
    box-shadow: 0 20px 48px rgba(18, 37, 58, 0.14) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform;
    transition:
      opacity 240ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 240ms ease,
      transform 240ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .header-sub-nav {
    transform: translateY(12px) scale(0.985) !important;
    transform-origin: top left;
  }

  .site-topics-sub-nav {
    transform: translate(-50%, 12px) scale(0.985) !important;
    transform-origin: top center;
  }

  .nav-secondary__item:hover .header-sub-nav,
  .nav-secondary__item:focus-within .header-sub-nav,
  .nav-secondary__item--open .header-sub-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1) !important;
  }

  .site-topics__item:hover .site-topics-sub-nav,
  .site-topics__item:focus-within .site-topics-sub-nav,
  .site-topics__item--open .site-topics-sub-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1) !important;
  }

  .header-sub-nav__title,
  .site-topics-sub-nav__title {
    border-bottom-color: rgba(31, 52, 88, 0.08) !important;
  }

  .header-sub-nav__link,
  .site-topics-sub-nav__link {
    background: transparent !important;
    transition:
      color 180ms ease,
      background-color 180ms ease,
      transform 180ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .header-sub-nav__link:hover,
  .header-sub-nav__link:focus-visible,
  .site-topics-sub-nav__link:hover,
  .site-topics-sub-nav__link:focus-visible {
    color: var(--color-green) !important;
    background: rgba(255, 255, 255, 0.58) !important;
    transform: translateX(4px);
  }
}

/* Desktop submenu usability: keep hover stable while moving into the panel */
@media (min-width: 921px) {
  .header-sub-nav,
  .site-topics-sub-nav {
    border-radius: 20px !important;
    pointer-events: auto !important;
    transition:
      opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 140ms,
      transform 220ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .header-sub-nav::before,
  .site-topics-sub-nav::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 18px;
    background: transparent;
  }

  .nav-secondary__item:hover .header-sub-nav,
  .nav-secondary__item:focus-within .header-sub-nav,
  .nav-secondary__item--open .header-sub-nav,
  .site-topics__item:hover .site-topics-sub-nav,
  .site-topics__item:focus-within .site-topics-sub-nav,
  .site-topics__item--open .site-topics-sub-nav {
    transition-delay: 0s !important;
  }

  .header-sub-nav__link,
  .site-topics-sub-nav__link {
    border-radius: 12px !important;
  }
}

/* Home mobile hero header: transparent over media, no separator line */
@media (max-width: 920px) {
  .home-page .header:not(.header--scrolled),
  .home-page .header:not(.header--scrolled) .container.header__inner {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .home-page .header:not(.header--scrolled)::before,
  .home-page .header:not(.header--scrolled)::after,
  .home-page .header:not(.header--scrolled) .container.header__inner::before,
  .home-page .header:not(.header--scrolled) .container.header__inner::after {
    display: none !important;
    content: none !important;
  }

  .home-page .header:not(.header--scrolled) .header__mobile-search,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav {
    color: #fff !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  }

  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::before,
  .home-page .header:not(.header--scrolled) .btn-toggle-nav-icon::after {
    background-color: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  }
}

/* Mobile menu veil: one light, uniform blur behind the open panel */
@media (max-width: 920px) {
  body.mobile-menu-open .header,
  body.mobile-menu-open .header .container.header__inner,
  body.mobile-menu-open.home-page .header:not(.header--scrolled),
  body.mobile-menu-open.home-page .header:not(.header--scrolled) .container.header__inner {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.mobile-menu-open main,
  body.mobile-menu-open .footer {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
  }

  body.mobile-menu-open .nav-mobile-overlay,
  body.mobile-menu-open .nav-mobile-overlay.nav-mobile-overlay--open {
    background: rgba(10, 16, 24, 0.1) !important;
    -webkit-backdrop-filter: blur(2.5px) saturate(0.98) !important;
    backdrop-filter: blur(2.5px) saturate(0.98) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.mobile-menu-open .nav-mobile-panel {
    filter: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
}

/* Mobile menu responsive safety: keep bottom CTAs fully visible */
@media (max-width: 920px) {
  .nav-mobile-panel {
    max-height: min(
      calc(100dvh - var(--header-height) - max(1rem, env(safe-area-inset-bottom))),
      calc(100svh - var(--header-height) - max(1rem, env(safe-area-inset-bottom))),
      620px
    ) !important;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
    overflow-x: hidden !important;
  }

  .nav-mobile-menu {
    align-items: stretch !important;
    grid-auto-rows: auto !important;
  }

  .nav-mobile-member,
  .nav-mobile-don {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-inline: clamp(0.62rem, 2.6vw, 0.9rem) !important;
    white-space: nowrap !important;
  }

  .nav-mobile-social {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    grid-column: 1 / -1 !important;
    margin-top: 0.95rem !important;
    padding: 0.85rem 0 0 !important;
    background: transparent !important;
  }
}

@media (max-width: 380px) {
  .nav-mobile-menu {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .nav-mobile-member,
  .nav-mobile-don {
    grid-column: 1 / -1 !important;
    margin-top: 0.45rem !important;
  }
}

/* Team page: interactive profile spotlight */
.team-feature-section {
  background:
    linear-gradient(180deg, rgba(248, 250, 249, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(42, 135, 88, 0.1), transparent 34%);
  overflow: hidden;
}

.team-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  align-items: stretch;
  min-height: clamp(560px, 68vw, 720px);
  padding: clamp(2rem, 5vw, 4.8rem) 0;
  isolation: isolate;
}

.team-feature::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 3vw, 2rem) -7vw clamp(1rem, 3vw, 2rem) 34%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.92) 28%, rgba(238, 243, 241, 0.76)),
    linear-gradient(120deg, rgba(42, 135, 88, 0.08), rgba(254, 203, 62, 0.06));
}

.team-feature::after {
  content: "ALAFIA 2050";
  position: absolute;
  right: -1.2rem;
  top: 50%;
  z-index: -1;
  color: rgba(31, 52, 88, 0.24);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.team-feature__intro {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 520px;
  padding-right: clamp(1rem, 4vw, 3rem);
}

.team-feature__title {
  max-width: 480px;
  margin: 0.5rem 0 1rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.team-feature__subtitle {
  max-width: 510px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: var(--color-text-light);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.team-feature__list {
  display: grid;
  gap: 0.7rem;
  max-width: 360px;
}

.team-profile {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 78px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--color-primary-dark);
  text-align: left;
  cursor: pointer;
  opacity: 0.58;
  transform: translateX(0);
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-profile:hover,
.team-profile:focus-visible {
  opacity: 0.88;
  transform: translateX(4px);
}

.team-profile:focus-visible {
  outline: 2px solid rgba(42, 135, 88, 0.45);
  outline-offset: 3px;
}

.team-profile--active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(31, 52, 88, 0.08);
  box-shadow: 0 18px 38px rgba(18, 37, 58, 0.11);
  transform: translateX(-1rem);
}

.team-profile__avatar {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(236, 240, 239, 0.35), rgba(236, 240, 239, 0.35)),
    var(--avatar-image) center / cover;
  box-shadow: inset 0 0 0 1px rgba(31, 52, 88, 0.08);
}

.team-profile--active .team-profile__avatar {
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px var(--color-secondary),
    0 12px 24px rgba(18, 37, 58, 0.14);
}

.team-profile__name,
.team-profile__role {
  display: block;
  min-width: 0;
}

.team-profile__name {
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.team-profile__role {
  margin-top: 0.2rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.team-feature__stage {
  position: relative;
  min-height: 100%;
}

.team-member-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition:
    opacity 320ms ease,
    visibility 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member-panel--active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.team-member-panel__photo {
  position: absolute;
  inset: -3rem -4vw 5.5rem 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 249, 0.98) 0%, rgba(248, 250, 249, 0.78) 23%, rgba(248, 250, 249, 0.18) 54%),
    linear-gradient(180deg, rgba(248, 250, 249, 0.1), rgba(248, 250, 249, 0.96) 92%),
    var(--member-image) center / cover;
  filter: grayscale(0.06) saturate(0.9);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 78%, transparent 100%);
}

.team-member-panel__meta {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  max-width: 420px;
  margin: 0 6vw 3rem 0;
  text-align: center;
}

.team-member-panel__kicker {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.team-member-panel__meta h3 {
  margin: 0 0 0.8rem;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.team-member-panel__meta p {
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 920px) {
  .team-feature {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0 2.6rem;
  }

  .team-feature::before,
  .team-feature::after {
    display: none;
  }

  .team-feature__intro {
    max-width: none;
    padding-right: 0;
  }

  .team-feature__title {
    max-width: 620px;
    font-size: clamp(2.2rem, 10vw, 3.7rem);
  }

  .team-feature__subtitle {
    margin-bottom: 1.4rem;
  }

  .team-feature__list {
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .team-profile {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 74px;
    padding: 0.72rem;
    border-radius: 14px;
  }

  .team-profile--active {
    transform: none;
  }

  .team-profile__avatar {
    width: 46px;
    height: 46px;
  }

  .team-profile__name {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .team-profile__role {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .team-feature__stage {
    min-height: 480px;
    margin-top: 1.25rem;
  }

  .team-member-panel__photo {
    inset: 0 0 7.4rem;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(248, 250, 249, 0.04), rgba(248, 250, 249, 0.9) 92%),
      var(--member-image) center / cover;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .team-member-panel__meta {
    justify-self: stretch;
    max-width: none;
    margin: 0;
    padding: 1rem 0.4rem 0;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .team-feature__list {
    grid-template-columns: 1fr;
  }

  .team-feature__stage {
    min-height: 430px;
  }

  .team-member-panel__photo {
    bottom: 8.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-profile,
  .team-member-panel {
    transition-duration: 0.01ms !important;
  }
}

/* Team page: restrained avatar layout for temporary member profiles */
.team-feature-section {
  background: #f7f8f8 !important;
  overflow: hidden;
}

.team-feature-section .container {
  overflow: hidden;
}

.team-feature {
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr) !important;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center !important;
  min-height: auto !important;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(2.6rem, 5vw, 4.2rem) 0 !important;
}

.team-feature::before,
.team-feature::after {
  display: none !important;
}

.team-feature__intro {
  align-self: center !important;
  max-width: 480px !important;
  padding-right: 0 !important;
}

.team-feature__title {
  max-width: 460px !important;
  font-family: var(--font-body) !important;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
}

.team-feature__subtitle {
  max-width: 460px !important;
  font-size: 1.03rem !important;
}

.team-feature__list {
  max-width: 390px !important;
}

.team-profile {
  border-color: transparent !important;
  border-radius: 14px !important;
  background: transparent !important;
  opacity: 0.72 !important;
}

.team-profile:hover,
.team-profile:focus-visible {
  opacity: 1 !important;
}

.team-profile--active {
  background: #fff !important;
  border-color: rgba(31, 52, 88, 0.08) !important;
  box-shadow: 0 14px 34px rgba(18, 37, 58, 0.08) !important;
  opacity: 1 !important;
  transform: translateX(-0.45rem) !important;
}

.team-profile__avatar,
.team-member-panel__avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: #e9eef0 !important;
  box-shadow: inset 0 0 0 1px rgba(31, 52, 88, 0.08);
}

.team-profile__avatar {
  width: 54px !important;
  height: 54px !important;
  font-size: 0.82rem;
}

.team-profile--active .team-profile__avatar {
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px rgba(42, 135, 88, 0.28),
    inset 0 0 0 1px rgba(31, 52, 88, 0.08) !important;
}

.team-profile__avatar--coordination,
.team-member-panel__avatar--coordination {
  background: #e7f2ec !important;
  color: #1f6d48;
}

.team-profile__avatar--programmes,
.team-member-panel__avatar--programmes {
  background: #eef1f5 !important;
  color: #243a68;
}

.team-profile__avatar--sante,
.team-member-panel__avatar--sante {
  background: #f6eceb !important;
  color: #9f4541;
}

.team-profile__avatar--jeunesse,
.team-member-panel__avatar--jeunesse {
  background: #fff4d7 !important;
  color: #8a6300;
}

.team-feature__stage {
  position: relative;
  min-height: 430px !important;
  border: 1px solid rgba(31, 52, 88, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 37, 58, 0.07);
  overflow: hidden;
}

.team-member-panel {
  inset: 0 !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  place-items: center;
  padding: clamp(2rem, 4vw, 3rem);
}

.team-member-panel__avatar {
  width: clamp(148px, 16vw, 230px);
  height: clamp(148px, 16vw, 230px);
  margin-top: 0.4rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.team-member-panel__meta {
  align-self: end !important;
  justify-self: stretch !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.team-member-panel__kicker {
  margin-bottom: 0.65rem !important;
  color: rgba(31, 52, 88, 0.58) !important;
  letter-spacing: 0.24em !important;
}

.team-member-panel__meta h3 {
  letter-spacing: 0.12em !important;
}

.team-member-panel__meta p {
  max-width: 480px;
}

@media (max-width: 920px) {
  .team-feature {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .team-feature__intro,
  .team-feature__title,
  .team-feature__subtitle,
  .team-feature__list {
    max-width: none !important;
  }

  .team-feature__title {
    font-size: clamp(2rem, 8vw, 3.1rem) !important;
  }

  .team-feature__stage {
    min-height: 390px !important;
    margin-top: 0 !important;
  }

  .team-profile--active {
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .team-feature {
    padding: 2rem 0 2.4rem !important;
  }

  .team-feature__stage {
    min-height: 380px !important;
    border-radius: 16px;
  }

  .team-member-panel {
    padding: 1.5rem 1.1rem;
  }

  .team-member-panel__avatar {
    width: 140px;
    height: 140px;
    font-size: 2.35rem;
  }

  .team-member-panel__meta {
    text-align: left !important;
  }
}

/* Team page: uniform surface and softer editorial typography */
.team-feature-section {
  background: #f7f8f8 !important;
}

.team-feature,
.team-feature__intro,
.team-feature__stage,
.team-profile,
.team-profile--active {
  background: #f7f8f8 !important;
}

.team-feature {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr) !important;
  gap: clamp(2.2rem, 5vw, 5.8rem) !important;
}

.team-feature__title {
  max-width: 520px !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2.35rem, 4vw, 3.65rem) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  color: rgba(31, 52, 88, 0.95) !important;
}

.team-feature__subtitle {
  max-width: 520px !important;
  color: rgba(31, 52, 88, 0.72) !important;
}

.team-profile {
  border-color: rgba(31, 52, 88, 0.06) !important;
  box-shadow: none !important;
}

.team-profile--active {
  border-color: rgba(42, 135, 88, 0.22) !important;
  box-shadow: 0 14px 32px rgba(18, 37, 58, 0.06) !important;
}

.team-feature__stage {
  border-color: rgba(31, 52, 88, 0.08) !important;
  box-shadow: none !important;
}

.team-profile__avatar,
.team-member-panel__avatar,
.team-profile__avatar--coordination,
.team-profile__avatar--programmes,
.team-profile__avatar--sante,
.team-profile__avatar--jeunesse,
.team-member-panel__avatar--coordination,
.team-member-panel__avatar--programmes,
.team-member-panel__avatar--sante,
.team-member-panel__avatar--jeunesse {
  background: #e9eef0 !important;
  color: var(--color-primary-dark) !important;
}

.team-profile--active .team-profile__avatar {
  box-shadow:
    0 0 0 3px #f7f8f8,
    0 0 0 5px rgba(42, 135, 88, 0.24),
    inset 0 0 0 1px rgba(31, 52, 88, 0.08) !important;
}

@media (max-width: 920px) {
  .team-feature__title {
    font-size: clamp(2.1rem, 8vw, 3rem) !important;
  }
}

/* Team title: exactly three controlled lines on desktop */
.team-feature__intro {
  max-width: 680px !important;
}

.team-feature__title {
  max-width: 680px !important;
  font-size: clamp(2.4rem, 3.25vw, 3.1rem) !important;
}

.team-feature__title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .team-feature__title span {
    white-space: normal;
  }
}

/* FormSubmit thank-you page */
.form-thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  background: #f7f8f8;
}

.form-thanks {
  width: min(680px, 100%);
  text-align: center;
}

.form-thanks__logo {
  display: inline-flex;
  margin-bottom: 2rem;
}

.form-thanks__logo img {
  width: auto;
  height: 92px;
}

.form-thanks h1 {
  margin: 0.75rem 0 1rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.form-thanks p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.form-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 560px) {
  .form-thanks__actions {
    flex-direction: column;
  }
}

/* Inline FormSubmit feedback */
.form-submit-message {
  width: 100%;
  margin: 0.9rem 0 0;
  padding: 0.78rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-submit-message--success {
  color: #1e5631;
  border-color: rgba(30, 86, 49, 0.18);
  background: rgba(30, 86, 49, 0.08);
}

.form-submit-message--error {
  color: #9f2d20;
  border-color: rgba(159, 45, 32, 0.18);
  background: rgba(159, 45, 32, 0.08);
}

.contact-replacement-form__fields .form-submit-message {
  text-align: center;
}

.sleek-newsletter + .form-submit-message {
  flex: 0 0 100%;
  max-width: 360px;
  margin-top: 0.65rem;
}

.contact-replacement-submit.is-submitting,
.sleek-newsletter.is-submitting button {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

/* Contact page: make form and map read as one calm block */
.contact-page .contact-replacement-section {
  padding-bottom: 0;
}

.contact-page .contact-replacement-map {
  padding-top: 0;
  margin-top: 0;
}

.contact-page .contact-replacement-wrapper,
.contact-page .contact-replacement-map__inner {
  max-width: 1000px;
}

.contact-page .contact-replacement-wrapper {
  border-radius: 28px 28px 0 0;
  box-shadow: 0 22px 52px -22px rgba(30, 86, 49, 0.18);
}

.contact-page .contact-replacement-map__inner {
  padding-top: clamp(1.65rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(30, 86, 49, 0.1);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 26px 54px -28px rgba(30, 86, 49, 0.2);
}

.contact-page .contact-replacement-map__container {
  border-width: 0;
  border-radius: 20px;
}

.contact-page .contact-replacement-section.section .contact-replacement-info p {
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
  .contact-page .contact-replacement-section {
    padding-bottom: 0;
  }

  .contact-page .contact-replacement-wrapper {
    border-radius: 24px 24px 0 0;
  }

  .contact-page .contact-replacement-map__inner {
    border-radius: 0 0 24px 24px;
  }
}

/* Keep newsletter inputs from picking browser-blue autofill/focus colors */
.sleek-newsletter input,
.sleek-newsletter input:focus,
.sleek-newsletter input:active {
  background-color: transparent !important;
  box-shadow: none !important;
  caret-color: var(--color-primary-dark);
  appearance: none;
}

.sleek-newsletter input::selection {
  color: var(--color-primary-dark);
  background: rgba(254, 203, 62, 0.36);
}

.sleek-newsletter input:-webkit-autofill,
.sleek-newsletter input:-webkit-autofill:hover,
.sleek-newsletter input:-webkit-autofill:focus,
.sleek-newsletter input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--color-primary-dark);
  caret-color: var(--color-primary-dark);
  transition: background-color 9999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
}
