*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* â”€â”€ BRAND PALETTE â”€â”€ */
  --navy:        #153B6A;   /* Deep Navy â€” primary brand, headings, footer */
  --cream-bg:    #FAF7F2;   /* Warm Cream â€” page & section backgrounds */
  --gold:        #557A62;   /* Green accent â€” labels, primary CTA */
  --sage-green:  #7D9B87;   /* Sage Green â€” wellbeing, secondary accents */
  --terra:       #3E78C2;   /* Sky Blue â€” emphasis (harmonises with Deep Navy) */
  --grey:        #6B7280;   /* Soft Grey â€” body & secondary text */

  /* â”€â”€ Semantic roles mapped onto the brand palette â”€â”€ */
  --sage:        #7D9B87;   /* Sage Green */
  --rose:        #A9C6B4;   /* Light sage â€” accent on dark surfaces */
  --rust:        #3E78C2;   /* Sky Blue â€” emphasis */
  --oak:         #557A62;   /* Green accent */
  --bone:        #EFE9DF;   /* deep warm-cream section */

  /* Derived tones */
  --sage-dark:   #5F7D6A;   /* darker sage */
  --sage-deep:   #153B6A;   /* Deep Navy â€” headings, dark sections */
  --sage-soft:   #DCE7DF;   /* pale sage tint */
  --rose-soft:   #E5EEE8;   /* pale sage tint */
  --rose-light:  #D3E1D8;   /* soft sage tint */
  --rust-dark:   #2C588F;   /* darker sky blue */
  --oak-dark:    #2C588F;   /* deep blue accent */
  --oak-soft:    #E2EBF6;   /* pale blue tint */

  --bone-2:      #F3EEE7;   /* lighter card surface */
  --bone-3:      #F6F2EB;   /* near-white warm */
  --cream:       #FAF7F2;   /* Warm Cream */

  --deep:        #12325A;   /* deep navy, dark sections */
  --deep-2:      #0E2B50;   /* darkest navy */

  --text:        #2F3A4A;   /* primary text (deep navy-slate) */
  --mid:         #6B7280;   /* Soft Grey â€” body / secondary */
  --soft:        #9AA1AC;   /* muted grey */
  --white:       #FFFFFF;
  --line:        rgba(21,59,106,0.14);

  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-xl: 42px;
  --sh-sm: 0 2px 10px rgba(58,54,46,0.06);
  --sh-md: 0 12px 36px rgba(58,54,46,0.10);
  --sh-lg: 0 26px 70px rgba(58,54,46,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; font-weight: 600; }
::selection { background: var(--rose); color: var(--sage-deep); }

/* â”€â”€ STICKY HEADER â”€â”€ */
.site-header { position: sticky; top: 0; z-index: 1000; }

.notif-bar {
  background: var(--sage-deep); color: rgba(255,255,255,0.88);
  padding: 9px 48px 9px 24px; display: flex; align-items: center;
  justify-content: center; gap: 6px; font-size: 13px; font-weight: 600; position: relative; flex-wrap: wrap;
}
.notif-bar > span.tag { color: var(--rose); font-weight: 800; margin-right: 4px; }
.notif-bar a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s; }
.notif-bar a:hover { color: var(--rose); text-decoration: underline; }
.notif-sep { opacity: 0.35; margin: 0 6px; }
.notif-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 16px; cursor: pointer; line-height: 1; padding: 4px;
}
.notif-close:hover { color: var(--white); }

