/* ==========================================================================
   CPYE — Centre for Peacebuilding and Youth Empowerment
   Design tokens derived from the organisation logo:
   the gradient peace arc (amber -> coral -> violet -> blue) and the five
   reaching figures (red, violet, green, sky blue, deep blue) over the
   "EFFORT · LEARN · GROW" band.
   ========================================================================== */

:root{
  /* ---- Brand colour tokens (from logo) ---- */
  --color-primary:        #17436F;   /* deep blue — outer figure / trust, headers */
  --color-primary-dark:   #0F2E4E;
  --color-primary-light:  #4A8FC2;   /* sky-blue figure — hover / secondary blue */
  --color-secondary:      #E0912E;   /* amber from the "EFFORT LEARN GROW" band */
  --color-secondary-dark: #B9701A;
  --color-accent-green:   #3F8F4C;   /* green figure — growth, peace, stats */
  --color-accent-violet:  #6A3E86;   /* violet figure — used sparingly, tags/labels */
  --color-accent-coral:   #D95B4B;   /* red figure, muted — used sparingly */

  /* ---- Neutral / surface tokens ---- */
  --color-text:        #1C2A38;
  --color-text-muted:  #55636F;
  --color-text-soft:   #7B8791;
  --color-bg:          #FBF8F2;      /* warm paper, echoes the cream around the logo */
  --color-bg-alt:      #F1EBDC;
  --color-surface:     #FFFFFF;
  --color-border:      #E4DDCB;

  /* ---- Signature gradient (traces the peace-sign arc) ---- */
  --gradient-peace: linear-gradient(100deg, #F0A93E 0%, #E0703F 28%, #C4514F 46%, #7C4A88 68%, #3F72A8 88%, #17436F 100%);

  /* ---- Type ---- */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  /* ---- Layout ---- */
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(23, 67, 111, 0.06);
  --shadow-md: 0 12px 32px rgba(23, 67, 111, 0.10);
  --shadow-lg: 0 20px 50px rgba(23, 67, 111, 0.14);

  --nav-height: 82px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p{ margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.container{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section{ padding: 38px 0; }
.section--alt{ background: var(--color-bg-alt); }
.section--primary{ background: var(--color-primary); color: #EAF1F8; }
.section--primary h2, .section--primary h3{ color: #FFFFFF; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 1px;
  border-radius: 2px;
  background: var(--gradient-peace);
  display: inline-block;
}
.section--primary .eyebrow{ color: #F3C079; }
.eyebrow--light{ color: #F3C079; }
.cta-band--blue{ background: var(--color-primary); }
.btn-row--top{ margin-top: 26px; }
.project-subtitle{ color: var(--color-text-muted); font-weight: 700; margin-bottom: 6px; }

.section-head{
  max-width: 760px;
  margin: 0 0 16px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.05; white-space: nowrap; }
.project-preview-heading{ font-size: clamp(1.45rem, 2.4vw, 2rem) !important; }
.section-head p{ color: var(--color-text-muted); font-size: 1.05rem; }

.arc-rule{
  width: 64px;
  height: 6px;
  border-radius: 6px;
  background: var(--gradient-peace);
  margin: 8px 0 10px;
}
.center .arc-rule{ margin-left: auto; margin-right: auto; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{
  background: #fff;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: inherit;
}
.btn-outline:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.btn-dark{
  background: var(--color-primary);
  color: #fff;
}
.btn-dark:hover{
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost{
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-ghost:hover{ background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }

.btn-row{ display: flex; gap: 16px; flex-wrap: wrap; }

.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 45px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 86, 45, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover{ background: #1ebe5d; transform: translateY(-5px) scale(1.14); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.2), 0 16px 34px rgba(16, 86, 45, 0.42); animation-play-state: paused; }
.whatsapp-float svg{ width: 31px; height: 31px; fill: currentColor; }
@keyframes whatsapp-pulse{
  0%, 100%{ transform: scale(1); box-shadow: 0 10px 24px rgba(16, 86, 45, 0.28); }
  50%{ transform: scale(1.08); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.48); }
}

.tag{
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent-violet);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 67, 111, 0.10);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.navbar.is-scrolled{
  background: rgba(251, 248, 242, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 70px;
}
.navbar--inner{
  background: rgba(251, 248, 242, 0.88);
}
.navbar--inner.is-scrolled{
  background: rgba(251, 248, 242, 0.98);
}
.navbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100%;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  line-height: 1;
}
.brand img{
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: height 0.3s ease, width 0.3s ease;
}
.navbar.is-scrolled .brand img{ height: 42px; width: 42px; }
.brand-text{ max-width: 250px; line-height: 1.04; }
.brand-text strong{
  display: block;
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--color-primary-dark);
  letter-spacing: 0;
  line-height: 1.1;
}
.brand-text span{
  display: none;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  font-weight: 700;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient-peace);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--color-primary); }

.nav-cta{ display: flex; align-items: center; gap: 18px; }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 8px;
}
.hamburger span{
  display: block;
  height: 3px;
  width: 24px;
  margin: 0 auto;
  background: var(--color-primary-dark);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding: calc(var(--nav-height) + 18px) 0 26px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}
.hero-copy h1{
  font-size: clamp(2.2rem, 3.7vw, 3.15rem);
  margin-bottom: 0.32em;
  letter-spacing: -0.04em;
}
.hero-copy h1 em{ font-style: normal; color: var(--color-secondary-dark); }
.hero-copy p{
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: 1.1rem;
  text-align: justify;
}
.hero-cta{
  margin: 0 0 1.2rem;
  padding: 12px 22px;
  font-size: 0.9rem;
}
.hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  margin-left: 8px;
}
.hero-ring{
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
.hero-figure{
  width: min(500px, 100%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-surface);
  outline: 2px solid rgba(170, 154, 135, 0.48);
  outline-offset: 3px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.hero-figure:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(23, 67, 111, 0.15);
}
.hero-figure-img{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.hero-figure-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-figure:hover .hero-figure-img img{
  transform: scale(1.02);
}
.hero-figure svg{ width: 62%; height: 62%; position: relative; z-index: 2; }
.hero-figure-caption{
  position: absolute;
  left: 50%; bottom: -12px;
  z-index: 3;
  background: rgba(15, 46, 78, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  text-align: center;
  width: max-content;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-stats{
  display: flex;
  gap: 20px 26px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary);
}
.hero-stats div span{
  font-size: 0.75rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-country-flags{
  display: none;
  margin: 12px 0 18px;
}
.hero-country-flags .flags{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-country-flags .flags img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(23,67,111,0.15);
  margin-left: -6px;
  background: #fff;
}
.hero-country-flags .flags img:first-child{ margin-left: 0; }

@media (max-width: 480px){
  .hero .container{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-copy{
    order: 0;
  }
  .hero-copy h1{
    margin-bottom: 0.38em;
  }
  .hero-copy p{
    font-size: 0.96rem;
    text-align: justify;
    margin-bottom: 0.9rem;
  }
  .hero-cta{
    display: none;
  }
  .hero-country-flags{
    display: flex;
    order: 0;
    margin: 0 0 10px;
    width: fit-content;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(23,67,111,0.08);
    border-radius: 999px;
    padding: 6px 8px;
  }
  .hero-country-flags .flags img{
    width: 24px;
    height: 24px;
    margin-left: -5px;
  }
  .hero-visual{
    order: 2;
    min-height: 220px;
    margin-top: 18px;
  }
  .hero-figure{
    width: min(290px, 78vw);
    aspect-ratio: 1.35 / 1;
    border-radius: 18px;
    box-shadow: none;
  }
  .hero-figure-img{
    border-radius: 18px;
  }
  .hero-figure-caption{
    font-size: 0.68rem;
    padding: 8px 12px;
    bottom: -10px;
  }
  .hero-stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 6px;
    margin-top: 0;
    padding: 6px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    border: 1px solid rgba(23,67,111,0.06);
    order: 3;
  }
  .hero-stats div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 6px 2px;
  }
  .hero-stats div strong{ font-size: 1rem; }
  .hero-stats div span{ font-size: 0.5rem; }
}

.hero-moments{
  display: none;
}

/* ===========================================================================
   Home photo slideshow
   ========================================================================== */
.intro-section{ padding-bottom: 26px; }
.home-slideshow-section{ padding: 10px 0 18px; }
.home-slideshow-heading{ text-align: center; margin-bottom: 16px; }
.home-slideshow-heading .eyebrow{ margin-bottom: 5px; }
.home-slideshow-heading h2{ margin: 0; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.photo-marquee{
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  border-radius: var(--radius-lg);
}
.photo-marquee::before, .photo-marquee::after{
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
}
.photo-marquee::before{ left: 0; background: linear-gradient(90deg, var(--color-bg-alt), transparent); }
.photo-marquee::after{ right: 0; background: linear-gradient(270deg, var(--color-bg-alt), transparent); }
.photo-marquee-track{
  display: flex;
  width: max-content;
  gap: 12px;
  animation: photo-marquee 36s linear infinite;
}
.photo-marquee:hover .photo-marquee-track{ animation-play-state: paused; }
.photo-marquee-set{ display: flex; gap: 12px; }
.marquee-photo{
  position: relative;
  flex: 0 0 230px;
  height: 290px;
  margin: 0;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  background: var(--color-primary-dark);
  box-shadow: 0 12px 24px rgba(23,67,111,0.12);
}
.marquee-photo:nth-child(3n + 2){ height: 250px; margin-top: 20px; }
.marquee-photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.marquee-photo:hover img{ transform: scale(1.08); }
.marquee-photo::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,31,53,.68), transparent 52%); }
.marquee-photo figcaption{ position: absolute; z-index: 1; right: 15px; bottom: 13px; left: 15px; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
@keyframes photo-marquee{ to{ transform: translateX(calc(-50% - 6px)); } }
.home-slideshow{
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border: 8px solid rgba(255,255,255,0.72);
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-primary-dark);
  box-shadow: 0 28px 55px rgba(23,67,111,0.22);
}
.home-slideshow::before{
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 20px;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-peace);
}
.slideshow-track{
  position: relative;
  height: clamp(320px, 38vw, 390px);
  min-height: 0;
}
.slideshow-slide{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 5s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  background: #fff;
}
.slideshow-slide.is-active{ opacity: 1; pointer-events: auto; transform: scale(1); }
.slide-image{ position: relative; overflow: hidden; }
.slideshow-slide img{ width: 100%; height: 100%; object-fit: cover; }
.slide-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,32,54,0.62) 0%, rgba(15,46,78,0.08) 62%), linear-gradient(0deg, rgba(8,28,48,0.76) 0%, transparent 48%);
}
.slideshow-slide figcaption{
  position: absolute;
  z-index: 1;
  left: clamp(24px, 5vw, 56px);
  bottom: clamp(32px, 6vw, 64px);
  max-width: 14ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0,0,0,0.2);
}
.slideshow-slide figcaption span{
  display: block;
  margin-bottom: 12px;
  color: #F5C77B;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.slideshow-control{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}
.slideshow-control:hover{ background: var(--color-secondary); color: var(--color-primary-dark); transform: translateY(-50%) scale(1.08); }
.slideshow-prev{ left: 22px; }
.slideshow-next{ right: 22px; }
.slideshow-bottom{
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 42px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slideshow-dots{ display: flex; gap: 8px; }
.slideshow-dot{
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.slideshow-dot.is-active{ background: #fff; transform: scale(1.22); }
.slideshow-count{ margin: 0 0 0 12px; color: rgba(255,255,255,0.72); font-size: 0.76rem; font-weight: 700; letter-spacing: .08em; }
.slideshow-count strong{ color: #fff; font-size: 1rem; }
.slideshow-progress{ position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 4px; background: rgba(255,255,255,0.22); }
.slideshow-progress span{ display: block; width: 0; height: 100%; background: var(--gradient-peace); }
.slideshow-progress span.is-running{ animation: slideshow-progress 5s linear forwards; }
@keyframes slideshow-progress{ from{ width: 0; } to{ width: 100%; } }

/* ==========================================================================
   Intro / split sections
   ========================================================================== */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split.reverse .split-visual{ order: 2; }
.split-visual{
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.split-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-peace);
  opacity: 0.05;
}
.split-visual svg{ width: 100%; max-width: 320px; position: relative; z-index: 1; }
.split-visual img{ width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); position: relative; z-index: 1; }
.partner-visual{ width: 100%; aspect-ratio: 4 / 3; min-height: 0; align-self: center; }
.partner-visual img{ object-position: center center; }
.split-text h2{ font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.split-text p{ color: var(--color-text-muted); text-align: justify; }

/* What we do — reason cards */
.reason-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.reason-card{
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reason-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.reason-grid--2col{ grid-template-columns: 1fr 1fr; }
.reason-card .icon-wrap{
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.reason-card .icon-wrap svg{ width: 26px; height: 26px; }
.reason-card h3{ font-size: 1.12rem; margin-bottom: 8px; }
.reason-card p{ color: var(--color-text-muted); font-size: 0.96rem; margin: 0; }
.mission-vision-grid .reason-card p{ text-align: justify; }

/* ==========================================================================
   Impact / stats
   ========================================================================== */
.stats-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card{
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.stat-card .ring{
  width: 92px; height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--color-secondary) 0deg, rgba(255,255,255,0.15) 0deg);
  position: relative;
}
.stat-card .ring::before{
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--color-primary-dark);
}
.stat-card .ring span{
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.stat-card small{
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #CBD9E6;
}
.stats-note{
  text-align: center;
  font-size: 0.8rem;
  color: #A9BDD1;
  margin-top: 18px;
  font-style: italic;
}

/* ==========================================================================
   Project cards
   ========================================================================== */
.project-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.project-grid.two-col{ grid-template-columns: repeat(2, 1fr); }
.project-card{
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-thumb{
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-thumb svg{ width: 46%; height: 46%; position: relative; z-index: 1; opacity: 0.92; }
.project-thumb--photo{ height: 200px; }
.project-thumb--photo img{ width: 100%; height: 100%; object-fit: cover; }
.tag--green{ background: var(--color-accent-green); }
.tag--amber{ background: var(--color-secondary-dark); }
.project-thumb .tag{
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
}
.project-body{ padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.project-body h3{ font-size: 1.14rem; margin-bottom: 8px; }
.project-body p{ color: var(--color-text-muted); font-size: 0.95rem; flex: 1; margin-bottom: 12px; }
.project-body .btn{ align-self: flex-start; margin-top: 10px; }

.placeholder-note{
  font-size: 0.78rem;
  color: var(--color-text-soft);
  font-style: italic;
  border-top: 1px dashed var(--color-border);
  padding-top: 10px;
  margin-top: 14px;
}

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band{
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  width: 900px; height: 900px;
  transform: translateX(-50%);
  background: var(--gradient-peace);
  opacity: 0.16;
  border-radius: 50%;
  filter: blur(10px);
}
.cta-band > *{ position: relative; z-index: 1; }
.cta-band h2{ color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-band p{ color: #CBD9E6; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row{ justify-content: center; margin-top: 26px; }
.cta-band--contact .btn-row{ margin-top: 12px; }

/* ==========================================================================
   Core values
   ========================================================================== */
.values-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card{
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .icon-wrap{
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.value-card .icon-wrap svg{ width: 26px; height: 26px; }
.value-card h3{ font-size: 1rem; margin-bottom: 0; }

/* Moments gallery (real photos, used in place of placeholder team cards) */
.moments-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.moment-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.moment-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.moment-card img{ width: 100%; height: 100%; object-fit: cover; }
.moment-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,46,78,0) 55%, rgba(15,46,78,0.62) 100%);
}
.moment-card span{
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Partners */
.partners-list{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.partners-list li{
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary-dark);
  background: var(--color-surface);
}

/* Get Involved cards */
.involve-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.involve-card{
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid #E6E1D6;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  box-shadow: 0 10px 28px rgba(23,67,111,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.involve-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 58px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: var(--color-primary);
}
.involve-card::after{
  position: absolute;
  top: 21px;
  right: 25px;
  color: rgba(23,67,111,0.13);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.involve-card:nth-child(1)::after{ content: "01"; }
.involve-card:nth-child(2)::before{ background: var(--color-accent-green); }
.involve-card:nth-child(2)::after{ content: "02"; }
.involve-card:nth-child(3)::before{ background: var(--color-secondary); }
.involve-card:nth-child(3)::after{ content: "03"; }
.involve-card:nth-child(4)::before{ background: var(--color-accent-violet); }
.involve-card:nth-child(4)::after{ content: "04"; }
.involve-card:hover{ transform: translateY(-7px); border-color: rgba(23,67,111,0.25); box-shadow: 0 20px 40px rgba(23,67,111,0.13); }
.involve-card .icon-wrap{
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.involve-card .icon-wrap svg{ width: 28px; height: 28px; }
.involve-card h3{ font-size: 1.35rem; margin: 5px 0 0; }
.involve-card p{ color: var(--color-text-muted); margin: 0; max-width: 48ch; }
.involve-card .btn{ width: 100%; margin-top: auto; padding: 12px 18px; border-radius: 12px; }
.involve-card .btn::after{ content: "→"; margin-left: 8px; font-size: 1.05rem; transition: transform .2s ease; }
.involve-card .btn:hover::after{ transform: translateX(3px); }

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.contact-card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .icon-wrap{
  width: 62px; height: 62px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon-wrap svg{ width: 28px; height: 28px; }
.contact-card > div:last-child{ min-width: 0; }
.contact-card h3{ font-size: 1rem; margin-bottom: 4px; color: var(--color-text-muted); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.contact-card a{
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--color-primary-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-card--email a{ font-size: 0.82rem; white-space: nowrap; }
.contact-card a:hover{ color: var(--color-secondary-dark); }
.contact-note{
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
}
.contact-note h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); }
.contact-note > p:not(.eyebrow){ color: var(--color-text-muted); }
.contact-topics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  text-align: left;
}
.contact-topics li{
  padding: 14px 16px;
  border-left: 3px solid var(--color-secondary);
  background: var(--color-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--color-primary-dark);
  color: #CBD9E6;
  padding: 36px 0 18px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand{ display: flex; gap: 12px; align-items: flex-start; }
.footer-brand img{ height: 44px; width: 44px; object-fit: contain; }
.footer-brand strong{ display: block; color: #fff; font-family: var(--font-display); font-size: 1rem; }
.footer-brand p{ font-size: 0.86rem; color: #A9BDD1; margin-top: 5px; margin-bottom: 0; }
.site-footer h4{
  color: #fff;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.site-footer ul li{ margin-bottom: 6px; }
.site-footer ul li a{ font-size: 0.92rem; color: #CBD9E6; transition: color 0.2s ease; }
.site-footer ul li a:hover{ color: var(--color-secondary); }
.footer-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 14px;
  font-size: 0.82rem;
  color: #8FA6BC;
  text-align: center;
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  padding: calc(var(--nav-height) + 28px) 0 30px;
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before{
  content: "";
  position: absolute;
  bottom: -60%; left: 50%;
  width: 1000px; height: 700px;
  transform: translateX(-50%);
  background: var(--gradient-peace);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(20px);
}
.page-header > *{ position: relative; z-index: 1; }
.page-header h1{ color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); }
.page-header p{ color: #C7D8E6; max-width: 60ch; margin: 0 auto; }
.page-header .arc-rule{ margin-left: auto; margin-right: auto; }
.page-header--compact{ padding-top: calc(var(--nav-height) + 16px); padding-bottom: 20px; }
.page-header--compact .eyebrow{ margin-bottom: 7px; }
.page-header--compact .arc-rule{ margin-top: 7px; margin-bottom: 8px; }
.page-header--compact p{ max-width: 76ch; }

@media (max-width: 640px){
  .page-header--compact{ padding-top: calc(var(--nav-height) + 20px); padding-bottom: 24px; }
  .page-header--compact p{ max-width: 60ch; }
}

/* ==========================================================================
   Icon colour variants (used across reason / value / involve / contact cards)
   ========================================================================== */
.icon-wrap--blue{ background: rgba(23,67,111,0.10); color: var(--color-primary); }
.icon-wrap--green{ background: rgba(63,143,76,0.12); color: var(--color-accent-green); }
.icon-wrap--amber{ background: rgba(224,145,46,0.14); color: var(--color-secondary-dark); }
.icon-wrap--violet{ background: rgba(106,62,134,0.12); color: var(--color-accent-violet); }
.icon-wrap--coral{ background: rgba(217,91,75,0.12); color: var(--color-accent-coral); }
.icon-wrap svg{ stroke: currentColor; }

/* ==========================================================================
   Flag badge (partner / supporting countries — hero corner)
   ========================================================================== */
.flag-badge{
  position: fixed;
  top: 7px;
  right: 28px;
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(23, 67, 111, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: 0 6px 18px rgba(23,67,111,0.08);
}
.flag-badge .flags{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-badge .flags img{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(23,67,111,0.15);
  margin-left: -8px;
  background: #fff;
  filter: saturate(1.1) contrast(1.05);
}
.flag-badge .flags img:first-child{ margin-left: 0; }

@media (max-width: 640px){
  .flag-badge{ display: none; }
  .flag-badge .flags img{ width: 30px; height: 30px; }
}

/* ==========================================================================
   Real photo galleries (project pages)
   ========================================================================== */
.project-feature{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.project-feature.reverse .project-feature-gallery{ order: 2; }
.project-feature-text .eyebrow{ margin-bottom: 10px; }
.project-block .project-feature-text p,
.project-block .project-feature-text blockquote{ text-align: justify; }
.project-feature-text blockquote{
  margin: 22px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}
.photo-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-auto-rows: 130px;
  gap: 12px;
}
.photo-grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.photo-grid img:hover{ transform: scale(1.03); box-shadow: var(--shadow-md); }
.photo-grid .tall{ grid-row: span 2; }
.photo-grid .lead{ grid-column: span 1; grid-row: span 2; }
.photo-grid img{ cursor: zoom-in; }

/* Lightbox — click any project photo to view it full-size */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 33, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px 20px;
}
.lightbox.is-open{ display: flex; }
.lightbox-inner{ max-width: 900px; max-height: 86vh; width: 100%; text-align: center; }
.lightbox-inner img{
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption{ color: #EAF1F8; margin-top: 16px; font-size: 0.95rem; }
.lightbox-close{
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.22); }
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover{ background: rgba(255,255,255,0.22); }
.lightbox-nav.prev{ left: 18px; }
.lightbox-nav.next{ right: 18px; }
@media (max-width: 640px){
  .lightbox-nav{ width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-close{ top: 14px; right: 14px; }
}

.project-block{
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.project-block:last-of-type{ border-bottom: none; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; min-height: 300px; }
  .split, .split.reverse .split-visual{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-visual{ order: 0; }
  .project-feature{ grid-template-columns: 1fr; gap: 28px; }
  .project-feature.reverse .project-feature-gallery{ order: 0; }
  .reason-grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-strip{ grid-template-columns: repeat(2, 1fr); }
  .project-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid{ grid-template-columns: repeat(3, 1fr); }
  .moments-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

/* Use the hamburger before the full navigation becomes crowded on tablets. */
@media (max-width: 1050px){
  .nav-links{
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    z-index: 999;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 28px 22px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .navbar.is-scrolled .nav-links{ top: 70px; }
  .nav-links.is-open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a{ width: 100%; padding: 14px 0; }
  .hamburger{ display: flex; background: rgba(23,67,111,0.07); }
  .flag-badge{ display: none; }
}

@media (max-width: 768px){
  .brand-text{ max-width: 205px; }
  .brand-text strong{ font-size: 0.74rem; }
  .involve-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-card{ flex-direction: column; text-align: center; }
  .contact-card--email a{ white-space: normal; }
  .contact-topics{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .section{ padding: 32px 0; }
  .intro-section{ padding-bottom: 22px; }
  .home-slideshow-section{ padding: 22px 0 32px; }
  .photo-marquee::before, .photo-marquee::after{ width: 28px; }
  .photo-marquee-track, .photo-marquee-set{ gap: 8px; }
  .marquee-photo{ flex-basis: 176px; height: 235px; border-width: 3px; border-radius: 14px; }
  .marquee-photo:nth-child(3n + 2){ height: 205px; margin-top: 15px; }
  .home-slideshow{ border-width: 5px; border-radius: 22px; }
  .slideshow-track{ height: clamp(270px, 68vw, 330px); }
  .slideshow-slide{ gap: 3px; }
  .slideshow-slide figcaption{ left: 14px; bottom: 22px; font-size: clamp(1rem, 4vw, 1.35rem); }
  .slideshow-slide figcaption span{ font-size: 0.58rem; letter-spacing: .1em; margin-bottom: 7px; }
  .slideshow-control{ width: 40px; height: 40px; }
  .slideshow-prev{ left: 10px; }
  .slideshow-next{ right: 10px; }
  .slideshow-bottom{ right: 16px; bottom: 16px; gap: 6px; }
  .slideshow-count{ margin-left: 6px; }
  .slideshow-dot{ width: 8px; height: 8px; }
  .hero .container{ grid-template-columns: 1fr; gap: 18px; }
  .hero-copy{ order: 0; }
  .eyebrow{ display: none; }
  .hero-copy .btn-row{ display: none; }
  .hero-copy p{ max-width: none; }
  .hero-country-flags{ display: flex; order: 1; margin: 0 0 12px; width: fit-content; background: rgba(255,255,255,0.35); border: 1px solid rgba(23,67,111,0.08); border-radius: 999px; padding: 6px 8px; }
  .hero-stats{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 8px; order: 4; }
  .hero-stats div{ display: flex; flex-direction: column; justify-content: center; text-align: center; }
  .hero-stats div strong{ font-size: 1rem; }
  .hero-stats div span{ font-size: 0.56rem; line-height: 1.3; letter-spacing: 0.04em; }
  .hero-visual--mobile-inline{ order: 2; display: flex; margin: 0 0 12px; }
  .hero-visual{ order: 2; }
  .reason-grid{ grid-template-columns: 1fr; }
  .stats-strip{ grid-template-columns: 1fr 1fr; }
  .project-grid.two-col{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-items: stretch; }
  .project-thumb--photo{ height: 112px; }
  .project-thumb .tag{ top: 8px; left: 8px; padding: 4px 8px; font-size: 0.56rem; }
  .project-body{ padding: 14px 12px 15px; }
  .project-body h3{ font-size: 0.98rem; line-height: 1.15; }
  .project-body p{ font-size: 0.8rem; line-height: 1.4; }
  .project-body .btn{ width: 100%; padding: 8px 8px; font-size: 0.72rem; }
  .project-feature,
  .project-feature.reverse{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .project-feature-text{ order: 1; width: 100%; }
  .project-feature-gallery{ order: 2 !important; width: 100%; min-width: 0; }
  .project-feature .photo-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 8px;
    width: 100%;
  }
  .photo-grid .tall{ display: none; }
  .project-feature .photo-grid img{ min-width: 0; border-radius: 10px; }
  .project-feature .btn-row{ width: 100%; }
  .project-feature .btn-row .btn{ width: 100%; }
  .moments-grid{ grid-template-columns: 1fr 1fr; }
  .cta-band{ padding: 34px 22px; }
  .site-footer{ padding: 28px 0 14px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 16px; padding-bottom: 16px; text-align: center; }
  .footer-brand{
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-brand img{ height: 46px; width: 46px; }
  .footer-brand p{ margin-bottom: 0; }
  .site-footer h4{ margin-bottom: 8px; }
  .footer-grid > div:nth-child(2) ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px 7px;
    white-space: nowrap;
  }
  .footer-grid > div:nth-child(2) ul li{ margin: 0; }
  .footer-grid > div:nth-child(2) ul li a{ font-size: 0.74rem; }
  .footer-grid > div:nth-child(3){ margin-top: 0; }
  .footer-grid > div:nth-child(3) ul li:nth-child(2) a{
    white-space: nowrap;
    font-size: clamp(0.58rem, 2.5vw, 0.74rem);
  }
  .site-footer ul li{ margin-bottom: 4px; }
  .site-footer ul li a{ font-size: 0.84rem; overflow-wrap: anywhere; }
  .footer-bottom{ padding-top: 10px; font-size: 0.78rem; line-height: 1.35; }
}

@media (max-width: 480px){
  :root{ --nav-height: 72px; }
  .whatsapp-float{ right: 24px; bottom: calc(59px + env(safe-area-inset-bottom)); width: 52px; height: 52px; }
  .container{ padding-left: 16px; padding-right: 16px; }
  .navbar .container{ gap: 10px; }
  .brand{ gap: 8px; }
  .brand img{ width: 43px; height: 43px; }
  .brand-text{ max-width: 185px; }
  .brand-text strong{ font-size: 0.68rem; line-height: 1.13; }
  .hamburger{ width: 40px; height: 40px; flex-shrink: 0; }
  .hero{ padding-top: calc(var(--nav-height) + 12px); }
  .hero .container{ grid-template-columns: 1fr; gap: 16px; }
  .hero-copy h1{ font-size: clamp(2.0rem, 9vw, 2.45rem); line-height: 0.96; margin-bottom: 0.4em; }
  .hero-copy p{ font-size: 0.96rem; text-align: justify; }
  .hero-country-flags{ display: flex; order: 0; margin: 0 0 10px; width: fit-content; background: rgba(255,255,255,0.35); border: 1px solid rgba(23,67,111,0.08); border-radius: 999px; padding: 6px 8px; }
  .hero-visual{ order: 2; }
  .hero-stats{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 6px; margin-top: 0; padding: 6px 8px; background: rgba(255,255,255,0.2); border-radius: 12px; border: 1px solid rgba(23,67,111,0.06); order: 3; }
  .hero-stats div{ display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 6px 2px; }
  .hero-stats div strong{ font-size: 1rem; }
  .hero-stats div span{ font-size: 0.5rem; }
  .hero-copy{ order: 0; }
  .hero-visual{ order: 1; min-height: 220px; margin-top: 4px; }
  .hero-figure{ width: min(340px, 75vw); }
  .hero-figure-caption{ font-size: 0.68rem; padding: 8px 12px; }
  .btn-row{ gap: 10px; }
  .btn-row .btn{ flex: 1 1 100%; }
  .page-header h1{ font-size: clamp(1.8rem, 8vw, 2.25rem); }
  .section-head h2{ white-space: normal; }
  .photo-grid{ grid-auto-rows: 105px; gap: 8px; }
  .project-feature .photo-grid{ grid-auto-rows: 102px; gap: 7px; }
  .project-feature-text blockquote{ padding: 14px 16px; font-size: 0.98rem; }
  .value-card{ padding: 18px 10px; }
  .involve-card{ padding: 24px; min-height: 260px; }
  .contact-card{ padding: 22px 18px; }
  .contact-card a{ font-size: 1.05rem; overflow-wrap: anywhere; }
  .cta-band h2{ font-size: 1.7rem; }
}

@media (max-width: 400px){
  .stats-strip{ grid-template-columns: 1fr; }
}
