/* =========================================================================
   Conquest Nodi Development Foundation — Design System
   Brand: Navy #0B1F3B · Gold #D4AF37 · White · Light Grey #E6E8EC · Emerald #0E8F6A
   Headings: Montserrat · Body: Inter
   ========================================================================= */

:root {
  --navy:        #0B1F3B;
  --navy-700:    #102a4f;
  --navy-600:    #16345f;
  --gold:        #D4AF37;
  --gold-soft:   #e6c763;
  --white:       #FFFFFF;
  --grey:        #E6E8EC;
  --grey-text:   #5a6573;
  --emerald:     #0E8F6A;

  --ink:         #16202e;       /* default body text on light */
  --shadow-sm:   0 4px 14px rgba(11,31,59,.08);
  --shadow-md:   0 14px 40px rgba(11,31,59,.12);
  --shadow-lg:   0 30px 70px rgba(11,31,59,.18);

  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1200px;
  --gutter:      clamp(20px, 5vw, 48px);

  --ease:        cubic-bezier(.4, 0, .2, 1);
  --font-head:   'Montserrat', 'Poppins', system-ui, sans-serif;
  --font-body:   'Inter', 'Open Sans', 'Lato', system-ui, sans-serif;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }

/* ---- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--grey  { background: var(--grey); }
.section--navy  { background: var(--navy); color: #d8e0ec; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head p { color: var(--grey-text); margin-top: 16px; font-size: 1.08rem; }
.section--navy .section-head p { color: #aebbcd; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  --bg: var(--gold);
  --fg: var(--navy);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  box-shadow: 0 10px 26px rgba(212,175,55,.28);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(212,175,55,.4); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.55); box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); box-shadow: none; }
.btn--navy { background: var(--navy); color: var(--white); box-shadow: 0 10px 26px rgba(11,31,59,.25); }
.btn--navy:hover { box-shadow: 0 16px 34px rgba(11,31,59,.35); }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 18px;
}
.site-header.is-solid { background: var(--navy); box-shadow: 0 8px 30px rgba(0,0,0,.25); padding-block: 12px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 52px; width: auto; transition: height .3s var(--ease); }
.is-solid .nav__logo img { height: 44px; }
/* white "chip" behind dark-text logo so it reads on navy */
.nav__logo .logo-chip { background: var(--white); padding: 7px 12px; border-radius: 10px; display: inline-flex; box-shadow: var(--shadow-sm); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: #e7ecf4;
  padding: 10px 14px; border-radius: 8px; position: relative; transition: color .2s var(--ease);
}
.nav__menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--white); }
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* =========================================================================
   HERO SLIDER  (the signature element)
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 7s linear;
}
.hero__slide.is-active .hero__bg img { transform: scale(1.18); } /* slow Ken Burns zoom */
/* navy tint overlay per brief */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,59,.94) 0%, rgba(11,31,59,.78) 42%, rgba(11,31,59,.45) 100%),
    radial-gradient(120% 120% at 90% 10%, rgba(212,175,55,.18), transparent 55%);
}
/* fallback pattern when image missing */
.hero__bg { background: linear-gradient(120deg, var(--navy), var(--navy-600)); }

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 760px; }
.hero__content .eyebrow { opacity: 0; transform: translateY(18px); }
.hero__content h1 {
  color: var(--white); font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: 1.04;
  opacity: 0; transform: translateY(24px);
}
.hero__content h1 .accent { color: var(--gold); }
.hero__content p {
  color: #c9d4e3; font-size: clamp(1.02rem, 1.6vw, 1.22rem); margin-top: 22px; max-width: 600px;
  opacity: 0; transform: translateY(24px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; opacity: 0; transform: translateY(24px); }

/* entrance animation triggered on active slide */
.hero__slide.is-active .eyebrow,
.hero__slide.is-active h1,
.hero__slide.is-active p,
.hero__slide.is-active .hero__actions { animation: heroRise .9s var(--ease) forwards; }
.hero__slide.is-active h1 { animation-delay: .12s; }
.hero__slide.is-active p { animation-delay: .24s; }
.hero__slide.is-active .hero__actions { animation-delay: .36s; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* controls */
.hero__nav {
  position: absolute; z-index: 3; bottom: clamp(28px, 5vw, 48px); left: var(--gutter);
  display: flex; align-items: center; gap: 18px;
}
.hero__dots { display: flex; gap: 10px; }
.hero__dot {
  width: 38px; height: 4px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.3); position: relative; overflow: hidden; padding: 0;
}
.hero__dot span { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero__dot.is-active span { animation: dotFill var(--slide-duration, 6s) linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

.hero__arrows { display: flex; gap: 10px; margin-left: 6px; }
.hero__arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: scale(1.06); }
.hero__arrow svg { width: 20px; height: 20px; }

.hero__scroll {
  position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(28px, 5vw, 48px);
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: #aebbcd;
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.hero__scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* =========================================================================
   PAGE HERO (inner pages)
   ========================================================================= */
.page-hero {
  position: relative; padding-top: 160px; padding-bottom: 90px; background: var(--navy); overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(110% 120% at 85% 0%, rgba(212,175,55,.16), transparent 55%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.6vw, 3.4rem); }
.page-hero p { color: #aebbcd; margin-top: 16px; max-width: 620px; }
.breadcrumb { color: #8c9bb2; font-size: .85rem; margin-bottom: 18px; font-family: var(--font-head); letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--gold); }

/* =========================================================================
   IMPACT COUNTERS
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--grey); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: var(--gold); line-height: 1; }
.stat__label { margin-top: 12px; color: var(--navy); font-weight: 600; font-family: var(--font-head); font-size: .98rem; }

/* =========================================================================
   PILLARS / FEATURE CARDS
   ========================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(11,31,59,.06); color: var(--navy); margin-bottom: 20px; transition: .3s var(--ease);
}
.card:hover .card__icon { background: var(--gold); color: var(--navy); transform: rotate(-6deg); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--grey-text); font-size: .98rem; }

/* program cards with image */
.prog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.prog-card__img { aspect-ratio: 16/10; background: linear-gradient(120deg, var(--navy), var(--navy-600)); overflow: hidden; }
.prog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prog-card:hover .prog-card__img img { transform: scale(1.07); }
.prog-card__body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.prog-card__body h3 { font-size: 1.18rem; }
.prog-card__body p { color: var(--grey-text); font-size: .96rem; margin: 10px 0 18px; flex: 1; }
.link-arrow { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.prog-card:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(5px); }
.link-arrow:hover { color: var(--emerald); }

/* =========================================================================
   ABOUT PREVIEW (split)
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--navy); }
.split__media .badge {
  position: absolute; bottom: -24px; right: -10px; background: var(--gold); color: var(--navy);
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md); font-family: var(--font-head); text-align: center;
}
.split__media .badge b { display: block; font-size: 1.8rem; line-height: 1; }
.split__media .badge span { font-size: .8rem; font-weight: 600; }
.split__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.split__body p { color: var(--grey-text); margin-top: 18px; }
.split--reverse .split__media { order: 2; }

/* =========================================================================
   STORIES
   ========================================================================= */
.story {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey);
  display: flex; flex-direction: column;
}
.story__img { aspect-ratio: 4/3; background: var(--navy); overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__body { padding: 26px 24px; position: relative; }
.story__body::before { content: "“"; font-family: Georgia, serif; font-size: 4rem; color: var(--gold); position: absolute; top: -8px; right: 22px; opacity: .35; line-height: 1; }
.story__quote { color: var(--ink); font-style: italic; }
.story__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-top: 16px; }
.story__role { color: var(--emerald); font-size: .85rem; font-weight: 600; }

/* =========================================================================
   PARTNERS CAROUSEL
   ========================================================================= */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img, .partner-logo { height: 52px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: .3s var(--ease); }
.partner-logo { display: grid; place-items: center; min-width: 150px; height: 80px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey); font-family: var(--font-head); font-weight: 700; color: var(--navy); filter: none; opacity: 1; padding: 0 18px; }
.marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   NEWSLETTER + FORMS
   ========================================================================= */
.newsletter { background: linear-gradient(120deg, var(--navy), var(--navy-700)); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); position: relative; overflow: hidden; }
.newsletter::after { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 100% 0%, rgba(212,175,55,.2), transparent 55%); pointer-events:none; }
.newsletter__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #aebbcd; margin-top: 12px; }

.form-row { display: flex; flex-wrap: wrap; gap: 14px; }
.field { flex: 1 1 200px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--navy); }
.section--navy .field label, .newsletter .field label { color: #cdd8e6; }
input, textarea, select {
  font-family: var(--font-body); font-size: 1rem; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid var(--grey); background: var(--white); color: var(--ink); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
textarea { min-height: 140px; resize: vertical; }
.form-card { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-note { font-size: .82rem; color: var(--grey-text); margin-top: 6px; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-family: var(--font-head); font-size: .95rem; }
.alert--ok { background: rgba(14,143,106,.12); color: var(--emerald); border: 1px solid rgba(14,143,106,.3); }
.alert--err { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }

/* =========================================================================
   FAQ / ACCORDION
   ========================================================================= */
.faq { border-top: 1px solid var(--grey); }
.faq__item { border-bottom: 1px solid var(--grey); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.08rem; }
.faq__q .plus { width: 26px; height: 26px; flex: none; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--gold); transition: transform .3s var(--ease); }
.faq__q .plus::before { top: 50%; left: 0; right: 0; height: 2.5px; transform: translateY(-50%); }
.faq__q .plus::after { left: 50%; top: 0; bottom: 0; width: 2.5px; transform: translateX(-50%); }
.faq__item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); color: var(--grey-text); }
.faq__a p { padding-bottom: 22px; }