/* â”€â”€ NAV â”€â”€ */
nav {
  background: rgba(251,248,243,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
nav.scrolled { box-shadow: var(--sh-sm); border-color: var(--line); background: rgba(251,248,243,0.96); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
/* â”€â”€ BRAND LOCKUP (badge logo + wordmark) â”€â”€ */
.brand-lockup { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-lockup img { height: 48px; width: 48px; display: block; }
.brand-lockup .bl-name { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 21px; line-height: 1.02; letter-spacing: -0.01em; color: var(--sage-deep); }
.brand-lockup .bl-name small { display: block; font-family: 'Nunito Sans', sans-serif; font-size: 9.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-top: 4px; }
footer .brand-lockup img { height: 54px; width: 54px; }
footer .brand-lockup .bl-name { color: #FAF7F2; }
footer .brand-lockup .bl-name small { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--mid); text-decoration: none; padding: 8px 14px; border-radius: 22px; transition: all 0.2s; }
.nav-links a:hover { background: var(--sage-soft); color: var(--sage-deep); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 9px 22px !important; border-radius: 24px !important; }
.nav-cta:hover { background: #45614F !important; color: var(--white) !important; box-shadow: var(--sh-sm); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--sage-deep); border-radius: 2px; }

.mob-menu { display: none; position: fixed; inset: 0; z-index: 2500; background: var(--cream); flex-direction: column; align-items: center; justify-content: center; gap: 26px; }
.mob-menu.open { display: flex; }
.mob-menu a { font-family: 'Fraunces', serif; font-size: 26px; color: var(--sage-deep); text-decoration: none; font-weight: 600; }
.mob-close { position: absolute; top: 22px; right: 22px; font-size: 26px; background: none; border: none; cursor: pointer; color: var(--sage); }

/* â”€â”€ BUTTONS â”€â”€ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--r-xl); font-size: 14.5px; font-weight: 700; font-family: 'Nunito Sans', sans-serif; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all 0.25s; letter-spacing: 0.01em; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--deep); border-color: var(--deep); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage-soft); transform: translateY(-2px); }
.btn-soft { background: var(--rose); color: var(--sage-deep); border-color: var(--rose); }
.btn-soft:hover { background: var(--rose-light); border-color: var(--rose-light); transform: translateY(-2px); }
.btn-light-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-light-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* â”€â”€ SECTION HELPERS â”€â”€ */
section { padding: 96px 24px; }
.inner { max-width: 1200px; margin: 0 auto; }
.sec-label { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sec-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.sec-title { font-size: clamp(28px, 3.4vw, 46px); font-weight: 600; color: var(--sage-deep); margin-bottom: 16px; letter-spacing: -0.01em; }
.sec-title em { font-style: italic; color: var(--rust); font-weight: 500; }
.sec-sub { font-size: 16.5px; color: var(--mid); line-height: 1.8; max-width: 620px; }
.sec-head { margin-bottom: 56px; }
.sec-head.c { text-align: center; }
.sec-head.c .sec-label { justify-content: center; }
.sec-head.c .sec-sub { margin: 0 auto; }

/* â”€â”€ PHOTO BAND (real imagery) â”€â”€ */
.photo-band { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); margin-bottom: 56px; }
.photo-band img { display: block; width: 100%; height: clamp(260px, 40vw, 440px); object-fit: cover; }
.photo-band .pb-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 32px 24px; color: var(--white);
  background: linear-gradient(to top, rgba(45,42,36,0.78) 0%, rgba(45,42,36,0.25) 55%, transparent 100%); }
.photo-band .pb-caption .pb-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
.photo-band .pb-caption p { font-family: 'Fraunces', serif; font-size: clamp(18px, 2.4vw, 26px); font-weight: 500; line-height: 1.35; max-width: 620px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

/* â”€â”€ HERO â”€â”€ */
.hero { position: relative; padding: 56px 24px 96px; overflow: hidden; background:
   radial-gradient(120% 90% at 85% -10%, var(--rose-soft) 0%, transparent 45%),
   radial-gradient(90% 80% at 5% 110%, var(--sage-soft) 0%, transparent 50%),
   var(--cream); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--sage-deep); font-size: 12px; font-weight: 800; padding: 7px 16px; border-radius: 22px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rust); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.6); opacity:0.45; } }
.hero-title { font-size: clamp(38px, 5vw, 62px); font-weight: 600; color: var(--sage-deep); margin-bottom: 22px; letter-spacing: -0.02em; line-height: 1.06; }
.hero-title em { font-style: italic; color: var(--rust); font-weight: 500; }
.hero-sub { font-size: 17px; line-height: 1.8; color: var(--mid); margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; color: var(--rust); line-height: 1; }
.hero-trust-label { font-size: 12.5px; color: var(--soft); font-weight: 600; margin-top: 4px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/4.4; background: linear-gradient(160deg, var(--sage) 0%, var(--oak) 100%); }
.hero-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-float { position: absolute; background: var(--white); border-radius: 18px; padding: 14px 18px; box-shadow: var(--sh-md); display: flex; align-items: center; gap: 12px; }
.hero-float .hf-emoji { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.hero-float .hf-title { font-size: 13.5px; font-weight: 800; color: var(--sage-deep); line-height: 1.2; }
.hero-float .hf-sub { font-size: 11.5px; color: var(--soft); font-weight: 600; }
.hf-1 { top: 22px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hf-2 { bottom: 28px; right: -20px; animation: floaty 6s ease-in-out infinite 0.6s; }
.hf-3 { bottom: 130px; left: -30px; animation: floaty 5.5s ease-in-out infinite 1.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* â”€â”€ MEANING (what is resilio) â”€â”€ */
.meaning { background: var(--white); }
.meaning-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.meaning-word { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(54px, 8vw, 100px); font-weight: 500; color: var(--sage-deep); line-height: 0.95; letter-spacing: -0.02em; }
.meaning-word span { display: block; font-style: normal; font-family: 'Nunito Sans', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); margin-top: 18px; }
.meaning-pron { font-size: 15px; color: var(--soft); font-weight: 600; margin-top: 10px; font-style: italic; }
.meaning-text .lead { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; color: var(--sage-deep); line-height: 1.4; margin-bottom: 20px; }
.meaning-text p { font-size: 16.5px; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
.meaning-text .accent { color: var(--rust); font-weight: 700; }

/* â”€â”€ WHY RESILIENCE MATTERS â”€â”€ */
.why { background: var(--bone); }
.why-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 64px; }
.why-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.why-chip { background: var(--white); border: 1px solid var(--line); color: var(--mid); font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 30px; transition: all 0.2s; }
.why-chip:hover { border-color: var(--rust); color: var(--rust); transform: translateY(-2px); }
.why-goal { background: var(--sage-deep); color: var(--white); border-radius: var(--r-lg); padding: 40px 38px; align-self: stretch; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.why-goal::before { content: 'â€œ'; position: absolute; top: -10px; right: 24px; font-family: 'Fraunces', serif; font-size: 120px; color: rgba(255,255,255,0.08); line-height: 1; }
.why-goal p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 14px; position: relative; }
.why-goal .punch { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600; color: var(--rose); line-height: 1.3; }
.why-includes-head { text-align: center; margin-bottom: 34px; }
.why-includes-head h3 { font-size: clamp(22px, 2.6vw, 30px); color: var(--sage-deep); }
.resilience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; display: flex; align-items: center; gap: 16px; transition: all 0.3s; }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.res-emoji { width: 52px; height: 52px; border-radius: 14px; background: var(--rose-soft); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.res-card p { font-size: 15.5px; font-weight: 700; color: var(--sage-deep); line-height: 1.35; }

/* â”€â”€ VISION & MISSION â”€â”€ */
.vm { background: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { border-radius: var(--r-lg); padding: 46px 42px; position: relative; overflow: hidden; }
.vm-card.vision { background: linear-gradient(155deg, var(--sage) 0%, var(--sage-dark) 100%); color: var(--white); }
.vm-card.mission { background: linear-gradient(155deg, var(--rust) 0%, var(--rust-dark) 100%); color: var(--white); }
.vm-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px; }
.vm-card .vm-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.vm-card h3 { font-size: clamp(22px, 2.6vw, 28px); color: var(--white); line-height: 1.4; font-weight: 500; }

/* â”€â”€ PILLARS (impact framework) â”€â”€ */
.pillars { background: var(--bone-3); }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 34px; transition: all 0.3s; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--accent, var(--sage)); transition: height 0.35s; }
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.pillar-card:hover::before { height: 100%; }
.pillar-top { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.pillar-num { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--white); width: 46px; height: 46px; border-radius: 13px; background: var(--accent, var(--sage)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-card h3 { font-size: 21px; color: var(--sage-deep); line-height: 1.25; }
.pillar-card > p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pillar-tag { font-size: 12.5px; font-weight: 700; padding: 6px 13px; border-radius: 20px; background: var(--bone-2); color: var(--mid); }
.pc-1 { --accent: var(--oak); } .pc-2 { --accent: var(--oak); } .pc-3 { --accent: var(--oak); } .pc-4 { --accent: var(--oak); }
.pc-4 .pillar-num { color: var(--white); }

/* â”€â”€ CORE VALUES â”€â”€ */
.values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 32px 28px; border-radius: var(--r-md); background: var(--bone-3); border: 1px solid var(--line); transition: all 0.3s; }
.value-card:hover { background: var(--white); box-shadow: var(--sh-md); transform: translateY(-4px); }
.value-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 16px; background: var(--rose-soft); }
.value-card h4 { font-size: 19px; color: var(--sage-deep); margin-bottom: 7px; }
.value-card p { font-size: 14.5px; color: var(--mid); line-height: 1.6; }

/* â”€â”€ WHO WE SERVE â”€â”€ */
.serve { background: var(--bone); }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serve-card { background: var(--white); border-radius: var(--r-lg); padding: 34px 26px; text-align: center; border: 1px solid var(--line); transition: all 0.3s; }
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.serve-emoji { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.serve-card:nth-child(1) .serve-emoji { background: var(--sage-soft); }
.serve-card:nth-child(2) .serve-emoji { background: var(--rose-soft); }
.serve-card:nth-child(3) .serve-emoji { background: var(--oak-soft); }
.serve-card:nth-child(4) .serve-emoji { background: var(--rose-light); }
.serve-card h4 { font-size: 20px; color: var(--sage-deep); margin-bottom: 8px; }
.serve-card p { font-size: 14.5px; color: var(--mid); line-height: 1.6; }

/* â”€â”€ HOW WE CREATE CHANGE â”€â”€ */
.change { background: var(--white); }
.change-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.change-card { background: var(--bone-3); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.change-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.change-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); background: var(--white); }
.change-card:hover::after { transform: scaleX(1); }
.change-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--sage-soft); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; }
.change-num { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oak-dark); margin-bottom: 8px; }
.change-card h3 { font-size: 20px; color: var(--sage-deep); margin-bottom: 10px; line-height: 1.25; }
.change-card p { font-size: 15px; color: var(--mid); line-height: 1.7; }
.change-card.wide { grid-column: span 1; }

/* â”€â”€ PROMISE â”€â”€ */
.promise { background: var(--sage-deep); position: relative; overflow: hidden; }
.promise::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 10%, rgba(209,169,165,0.18), transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(165,139,113,0.16), transparent 50%); }
.promise-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }
.promise .sec-label { color: var(--rose); justify-content: center; }
.promise .sec-label::before { background: var(--rose); }
.promise h2 { font-size: clamp(28px, 3.6vw, 44px); color: var(--white); margin-bottom: 12px; font-weight: 500; }
.promise h2 em { font-style: italic; color: var(--rose); }
.promise > .promise-inner > p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.promise-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.promise-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 28px 18px; transition: all 0.3s; }
.promise-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); }
.promise-emoji { font-size: 32px; margin-bottom: 14px; display: block; }
.promise-item p { font-size: 14.5px; color: var(--white); font-weight: 700; line-height: 1.4; }

/* â”€â”€ SKILLS NOBODY TAUGHT â”€â”€ */
.skills { background: var(--bone); }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.skills-list { display: flex; flex-direction: column; gap: 14px; }
.skill-line { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; transition: all 0.3s; }
.skill-line:hover { transform: translateX(6px); border-color: var(--rust); box-shadow: var(--sh-sm); }
.skill-x { width: 30px; height: 30px; border-radius: 50%; background: var(--rose-soft); color: var(--rust); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.skill-line p { font-size: 16px; color: var(--text); font-weight: 600; }
.skills-text .sec-title { margin-bottom: 22px; }
.skills-text p { font-size: 17px; color: var(--mid); line-height: 1.85; margin-bottom: 18px; }
.skills-text .closing { background: var(--white); border-left: 4px solid var(--rust); border-radius: 0 14px 14px 0; padding: 22px 26px; font-family: 'Fraunces', serif; font-size: 19px; font-style: italic; color: var(--sage-deep); line-height: 1.6; }

/* â”€â”€ IMPACT STATS â”€â”€ */
.impact { background: var(--deep); }
.impact-inner { max-width: 1100px; margin: 0 auto; }
.impact-head { text-align: center; margin-bottom: 52px; }
.impact-head .sec-label { color: var(--rose); justify-content: center; }
.impact-head .sec-label::before { background: var(--rose); }
.impact-head h2 { font-size: clamp(24px, 3vw, 38px); color: var(--white); font-weight: 500; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: var(--r-md); overflow: hidden; }
.impact-item { text-align: center; padding: 38px 22px; background: var(--deep-2); }
.impact-num { font-family: 'Fraunces', serif; font-size: 46px; font-weight: 600; color: var(--rose); line-height: 1; margin-bottom: 10px; }
.impact-label { font-size: 13.5px; color: rgba(255,255,255,0.68); font-weight: 600; line-height: 1.5; }
.impact-note { margin-top: 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 24px 30px; text-align: center; font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.impact-note strong { color: var(--rose); }

/* â”€â”€ GET INVOLVED â”€â”€ */
.involved { background: var(--bone-3); }
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inv-card { background: var(--white); border-radius: var(--r-lg); padding: 38px 34px; border: 1px solid var(--line); transition: all 0.3s; display: flex; flex-direction: column; }
.inv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.inv-card.feat { background: linear-gradient(160deg, var(--rust) 0%, var(--rust-dark) 100%); border-color: transparent; }
.inv-icon { width: 66px; height: 66px; border-radius: 18px; background: var(--sage-soft); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 20px; }
.inv-card.feat .inv-icon { background: rgba(255,255,255,0.18); }
.inv-card h3 { font-size: 23px; color: var(--sage-deep); margin-bottom: 10px; }
.inv-card.feat h3 { color: var(--white); }
.inv-card > p { font-size: 14.5px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.inv-card.feat > p { color: rgba(255,255,255,0.82); }
.inv-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.inv-tag { background: var(--bone-2); color: var(--mid); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 14px; }
.inv-card.feat .inv-tag { background: rgba(255,255,255,0.18); color: var(--white); }
.btn-card { display: block; width: 100%; padding: 13px; border-radius: 26px; font-size: 14px; font-weight: 700; text-align: center; text-decoration: none; background: var(--navy); color: var(--white); border: 2px solid var(--navy); font-family: 'Nunito Sans', sans-serif; cursor: pointer; transition: all 0.2s; margin-top: auto; }
.btn-card:hover { background: var(--deep); border-color: var(--deep); }
.inv-card.feat .btn-card { background: var(--white); color: var(--navy); border-color: var(--white); }
.inv-card.feat .btn-card:hover { background: var(--rose-soft); border-color: var(--rose-soft); }

/* â”€â”€ ADVISORY â”€â”€ */
.advisory { background: var(--white); }
.advisory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.adv-card { background: var(--bone-3); border-radius: var(--r-lg); padding: 32px 28px; text-align: center; border: 1px solid var(--line); }
.adv-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--sage-soft); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; border: 3px solid var(--white); box-shadow: var(--sh-sm); }
.adv-card h4 { font-size: 18px; color: var(--sage-deep); margin-bottom: 4px; }
.adv-role { font-size: 13px; color: var(--rust); font-weight: 700; margin-bottom: 12px; }
.adv-card p { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
.adv-badge { display: inline-block; background: var(--oak-soft); color: var(--oak-dark); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 12px; margin-top: 14px; letter-spacing: 0.04em; }

/* â”€â”€ VISION CTA â”€â”€ */
.cta { background:
   radial-gradient(110% 90% at 90% 0%, var(--rose-soft) 0%, transparent 50%),
   var(--bone); text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-chip { display: inline-block; background: var(--white); color: var(--rust); font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 18px; border-radius: 22px; margin-bottom: 24px; border: 1px solid var(--line); }
.cta h2 { font-size: clamp(30px, 4vw, 50px); color: var(--sage-deep); margin-bottom: 18px; font-weight: 600; letter-spacing: -0.01em; }
.cta h2 em { font-style: italic; color: var(--rust); font-weight: 500; }
.cta p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 38px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ CONTACT â”€â”€ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info p.lead { font-size: 16.5px; color: var(--mid); line-height: 1.8; margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--mid); }
.ci-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--sage-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-item a { color: var(--rust); font-weight: 700; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.helpline-box { margin-top: 28px; background: var(--rose-soft); border: 1px solid var(--rose-light); border-radius: var(--r-md); padding: 22px 24px; }
.helpline-box strong { font-size: 13.5px; color: var(--rust-dark); display: block; margin-bottom: 8px; }
.helpline-box p { font-size: 13.5px; color: var(--mid); line-height: 1.75; }
.helpline-box span { color: var(--sage-deep); font-weight: 800; }
.contact-cta-box { background: var(--bone-3); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 46px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; }
.contact-cta-box .emoji { font-size: 48px; }
.contact-cta-box h3 { font-size: 27px; color: var(--sage-deep); }
.contact-cta-box p { font-size: 15.5px; color: var(--mid); line-height: 1.7; }

/* â”€â”€ FOOTER â”€â”€ */
footer { background: var(--deep-2); color: rgba(255,255,255,0.72); padding: 64px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 46px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-tagline { font-family: 'Fraunces', serif; font-size: 14px; color: var(--rose); font-style: italic; margin-top: 12px; }
.footer-social { display: flex; gap: 9px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.footer-social a:hover { background: var(--rust); }
.footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.4); gap: 12px; }

/* â”€â”€ MODAL â”€â”€ */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(45,42,36,0.6); backdrop-filter: blur(4px); z-index: 3000; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--r-lg); width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; box-shadow: var(--sh-lg); position: relative; animation: popIn 0.32s cubic-bezier(.2,.8,.2,1); }
@keyframes popIn { from { transform: scale(0.94) translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-header { padding: 30px 34px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-header-text h3 { font-size: 24px; color: var(--sage-deep); margin-bottom: 5px; }
.modal-header-text p { font-size: 14px; color: var(--soft); }
.modal-close { background: var(--bone-2); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--mid); transition: all 0.2s; }
.modal-close:hover { background: var(--rose-soft); color: var(--rust); }
.modal-body { padding: 26px 34px 34px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; color: var(--mid); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; background: var(--bone-3); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); font-family: 'Nunito Sans', sans-serif; font-size: 14.5px; color: var(--text); outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 92px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { display: none; background: var(--sage-soft); color: var(--sage-deep); border: 1px solid var(--sage); border-radius: var(--r-sm); padding: 18px; font-size: 14.5px; font-weight: 600; line-height: 1.6; margin-top: 12px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG â€” listing page
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-list { background: var(--cream); }
.blog-featured {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-md); margin-bottom: 48px;
}
.blog-featured .bf-media { position: relative; min-height: 320px; }
.blog-featured .bf-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-featured .bf-body { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.blog-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--rose-soft); color: var(--oak-dark); font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
.blog-featured h2 { font-size: clamp(26px, 3vw, 36px); color: var(--sage-deep); line-height: 1.18; margin-bottom: 16px; font-weight: 600; letter-spacing: -0.01em; }
.blog-featured p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 22px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--soft); font-weight: 600; margin-bottom: 24px; }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--soft); }
.blog-read { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--navy); color: var(--white); font-size: 14px; font-weight: 700; padding: 12px 26px; border-radius: var(--r-xl); text-decoration: none; transition: all 0.25s; }
.blog-read:hover { background: var(--deep); transform: translateY(-2px); box-shadow: var(--sh-md); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.blog-card .bc-media { height: 190px; overflow: hidden; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .bc-media img { transform: scale(1.05); }
.blog-card .bc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 20px; color: var(--sage-deep); line-height: 1.28; margin-bottom: 10px; }
.blog-card p { font-size: 14.5px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-card a.bc-link { font-size: 13.5px; font-weight: 800; color: var(--rust); text-decoration: none; }
.blog-card a.bc-link:hover { text-decoration: underline; }
.blog-soon { background: var(--bone-3); border: 1px dashed var(--line); box-shadow: none; }
.blog-soon .bc-media { height: 190px; background: var(--sage-soft); display: flex; align-items: center; justify-content: center; font-size: 44px; }
.blog-soon:hover { transform: none; box-shadow: none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG â€” article page
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.article { background: var(--cream); padding-top: 60px; }
.article-inner { max-width: 760px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--mid); text-decoration: none; margin-bottom: 30px; transition: color 0.2s; }
.article-back:hover { color: var(--rust); }
.article-head { text-align: center; margin-bottom: 40px; }
.article-cat { display: inline-flex; align-items: center; gap: 8px; background: var(--rose-soft); color: var(--oak-dark); font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; margin-bottom: 22px; }
.article-title { font-size: clamp(32px, 4.4vw, 52px); color: var(--sage-deep); line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 20px; }
.article-title em { font-style: italic; color: var(--rust); font-weight: 500; }
.article-dek { font-family: 'Fraunces', serif; font-size: clamp(18px, 2.2vw, 22px); font-style: italic; font-weight: 400; color: var(--mid); line-height: 1.5; max-width: 620px; margin: 0 auto 28px; }
.article-byline { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 13.5px; color: var(--soft); font-weight: 600; }
.article-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--soft); }
.article-byline strong { color: var(--sage-deep); font-weight: 800; }