/* =========================================================================
   TIMELINE
   ========================================================================= */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--gold), var(--emerald)); }
.timeline__item { position: relative; padding-left: 64px; padding-bottom: 42px; }
.timeline__dot { position: absolute; left: 8px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 4px solid var(--gold); }
.timeline__year { font-family: var(--font-head); font-weight: 800; color: var(--emerald); letter-spacing: .05em; font-size: .85rem; text-transform: uppercase; }
.timeline__item h3 { margin: 4px 0 8px; font-size: 1.3rem; }
.timeline__item p { color: var(--grey-text); }
.section--navy .timeline__item p { color: #aebbcd; }
.section--navy .timeline__dot { background: var(--white); }

/* =========================================================================
   CTA STRIP
   ========================================================================= */
.cta-strip { background: linear-gradient(120deg, var(--navy), var(--navy-700)); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-strip::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 140% at 50% 0%, rgba(212,175,55,.22), transparent 60%); }
.cta-strip h2 { color: #fff; position: relative; z-index: 2; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-strip p { color: #aebbcd; max-width: 560px; margin: 14px auto 30px; position: relative; z-index: 2; }
.cta-strip .btn { position: relative; z-index: 2; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--navy); color: #aebbcd; padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .logo-chip { background:#fff; padding:8px 12px; border-radius:10px; display:inline-flex; margin-bottom: 18px; }
.footer__brand img { height: 46px; }
.footer__brand p { font-size: .95rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .03em; }
.footer__links a { display: block; padding: 7px 0; font-size: .95rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer__links a:hover { color: var(--gold); padding-left: 6px; }
.footer__contact li { display: flex; gap: 12px; padding: 7px 0; font-size: .95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); transition: .25s var(--ease); }
.footer__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .nav__menu, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .site-header { background: var(--navy); padding-block: 12px; }

  /* mobile drawer */
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: var(--navy-700);
    flex-direction: column; align-items: stretch; padding: 100px 26px 40px; gap: 4px;
    transform: translateX(100%); transition: transform .35s var(--ease); display: flex;
    box-shadow: -20px 0 60px rgba(0,0,0,.4); z-index: 99;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__menu a::after { display: none; }
  .nav__menu .btn { display: inline-flex; margin-top: 18px; justify-content: center; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero__scroll { display: none; }
  .hero__arrows { display: none; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__bg img { transform: none !important; }
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Partner logo images (uploaded via admin) */
.partner-logo__img{max-height:46px;width:auto;max-width:150px;object-fit:contain;filter:grayscale(1) opacity(.7);transition:filter .3s}
.partner-logo:hover .partner-logo__img{filter:grayscale(0) opacity(1)}

/* =====================================================================
   WARM & HUMANITARIAN REDESIGN LAYER
   Softer shapes, warm neutrals, photography-led storytelling.
   Brand colours (navy / gold / emerald) are preserved; warmth comes from
   cream surfaces, generous rounding and organic accents.
   ===================================================================== */
:root{
  --cream:      #FBF7EF;   /* warm ivory page background */
  --sand:       #F3ECE0;   /* warm alt-section background */
  --surface:    #FFFFFF;   /* cards */
  --ink:        #1E2733;   /* slightly warm near-black */
  --grey-text:  #6B6458;   /* warm muted text */
  --line:       #ECE3D6;   /* warm hairline */
  --radius:     18px;
  --radius-lg:  30px;
  --shadow-sm:  0 6px 18px rgba(31,39,51,.06);
  --shadow-md:  0 18px 44px rgba(31,39,51,.10);
  --shadow-lg:  0 34px 80px rgba(31,39,51,.16);
}
body{ background: var(--cream); color: var(--ink); }

/* Alternating warm surfaces */
.section--grey{ background: var(--sand); }
.section{ position: relative; }

/* Editorial section intros */
.section-head h2{ letter-spacing:-.02em; line-height:1.1; }
.section-head p{ color: var(--grey-text); }
.eyebrow{ color: var(--emerald); font-weight:700; letter-spacing:.16em; }
.eyebrow::before{ background: var(--gold); width:34px; height:3px; border-radius:3px; }

/* ---- Buttons: pill-shaped & soft ---- */
.btn{ border-radius:999px; font-weight:700; box-shadow: 0 10px 24px rgba(212,175,55,.28); }
.btn:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px rgba(212,175,55,.34); }
.btn--navy{ box-shadow: 0 12px 26px rgba(11,31,59,.22); }
.btn--outline-navy{ box-shadow:none; }
.btn svg{ width:17px; height:17px; }
.link-arrow{ color: var(--emerald); font-weight:700; }

/* ---- Cards: rounded, warm, photo-forward ---- */
.card,.prog-card,.story{
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card:hover,.prog-card:hover,.story:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card,.prog-card,.story{ transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.prog-card__img,.story__img{ overflow:hidden; }
.prog-card__img img,.story__img img{
  width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease);
}
.prog-card:hover .prog-card__img img,.story:hover .story__img img{ transform: scale(1.06); }
.story__img{ aspect-ratio: 4/3; }
.prog-card__img{ aspect-ratio: 3/2; display:block; }

/* Pillar / value icon tiles get a soft warm wash */
.card .card__icon,.pillar__icon,.value__icon{
  background: rgba(14,143,106,.10); color: var(--emerald);
  border-radius: 18px;
}

/* ---- Storytelling testimonial style ---- */
.story__quote{ font-size:1.05rem; line-height:1.7; color: var(--ink); }
.story__quote::before{
  content:"\201C"; display:block; font-family: Georgia, serif;
  font-size:3rem; line-height:.6; color: var(--gold); margin-bottom:8px;
}
.story__name{ color: var(--navy); font-weight:800; }
.story__role{ color: var(--emerald); font-weight:700; letter-spacing:.04em; text-transform:uppercase; font-size:.74rem; }

/* Split/feature images get organic rounding */
.split__media img,.about__media img,.media-round img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---- Page hero: warmer, softer base ---- */
.page-hero{ position: relative; overflow: hidden; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; }
.page-hero::after{
  content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px;
  background: radial-gradient(circle, rgba(212,175,55,.22), transparent 70%);
  pointer-events:none;
}

/* Hero slider: warm cinematic overlay for real photos */
.hero__bg::after{
  background: linear-gradient(115deg, rgba(11,31,59,.86) 0%, rgba(11,31,59,.62) 48%, rgba(14,143,106,.40) 100%) !important;
}

/* =================== NAVIGATION REDESIGN =================== */
.site-header{ transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease); }
.site-header.is-solid{
  background: rgba(251,247,239,.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 8px 30px rgba(31,39,51,.10);
}
.nav__logo{ gap:12px; align-items:center; }
.nav__logo .logo-chip{ background: var(--white); box-shadow: var(--shadow-sm); }
.nav__brand{ display:flex; flex-direction:column; line-height:1.05; }
.nav__brand-name{ font-family: var(--font-head); font-weight:800; font-size:1.18rem; color:#fff; letter-spacing:.01em; }
.nav__brand-sub{ font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold); }
.site-header.is-solid .nav__brand-name{ color: var(--navy); }
.site-header.is-solid .nav__brand-sub{ color: var(--emerald); }

.nav__menu a{ color: rgba(255,255,255,.86); font-weight:600; }
.nav__menu a:hover,.nav__menu a.active{ color:#fff; }
.nav__menu a::after{ background: var(--gold); height:3px; border-radius:3px; }
.site-header.is-solid .nav__menu a{ color: var(--navy); }
.site-header.is-solid .nav__menu a:hover,
.site-header.is-solid .nav__menu a.active{ color: var(--emerald); }
.nav__menu-cta{ display:none; }   /* desktop: single CTA lives in .nav__cta */
.site-header.is-solid .nav__toggle span{ background: var(--navy); }

/* Mobile drawer: warm panel */
@media (max-width: 900px){
  .nav__brand-sub{ display:none; }
  .nav__menu{
    background: var(--navy);
    padding-top: 90px;
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav__menu a{ color: rgba(255,255,255,.9); }
  .site-header.is-solid .nav__menu a{ color: rgba(255,255,255,.9); }
  .nav__menu .btn{ background: var(--gold); color: var(--navy); }
}

/* Honour reduced-motion for the new hover transforms */
@media (prefers-reduced-motion: reduce){
  .card,.prog-card,.story,.btn{ transition:none !important; }
  .card:hover,.prog-card:hover,.story:hover,.btn:hover{ transform:none !important; }
}

/* =====================================================================
   ADJUSTMENTS: pure-white theme · hero spacing · emblem mark · sweet menu
   ===================================================================== */
:root{
  --cream:   #FFFFFF;   /* site background now pure white */
  --sand:    #F7F8FA;   /* barely-there tint for alternating sections */
  --surface: #FFFFFF;
}
body{ background:#FFFFFF; }
.section--grey{ background: var(--sand); }

/* Hero: keep the headline clear of the fixed header (fixes the overlap) */
.hero{ padding-top: clamp(104px, 14vh, 150px); padding-bottom: clamp(72px, 11vh, 120px); }
.hero__content{ max-width: 820px; }

/* Logo: clean emblem mark in the nav (no more flattened black box) */
.nav__logo{ gap:14px; align-items:center; }
.nav__mark{ height:48px; width:auto; transition: height .3s var(--ease); filter: drop-shadow(0 2px 6px rgba(0,0,0,.22)); }
.site-header.is-solid .nav__mark{ height:40px; filter: drop-shadow(0 2px 5px rgba(11,31,59,.14)); }

/* Sweet menu — soft pill links instead of underlines */
.nav__menu{ gap:6px; }
.nav__menu a{ border-radius:999px; padding:9px 16px; transition: background .2s var(--ease), color .2s var(--ease); }
.nav__menu a::after{ display:none; }
.nav__menu a:hover{ background: rgba(255,255,255,.14); color:#fff; }
.nav__menu a.active{ background: var(--gold); color: var(--navy); }
.site-header.is-solid .nav__menu a:hover{ background: rgba(11,31,59,.06); color: var(--navy); }
.site-header.is-solid .nav__menu a.active{ background: var(--gold); color: var(--navy); }

/* Footer keeps the full logo on its white chip — make sure it shows crisply */
.footer__brand .logo-chip img{ max-height:48px; width:auto; }

@media (max-width: 900px){
  .nav__mark{ height:42px; }
  .nav__menu a.active{ background: var(--gold); color: var(--navy); }
}

/* =====================================================================
   NAV v2 — solid white bar above the hero, reference-style menu,
   language switcher (EN/FR/PT/ES) and a "Give Now" CTA.
   ===================================================================== */
.site-header{
  position: sticky; top: 0; background: #fff;
  box-shadow: 0 4px 20px rgba(31,39,51,.07);
  border-bottom: 1px solid #eef0f3; padding-block: 10px;
}
.site-header.is-solid{ background:#fff; box-shadow: 0 6px 22px rgba(31,39,51,.11); padding-block: 8px; }
.nav{ gap: 18px; }

/* Logo: emblem only (brand text removed) */
.nav__brand{ display: none; }
.nav__mark{ height: 50px; width: auto; filter: none; transition: height .3s var(--ease); }
.site-header.is-solid .nav__mark{ height: 46px; }

/* Menu: single line, navy links, gold underline on hover/active (no wrapping) */
.nav__menu{ flex-wrap: nowrap; gap: 2px; }
.nav__menu a{
  color: var(--navy); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 8px 14px; border-radius: 0; background: none !important; position: relative;
}
.nav__menu a::after{
  display: block; content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px;
  background: var(--gold); border-radius: 3px; transform: scaleX(0); transform-origin: center;
  transition: transform .22s var(--ease);
}
.nav__menu a:hover{ color: var(--emerald); }
.nav__menu a:hover::after, .nav__menu a.active::after{ transform: scaleX(1); }
.nav__menu a.active{ color: var(--navy); }

/* Language switcher */
.lang-switch{ position: relative; }
.lang-btn{
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: #fff; border: 1.5px solid #e6e8ec; color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 9px 14px; border-radius: 999px; transition: border-color .2s var(--ease);
}
.lang-btn:hover{ border-color: var(--gold); }
.lang-btn svg{ width: 16px; height: 16px; }
.lang-btn .lang-chev{ width: 13px; height: 13px; opacity: .65; transition: transform .2s var(--ease); }
.lang-switch.open .lang-chev{ transform: rotate(180deg); }
.lang-menu{
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px; list-style: none; margin: 0;
  background: #fff; border: 1px solid #eef0f3; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 120;
}
.lang-switch:hover .lang-menu, .lang-switch.open .lang-menu, .lang-switch:focus-within .lang-menu{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu a{ display: block; padding: 10px 12px; border-radius: 9px; color: var(--navy); font-weight: 600; font-size: .9rem; }
.lang-menu a:hover{ background: #f4f6f8; }
.lang-menu a.is-current{ background: rgba(212,175,55,.16); }

/* "Give Now" pill with a circular arrow (brand gold) */
.btn--give{
  background: var(--gold); color: var(--navy); border-radius: 999px;
  padding: 8px 8px 8px 22px; gap: 12px; box-shadow: 0 10px 24px rgba(212,175,55,.30); font-weight: 800;
}
.btn--give:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px rgba(212,175,55,.4); }
.btn__circle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
}
.btn__circle svg{ width: 16px; height: 16px; }

/* Hero now sits below the header (no overlap) — trim the old clearance */
.hero{ padding-top: clamp(40px, 6vh, 72px); padding-bottom: clamp(56px, 9vh, 96px); }

@media (max-width: 900px){
  .nav__mark{ height: 44px; }
  .btn--give{ display: none; }              /* CTA lives in the drawer on mobile */
  .lang-switch{ margin-left: auto; }
  .nav__menu{ flex-wrap: wrap; }
  .nav__menu a{ color: #fff; }
  .nav__menu a::after{ display: none; }
  .nav__menu a:hover{ color: var(--gold); }
}

/* Inner-page hero: header is now in-flow, so trim the old top clearance */
.page-hero{ padding-top: clamp(56px, 8vh, 96px); padding-bottom: clamp(60px, 8vh, 90px); }

/* =====================================================================
   PRELOADER · MOBILE HAMBURGER/DRAWER · RESPONSIVE POLISH
   ===================================================================== */
#preloader{
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--navy); transition: opacity .5s ease, visibility .5s ease;
}
body.loaded #preloader{ opacity: 0; visibility: hidden; }
.preloader__inner{ text-align: center; padding: 20px; }
.preloader__logo{ width: 84px; height: auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.45)); animation: pl-pulse 1.6s ease-in-out infinite; }
.preloader__bar{ width: 180px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.16); margin: 26px auto 16px; overflow: hidden; }
.preloader__bar span{ display: block; height: 100%; width: 40%; border-radius: 4px; background: var(--gold); animation: pl-load 1.15s ease-in-out infinite; }
.preloader__text{ color: #aebbcd; font-family: var(--font-head); font-size: .82rem; letter-spacing: .06em; }
@keyframes pl-pulse{ 0%,100%{ transform: scale(1); opacity: .9 } 50%{ transform: scale(1.07); opacity: 1 } }
@keyframes pl-load{ 0%{ transform: translateX(-130%) } 100%{ transform: translateX(330%) } }

/* Hamburger bars must be dark on the white header */
.nav__toggle span{ background: var(--navy); }
.nav__toggle.open span{ background: var(--navy); }

/* Drawer header (brand) — only inside the mobile drawer */
.nav__menu-head{ display: none; }

/* Backdrop behind the mobile drawer */
.nav__backdrop{
  position: fixed; inset: 0; z-index: 98; background: rgba(11,31,59,.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.nav__backdrop.show{ opacity: 1; }

/* ---------- Mobile (≤900px) ---------- */
@media (max-width: 900px){
  .nav{ gap: 12px; }
  .nav__mark{ height: 42px; }

  /* Polished slide-in drawer */
  .nav__menu{
    position: fixed; inset: 0 0 0 auto; width: min(330px, 86vw); display: flex;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 88px 22px 40px; gap: 2px; transform: translateX(100%);
    transition: transform .35s var(--ease); z-index: 99; box-shadow: -24px 0 70px rgba(0,0,0,.45);
    overflow-y: auto;
  }
  .nav__menu.open{ transform: translateX(0); }
  .nav__menu-head{
    display: flex; align-items: center; gap: 12px; padding: 4px 10px 20px; margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav__menu-head img{ height: 40px; width: auto; }
  .nav__menu-head strong{ color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
  .nav__menu a{
    color: #fff !important; font-size: 1.06rem; padding: 15px 12px; border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,.07); white-space: normal;
  }
  .nav__menu a::after{ display: none; }
  .nav__menu a:hover, .nav__menu a.active{ background: rgba(255,255,255,.08); color: var(--gold) !important; }
  .nav__menu-cta{
    display: inline-flex !important; margin-top: 20px; justify-content: center;
    background: var(--gold) !important; color: var(--navy) !important; border-bottom: 0 !important;
    font-weight: 800; border-radius: 999px;
  }
  .btn--give{ display: none; }   /* full CTA is inside the drawer on mobile */
  .nav__toggle{ display: block; z-index: 101; }
}

/* ---------- Small phones (≤560px) ---------- */
@media (max-width: 560px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .hero__content h1{ font-size: clamp(1.9rem, 8.5vw, 2.6rem); line-height: 1.12; }
  .hero__content p{ font-size: 1rem; }
  .hero__actions{ gap: 10px; }
  .hero__actions .btn{ width: 100%; justify-content: center; }
  .section-head h2{ font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .container{ padding-inline: 18px; }
  .btn{ width: 100%; justify-content: center; }
  .nav__cta{ gap: 8px; }
  .stat__num, .stat-box b{ font-size: 1.8rem; }
  .page-hero h1{ font-size: clamp(1.7rem, 7.5vw, 2.3rem); }
  .split{ gap: 24px; }
  table{ font-size: .86rem; }
}

/* Make any media block fluid on small screens */
@media (max-width: 768px){
  img{ height: auto; }
  .split__media img, .about__media img, .media-round img{ width: 100%; }
}

/* =====================================================================
   NAV v3 — floating navy "pill" that overlays the hero (animated)
   White logo, centered links, gold Give-Now. Inspired by the reference.
   ===================================================================== */
.site-header{
  position: sticky; top: 0; inset: 0 0 auto 0; z-index: 100; background: transparent;
  border: 0; box-shadow: none;
  padding: clamp(10px, 2vw, 16px) clamp(12px, 3vw, 26px) clamp(8px, 1.4vw, 12px);
}
.site-header .nav{
  position: relative;
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: linear-gradient(135deg, #0B1F3B 0%, #16345f 60%, #1d4276 100%);
  -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 46px; padding: 9px 12px 9px 22px;
  box-shadow: 0 18px 50px rgba(11,31,59,.34);
  animation: header-drop .65s var(--ease) both .15s;
}
.site-header.is-solid .nav{ background: linear-gradient(135deg, #0B1F3B 0%, #15315a 60%, #1b3d6e 100%); box-shadow: 0 20px 54px rgba(11,31,59,.42); }
@keyframes header-drop{ from{ transform: translateY(-130%); opacity:0 } to{ transform: translateY(0); opacity:1 } }

/* White logo */
.nav__logo{ display:flex; align-items:center; flex:0 0 auto; }
.nav__logo-img{ height: 50px; width: auto; display:block; transition: height .3s var(--ease); }
.site-header.is-solid .nav__logo-img{ height: 44px; }

/* Centered links, white on navy, animated gold underline */
.nav__menu{ flex: 1; justify-content: center; gap: 4px; flex-wrap: nowrap; }
.nav__menu a{
  color: #fff; font-weight: 600; font-size: .95rem; white-space: nowrap; position: relative;
  padding: 9px 15px; border-radius: 999px; background: none !important;
  animation: nav-fade .5s var(--ease) both;
}
.nav__menu a::after{
  display:block; content:""; position:absolute; left:15px; right:15px; bottom:3px; height:2.5px;
  background: var(--gold); border-radius:3px; transform: scaleX(0); transform-origin:center;
  transition: transform .25s var(--ease);
}
.nav__menu a:hover{ color: var(--gold-soft); }
.nav__menu a:hover::after, .nav__menu a.active::after{ transform: scaleX(1); }
.nav__menu a.active{ color: #fff; }
@keyframes nav-fade{ from{ opacity:0; transform: translateY(-6px) } to{ opacity:1; transform: translateY(0) } }
.nav__menu a:nth-child(2){ animation-delay:.30s } .nav__menu a:nth-child(3){ animation-delay:.36s }
.nav__menu a:nth-child(4){ animation-delay:.42s } .nav__menu a:nth-child(5){ animation-delay:.48s }
.nav__menu a:nth-child(6){ animation-delay:.54s } .nav__menu a:nth-child(7){ animation-delay:.60s }
.nav__menu a:nth-child(8){ animation-delay:.66s }

/* Give Now keeps its gold pill; nudge the arrow on hover */
.nav__cta{ flex:0 0 auto; }
.btn--give .btn__circle{ transition: transform .25s var(--ease); }
.btn--give:hover .btn__circle{ transform: translate(2px,-2px); }

/* Hamburger bars are white on the navy pill */
.nav__toggle span{ background: #fff; }

/* Header sits ABOVE the hero now (in-flow), so heroes only need normal spacing */
.hero{ padding-top: clamp(36px, 6vh, 76px); padding-bottom: clamp(72px, 10vh, 110px); }
.page-hero{ padding-top: clamp(52px, 7vh, 90px); }

/* Drawer brand uses the white logo */
.nav__menu-head img{ height: 42px; width: auto; }

/* Footer: white logo, no chip */
.footer__brand .logo-chip{ display:none; }
.footer__logo{ height: 64px; width: auto; margin-bottom: 18px; }

/* ---------- Mobile pill ---------- */
@media (max-width: 900px){
  .site-header .nav{ border-radius: 30px; padding: 8px 10px 8px 16px; animation: header-drop .5s var(--ease) both .1s; }
  .nav__logo-img{ height: 40px; }
  .nav__menu{ flex: none; }
  .btn--give{ display:none; }
  .nav__toggle{ display:block; }
  .hero{ padding-top: clamp(96px, 18vh, 150px); }
  .page-hero{ padding-top: clamp(104px, 16vh, 150px); }
}

@media (prefers-reduced-motion: reduce){
  .site-header .nav, .nav__menu a{ animation: none !important; }
}

/* =====================================================================
   NAV v4 — mobile: normal top-dropdown menu (like the reference)
   ===================================================================== */
/* Keep hamburger bars white on the navy pill in every state */
.nav__toggle span,
.nav__toggle.open span,
.site-header.is-solid .nav__toggle span{ background: #fff; }

@media (max-width: 900px){
  .site-header .nav{ position: relative; }

  /* Dropdown panel under the bar instead of a side drawer */
  .nav__menu{
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; width: auto; inset-inline: 0;
    display: flex; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid #eef0f3; border-radius: 18px;
    box-shadow: 0 24px 60px rgba(11,31,59,.28);
    padding: 10px; gap: 2px; transform: translateY(-12px) scaleY(.97); transform-origin: top;
    opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    max-height: calc(100vh - 130px); overflow-y: auto; z-index: 120;
  }
  .nav__menu.open{ opacity: 1; visibility: visible; transform: translateY(0) scaleY(1); }
  .nav__menu-head{ display: none; }
  .nav__menu a{
    color: var(--navy) !important; font-size: 1.02rem; font-weight: 600;
    padding: 14px 16px; border-radius: 12px; border: 0; white-space: normal; background: none !important;
  }
  .nav__menu a::after{ display: none; }
  .nav__menu a:hover, .nav__menu a.active{ background: rgba(11,31,59,.06) !important; color: var(--emerald) !important; }
  .nav__menu-cta{
    display: inline-flex !important; justify-content: center; margin-top: 8px;
    background: var(--gold) !important; color: var(--navy) !important; border-radius: 999px; font-weight: 800;
    border: 0 !important;
  }

  /* No overlap: hero starts just below the in-flow header */
  .hero{ padding-top: clamp(26px, 5vh, 52px); }
  .page-hero{ padding-top: clamp(40px, 6vh, 72px); }
}

/* =====================================================================
   NAV v4 — menu ABOVE the hero (not overlapping) + mobile white dropdown
   ===================================================================== */
/* Header sits in normal flow at the top, so the hero starts below it */
.site-header{ position: sticky; top: 0; }

/* Hero/page-hero no longer need big clearance for an overlapping bar */
.hero{ padding-top: clamp(40px, 7vh, 84px); padding-bottom: clamp(64px, 9vh, 104px); }
.page-hero{ padding-top: clamp(52px, 7vh, 90px); }

/* ---------- Mobile: white drop-down menu (reference style) ---------- */
@media (max-width: 900px){
  .site-header .nav{ position: relative; }

  .nav__menu{
    position: absolute; top: calc(100% + 12px); left: 0; right: 0; width: auto;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border: 1px solid #eef0f3; border-radius: 18px; padding: 10px;
    box-shadow: 0 26px 60px rgba(11,31,59,.22);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    inset-inline: 0;
  }
  .nav__menu.open{ transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__menu-head{ display: none; }

  .nav__menu a{
    color: var(--navy) !important; font-size: 1rem; font-weight: 600; white-space: normal;
    padding: 14px 16px; border-radius: 12px; border-bottom: 0;
  }
  .nav__menu a::after{ display: none; }
  .nav__menu a:hover{ background: #f3f6fb; color: var(--navy) !important; }
  .nav__menu a.active{ background: #eef3fb; color: var(--emerald) !important; }

  .nav__menu-cta{
    display: inline-flex !important; justify-content: center; margin-top: 8px;
    background: var(--gold) !important; color: var(--navy) !important;
    border-radius: 999px; font-weight: 800; padding: 14px 18px;
  }

  /* Lighter backdrop suits a dropdown */
  .nav__backdrop{ background: rgba(11,31,59,.28); }
}

/* =====================================================================
   FLOATING WHATSAPP BUTTON
   ===================================================================== */
.wa-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float::before{
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover{ transform: scale(1.08); box-shadow: 0 16px 36px rgba(37,211,102,.55); color: #fff; }
@keyframes wa-pulse{ 0%{ transform: scale(1); opacity: .55 } 70%,100%{ transform: scale(1.7); opacity: 0 } }
@media (max-width: 560px){ .wa-float{ width: 52px; height: 52px; right: 16px; bottom: 16px; } }
@media (prefers-reduced-motion: reduce){ .wa-float::before{ animation: none; } }

/* =====================================================================
   FINAL (authoritative) — mobile hamburger DROP-DOWN menu
   Overrides every earlier mobile nav rule. Uses display toggle + a real
   drop animation so tapping the hamburger always reveals the menu.
   ===================================================================== */
@media (max-width: 900px){
  .site-header .nav{ position: relative; overflow: visible; }
  .nav__toggle{ display: block; }

  .nav__menu{
    position: absolute; top: calc(100% + 12px); left: 0; right: 0; inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid #eef0f3; border-radius: 18px; padding: 10px;
    box-shadow: 0 26px 60px rgba(11,31,59,.25); z-index: 130;
    max-height: calc(100vh - 120px); overflow-y: auto;
    display: none; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav__menu.open{ display: flex; animation: nav-drop .26s var(--ease) both; }
  @keyframes nav-drop{ from{ opacity: 0; transform: translateY(-12px) } to{ opacity: 1; transform: translateY(0) } }

  .nav__menu-head{ display: none; }
  .nav__menu a{
    color: var(--navy) !important; background: none !important; font-size: 1rem; font-weight: 600;
    padding: 14px 16px; border-radius: 12px; border: 0; white-space: normal;
  }
  .nav__menu a::after{ display: none; }
  .nav__menu a:hover, .nav__menu a.active{ background: #eef3fb !important; color: var(--emerald) !important; }
  .nav__menu-cta{
    display: inline-flex !important; justify-content: center; margin-top: 8px;
    background: var(--gold) !important; color: var(--navy) !important;
    border-radius: 999px; font-weight: 800; padding: 14px 18px; border: 0 !important;
  }
  .nav__backdrop{ background: rgba(11,31,59,.3); }
}
@media (prefers-reduced-motion: reduce){ .nav__menu.open{ animation: none; } }

/* =====================================================================
   CSS-ONLY HAMBURGER (no JavaScript needed) — most reliable method.
   A hidden checkbox toggled by the <label class="nav__toggle"> reveals the
   mobile menu and morphs the icon to an X.
   ===================================================================== */
.nav__check{ position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }
.nav__toggle{ -webkit-tap-highlight-color: transparent; }

@media (max-width: 900px){
  /* open the dropdown when the checkbox is checked */
  .nav__check:checked ~ .nav__menu{ display: flex !important; animation: nav-drop .26s var(--ease) both; }
  /* morph the hamburger into an X */
  .nav__check:checked ~ .nav__cta .nav__toggle span:nth-child(1){ transform: translateY(8.5px) rotate(45deg); }
  .nav__check:checked ~ .nav__cta .nav__toggle span:nth-child(2){ opacity: 0; }
  .nav__check:checked ~ .nav__cta .nav__toggle span:nth-child(3){ transform: translateY(-8.5px) rotate(-45deg); }
}
@media (prefers-reduced-motion: reduce){
  .nav__check:checked ~ .nav__menu{ animation: none; }
}