.article-figure { margin: 0 0 44px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.article-figure.wide { max-width: 1080px; margin-left: auto; margin-right: auto; }
.article-figure img { display: block; width: 100%; height: clamp(240px, 42vw, 480px); object-fit: cover; }
.article-figure figcaption { font-size: 12.5px; color: var(--soft); text-align: center; padding: 12px 20px 0; font-style: italic; }
.article-figure.wide figcaption { padding-bottom: 4px; }

.article-body { font-size: 18px; line-height: 1.85; color: var(--text); }
.article-body > p { margin-bottom: 24px; }
.article-body > p.lead { font-size: 20.5px; line-height: 1.7; color: var(--sage-deep); font-weight: 500; }
.article-body h2 { font-size: clamp(24px, 3vw, 32px); color: var(--sage-deep); line-height: 1.22; margin: 48px 0 18px; letter-spacing: -0.01em; }
.article-body h2::before { content: ''; display: block; width: 44px; height: 3px; background: var(--rose); border-radius: 2px; margin-bottom: 20px; }
.article-body strong { color: var(--sage-deep); font-weight: 800; }
.article-body em { font-style: italic; }

.pullquote { margin: 44px 0; padding: 8px 0 8px 34px; border-left: 4px solid var(--rust); }
.pullquote p { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.8vw, 30px); font-style: italic; font-weight: 400; color: var(--sage-deep); line-height: 1.4; }

.ref-book { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--oak); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 22px 26px; margin: 32px 0; box-shadow: var(--sh-sm); }
.ref-book .rb-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.ref-book .rb-title { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--sage-deep); font-style: italic; margin-bottom: 3px; }
.ref-book .rb-author { font-size: 13px; color: var(--rust); font-weight: 700; margin-bottom: 8px; }
.ref-book p { font-size: 15px; color: var(--mid); line-height: 1.65; margin: 0; }

.stat-quote { margin: 40px 0; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--rust); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 32px 38px; box-shadow: var(--sh-sm); display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; }
.stat-quote .sq-num { font-family: 'Fraunces', serif; font-size: clamp(46px, 7vw, 66px); font-weight: 600; color: var(--rust); line-height: 0.95; text-align: center; }
.stat-quote .sq-num small { display: block; font-family: 'Nunito Sans', sans-serif; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-top: 10px; }
.stat-quote blockquote { font-family: 'Fraunces', serif; font-size: 16.5px; font-style: italic; color: var(--sage-deep); line-height: 1.6; margin: 0; }
.stat-quote cite { display: block; font-style: normal; font-family: 'Nunito Sans', sans-serif; font-size: 12.5px; color: var(--soft); font-weight: 600; margin-top: 12px; }
.stat-quote cite a { color: var(--rust); text-decoration: none; }
.stat-quote cite a:hover { text-decoration: underline; }

.country-list { margin: 28px 0 8px; display: flex; flex-direction: column; gap: 14px; }
.country-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px; transition: all 0.25s; }
.country-item:hover { border-color: var(--sage); box-shadow: var(--sh-sm); transform: translateX(4px); }
.country-item .ci-flag { font-size: 20px; margin-right: 8px; }
.country-item strong { font-family: 'Fraunces', serif; font-style: normal; font-size: 18px; color: var(--sage-deep); font-weight: 600; }
.country-item p { font-size: 15.5px; color: var(--mid); line-height: 1.65; margin: 6px 0 0; }

.article-end { margin: 48px 0 0; padding: 40px 42px; background: var(--sage-deep); border-radius: var(--r-lg); text-align: center; position: relative; overflow: hidden; }
.article-end::before { content: 'â€œ'; position: absolute; top: -18px; left: 28px; font-family: 'Fraunces', serif; font-size: 130px; color: rgba(255,255,255,0.08); line-height: 1; }
.article-end p { position: relative; font-family: 'Fraunces', serif; font-size: clamp(22px, 3vw, 30px); font-style: italic; color: var(--white); line-height: 1.4; }
.article-end p em { color: var(--rose); }

.article-cta { max-width: 760px; margin: 56px auto 0; background: var(--bone-3); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px 44px; text-align: center; }
.article-cta h3 { font-size: 25px; color: var(--sage-deep); margin-bottom: 10px; }
.article-cta p { font-size: 15.5px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.article-cta .cta-btns { justify-content: center; }
.article-share { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-share span { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }
.article-share a { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--mid); text-decoration: none; transition: all 0.2s; }
.article-share a:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .meaning-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .meaning-word span { margin-left: auto; margin-right: auto; }
  .why-top { grid-template-columns: 1fr; gap: 36px; }
  .vm-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .change-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .skills-grid { grid-template-columns: 1fr; gap: 40px; }
  .resilience-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .bf-media { min-height: 260px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .involved-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .advisory-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .change-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .resilience-grid { grid-template-columns: 1fr; }
  section { padding: 70px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .blog-featured .bf-body { padding: 34px 28px; }
  .article-body { font-size: 17px; }
  .pullquote { margin: 34px 0; padding-left: 24px; }
  .ref-book { padding: 20px; }
  .article-end { padding: 32px 26px; }
  .article-cta { padding: 32px 26px; }
  .stat-quote { grid-template-columns: 1fr; gap: 14px; padding: 26px 24px; text-align: center; }
  .stat-quote .sq-num { text-align: center; }
  .country-item { padding: 18px 20px; }
  .notif-bar { font-size: 12px; padding: 8px 40px 8px 16px; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hf-1,.hf-2,.hf-3,.hero-badge-dot { animation: none; }
  html { scroll-behavior: auto; }
}
