/* ============================================================
   PROGRESS IN PEACE — Shared Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
/* ---------- CSS Variables ---------- */
:root {
  /* Colours — updated accent */
  --slate:        #4D5667;
  --slate-dark:   #3a4150;
  --slate-deeper: #2e3440;
  --slate-light:  #6b7689;
  --slate-pale:   #8a95a8;
  --accent:       #8FA6BF;
  --accent-light: #B9C7D8;
  --accent-glow:  rgba(143, 166, 191, 0.25);
  --grad-main:    linear-gradient(180deg, #3a4150 0%, #4D5667 30%, #5c6578 60%, #6b7689 100%);
  --grad-dark:    linear-gradient(180deg, #2e3440 0%, #4D5667 100%);
  --black:        #000000;
  --white:        #ffffff;
  --text-dark:    #1a2e35;
  --text-muted:   rgba(255,255,255,0.75);
  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-soft:  0 8px 32px rgba(0,0,0,0.25);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.15);
  --radius-btn:   50px;
  --radius-card:  18px;

  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;

  /* Typography */
  --font: 'Poppins', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--slate);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(46,52,64,0.85);
  backdrop-filter: blur(10px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.logo-icon svg { width: 32px; height: 32px; fill: white; }
.logo-text {
  font-size: 1.0rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  display: none;
}
@media (min-width: 480px) { .logo-text { display: block; } }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- OVERLAY NAV ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,52,64,0.96);
  backdrop-filter: blur(8px);
  z-index: 990;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(-10px) scale(1.02);
  pointer-events: none;

  transition: opacity 180ms ease, transform 240ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.nav-overlay.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Animate the menu items nicely */
.nav-overlay nav a{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

/* When open, links pop in */
.nav-overlay.open nav a{
  opacity: 1;
  transform: translateY(0);
}

/* Stagger (feels premium) */
.nav-overlay.open nav a:nth-child(1){ transition-delay: 40ms; }
.nav-overlay.open nav a:nth-child(2){ transition-delay: 80ms; }
.nav-overlay.open nav a:nth-child(3){ transition-delay: 120ms; }
.nav-overlay.open nav a:nth-child(4){ transition-delay: 160ms; }
.nav-overlay.open nav a:nth-child(5){ transition-delay: 200ms; }
.nav-overlay.open nav a:nth-child(6){ transition-delay: 240ms; }
.nav-overlay.open nav a:nth-child(7){ transition-delay: 280ms; }
.nav-overlay.open nav a:nth-child(8){ transition-delay: 320ms; }
.nav-overlay.open nav a:nth-child(9){ transition-delay: 360ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .nav-overlay{ transition: none; transform: none; }
  .nav-overlay nav a{ transition: none; transform: none; opacity: 1; }
}
body.page-leave{
  opacity: 0;
  transition: opacity 120ms ease;
}

@media (prefers-reduced-motion: reduce){
  body.page-leave{ transition: none; }
}
.nav-overlay-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(220,220,220,0.9);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.nav-overlay-close:hover {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(75, 173, 198, 0.45);
}
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.nav-overlay nav a {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(220,220,220,0.9);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-overlay nav a:hover {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(75, 173, 198, 0.35);
}
body.menu-open { overflow: hidden; }

.nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(220,220,220,0.9);
  letter-spacing: 0.02em;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.22,.61,.36,1),
    color 0.2s;
}

.nav-overlay.open .nav-dropdown-toggle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 160ms;
}

.nav-dropdown-toggle:hover {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(75, 173, 198, 0.35);
}

.nav-dropdown-arrow {
  font-size: 0.65em;
  transition: transform 0.3s ease;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.35s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  max-height: 220px;
  opacity: 1;
  margin-top: 1rem;
}

.nav-dropdown-menu a {
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* ---------- PAGE HEADER BAND (inner pages) ---------- */
.page-header {
  background: var(--slate-deeper);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.page-tag {
  display: inline-block;
  padding: 0.65rem 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ---------- FULL-WIDTH HERO BANNER (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,52,64,0.3) 0%, rgba(46,52,64,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 1.5rem;
  margin-top: 40px;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- GRADIENT BODY ---------- */
.gradient-body {
  background: var(--grad-main);
  min-height: 60vh;
  padding: var(--sp-xl) var(--sp-sm);
}

/* ---------- SECTION SLATE ---------- */
.section-slate {
  background: var(--slate);
  padding: var(--sp-xl) var(--sp-sm);
}
.section-dark {
  background: var(--slate-dark);
  padding: var(--sp-xl) var(--sp-sm);
}
.section-deeper {
  background: var(--slate-deeper);
  padding: var(--sp-xl) var(--sp-sm);
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- STORYTELLING LAYOUTS ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-block-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story-block-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.story-block-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
}
.story-block-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.story-block-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 720px) {
  .story-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-block.reverse { direction: ltr; }
}

/* ---------- QUOTE / PULLQUOTE ---------- */
.pullquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.pullquote blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.pullquote cite {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

/* ---------- STAT STRIP ---------- */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
  border: 2px solid rgba(255,255,255,0.9);
  font-family: var(--font);
  text-decoration: none;
  color: rgba(255,255,255,0.96);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-primary,
.btn-solid,
.btn-outline-white,
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.9);
  color: rgba(255,255,255,0.96);
  box-shadow: none;
  text-shadow: none;
}

.btn-primary:hover,
.btn-solid:hover,
.btn-outline-white:hover,
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-primary:active,
.btn-solid:active,
.btn-outline-white:active,
.btn-secondary:active {
  background: rgba(255,255,255,0.14);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(0);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

.btn svg {
  flex-shrink: 0;
}

.btn-lg {
  min-height: 64px;
  padding: 1rem 3rem;
  font-size: 1.05rem;
}

/* ---------- FOOTER (seamless) ---------- */
:root{
  --footer-accent: #8BE4E2; /* default */
}

/* Per-page color */
body.theme-mint { --footer-accent: #8BE4E2; }
body.theme-rose { --footer-accent: #F99E9D; }

.site-footer{
  position: relative;
  padding: 2.8rem 1.5rem;
  text-align: center;

  /* we need to allow the "blend strip" to sit ABOVE the footer */
  overflow: visible;

  background: transparent;
}

/* Gradient lives on a pseudo element */
.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Smooth merge: starts invisible, becomes colored toward bottom */
  background: linear-gradient(
    180deg,
    rgba(77,86,103,0) 0%,
    rgba(77,86,103,0) 18%,
    color-mix(in srgb, var(--footer-accent) 45%, transparent) 55%,
    color-mix(in srgb, var(--footer-accent) 85%, transparent) 100%
  );
}

/* Fallback if color-mix isn't supported (still looks good) */
@supports not (color-mix(in srgb, #000 50%, transparent)) {
  .site-footer::before{
    background: linear-gradient(
      180deg,
      rgba(77,86,103,0) 0%,
      rgba(77,86,103,0) 18%,
      rgba(139,228,226,0.45) 55%,
      rgba(139,228,226,0.85) 100%
    );
  }
  body.theme-rose .site-footer::before{
    background: linear-gradient(
      180deg,
      rgba(77,86,103,0) 0%,
      rgba(77,86,103,0) 18%,
      rgba(249,158,157,0.45) 55%,
      rgba(249,158,157,0.85) 100%
    );
  }
}

/* keep footer content above the gradient */
.site-footer > *{
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 34px; height: 34px; fill: rgba(255,255,255,0.7); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: 0.9rem;
}
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social-btn:hover {
  background: rgba(75, 173, 198, 0.22);
  box-shadow: 0 0 0 2px rgba(75, 173, 198, 0.18);
}
.footer-social-btn svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  width: 100%;
  text-align: center;
  padding-top: 0.5rem;
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Video background */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(46,52,64,0.2) 0%,
    rgba(46,52,64,0.1) 40%,
    rgba(77,86,103,0.2) 100%
  );
}

/* stronger bottom glow */
.hero-overlay::after{
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -40%;
  height: 50%;
  background: radial-gradient(
    ellipse at center,
    rgb(77, 86, 103) 0%,
    rgb(77, 86, 103) 85%,
    rgb(77, 86, 103) 100%
  );
  filter: blur(38px);
  opacity: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
}

/* Sound button */
.hero-sound{
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-sound:hover{
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}

.hero-sound:focus-visible{
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
}

/* Sound button */
.hero-sound{
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 5;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-sound:hover{
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}

.hero-sound:focus-visible{
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,52,64,0.2) 0%,
    rgba(46,52,64,0.1) 40%,
    rgba(77,86,103,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: #D9E1EA; }
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION (shared: home + contact.html)
   ============================================================ */
.contact-section {
  background: var(--slate);
  padding: var(--sp-xl) var(--sp-sm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: rgba(227,232,239,0.88);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
#contactStatus {
  min-height: 1.4rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(75, 173, 198, 0.22);
}
.contact-form textarea { min-height: 140px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-info-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-map {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-card);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: none;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.contact-detail-row svg {
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.contact-socials {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}
.contact-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.contact-social-btn:hover {
  background: rgba(75, 173, 198, 0.22);
  box-shadow: 0 0 0 2px rgba(75, 173, 198, 0.18);
}
.contact-social-btn svg { width: 16px; height: 16px; fill: white; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,52,64,0.3), rgba(46,52,64,0.6));
}
.about-banner-tag {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
.about-banner-tag .page-tag { font-size: 1.6rem; }

.about-section {
  padding: var(--sp-xl) var(--sp-sm);
  text-align: center;
}
.about-intro {
  max-width: 600px;
  margin: 0 auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.section-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
  text-align: center;
}
.value-card {
  padding: 2rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.value-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s;
}
.team-card:hover { transform: translateY(-6px); }
.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* keeps consistent shape */
  object-fit: contain;
  background: #2f3640; /* fallback background so empty space looks nice */
}
.team-photo-fallback {
  width: 100%;
  height: 230px;
  background: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-info { padding: 1.2rem 1rem 1.5rem; }
.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.team-bio {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.impact-strip {
  background: var(--slate-deeper);
  padding: 3rem 1.5rem;
  text-align: center;
}
.impact-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}
.impact-num-block { text-align: center; }
.impact-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.impact-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}
.projects-section { padding: var(--sp-xl) var(--sp-sm); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.project-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.project-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.project-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.project-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-section {
  padding: var(--sp-xl) var(--sp-sm);
  text-align: center;
}
.donate-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.donate-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.donate-box p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.donate-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Donate tiers */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.donate-tier {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.2rem;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.donate-tier:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
}
.donate-tier-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.donate-tier-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}
.donate-tier-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-section { padding: var(--sp-xl) var(--sp-sm); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.news-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s;
}
.news-card:hover { transform: translateY(-5px); }
.news-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--slate-dark);
  display: block;
}
.news-card-img-fallback {
  width: 100%;
  aspect-ratio: 1;
  background: var(--slate-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.news-card-body { padding: 1.2rem; }
.news-card-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.news-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card-caption {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
.news-card-link:hover { color: var(--accent-light); }

/* ============================================================
   VOLUNTEER PAGE
   ============================================================ */
.volunteer-section { padding: var(--sp-xl) var(--sp-sm); }
.volunteer-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.volunteer-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.volunteer-form-wrap .form-intro {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.vol-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vol-form label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
  display: block;
}
.vol-form input,
.vol-form select,
.vol-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.vol-form input:focus,
.vol-form select:focus,
.vol-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(75, 173, 198, 0.22);
}
.vol-form input::placeholder,
.vol-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.vol-form textarea { min-height: 120px; resize: vertical; }
.vol-form select { appearance: none; cursor: pointer; }
.vol-form select option { background: var(--slate-dark); color: white; }
.form-field { display: flex; flex-direction: column; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-error {
  font-size: 0.75rem;
  color: #ff9090;
  margin-top: 0.25rem;
  display: none;
}
.form-field.error .form-error { display: block; }
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: #ff9090;
}
.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.4s ease;
}
.success-message .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-message h3 { font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.success-message p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   PEACE CAMP PAGE
   ============================================================ */
.camp-section { padding: var(--sp-xl) var(--sp-sm); }
.camp-intro { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.camp-intro p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; }
.camp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.camp-feature {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.25s;
}
.camp-feature:hover { transform: translateY(-5px); }
.camp-feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.camp-feature h3 { font-size: 1rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; }
.camp-feature p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.camp-cta { text-align: center; margin-top: 3rem; }

/* Camp timeline */
.camp-timeline {
  max-width: 600px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2rem;
}
.camp-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}
.camp-timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.camp-timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: -4px;
}
.camp-timeline-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.camp-timeline-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* ============================================================
   ANIMATIONS (smooth + scroll-based)
   ============================================================ */

.fade-in{
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(.22,.61,.36,1),
    filter 600ms ease;
  will-change: opacity, transform;
}

.fade-in.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.fade-in.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Page enter */
body.page-enter{
  animation: pageEnter 420ms ease both;
}
@keyframes pageEnter{
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  body.page-enter{ animation: none; }
  .fade-in{ opacity: 1; transform: none; transition: none; }
}
/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 600px) {
  .page-tag { font-size: 1.4rem; padding: 0.55rem 1.8rem; }
  .donate-box, .volunteer-form-wrap { padding: 2rem 1.2rem; }
  .contact-title { font-size: 1.8rem; }
  .page-hero { height: 45vh; min-height: 280px; }
}
/* --------------------------------------------------
   FORCE LAST SECTION BEFORE FOOTER TO MERGE COLOR
-------------------------------------------------- */

main > section:last-of-type{
  background: var(--slate) !important;
}
.hero-icon{
  width: 20px;
  height: 20px;
}

.hero-unmuted{ display: none; }

.hero-sound.is-muted .hero-muted{ display: block; }
.hero-sound.is-muted .hero-unmuted{ display: none; }

.hero-sound:not(.is-muted) .hero-muted{ display: none; }
.hero-sound:not(.is-muted) .hero-unmuted{ display: block; }
/* Typing (home hero) */
.hero-title {
  color: #E3E8EF;
}
.type-accent{ color: var(--accent); }

.type-caret{
  display: inline-block;
  width: 10px;
  transform: translateY(2px);
  opacity: 0.9;
  animation: caretBlink 900ms steps(1) infinite;
}
.type-caret::before{ content: "▍"; }

@keyframes caretBlink{
  50%{ opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .type-caret{ display:none; animation:none; }
}

.about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /*background: url("assets/bg-about.jpg") center 15% / cover no-repeat;*/
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
.about-story-section {
  padding: 5.5rem 0 5rem;
}

.about-story-section .story-block-single {
  display: flex;
  justify-content: center;
}

.about-story-section .story-block-text {
  width: 100%;
  max-width: 760px;
  text-align: left;
}

.about-story-section .story-block-text h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #d8b36a;
}

.about-story-section .story-block-text h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #ffffff;
}

.about-story-section .story-block-text p {
  margin: 0 0 1.2rem;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.about-story-section .story-block-text p:last-child {
  margin-bottom: 0;
}
.about-story-section .container {
  display: flex;
  justify-content: center;
}
/* ============================================================
   PROJECTS PAGE — EDITORIAL REFINEMENT
   Scoped only to .projects-page
   Add at the end of styles.css
   ============================================================ */

.projects-page {
  background: #34404f;
}

.projects-page .projects-main {
  position: relative;
}

.projects-page .projects-main section {
  position: relative;
}

.projects-page .projects-hero {
  min-height: clamp(440px, 72vh, 760px);
}

.projects-page .projects-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(46,52,64,0) 0%, rgba(46,52,64,0.9) 100%);
  z-index: 1;
}

.projects-page .projects-hero .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(24,31,41,0.22) 0%, rgba(24,31,41,0.42) 48%, rgba(24,31,41,0.76) 100%),
    linear-gradient(90deg, rgba(24,31,41,0.45) 0%, rgba(24,31,41,0.14) 42%, rgba(24,31,41,0.5) 100%);
}

.projects-page .projects-hero .page-hero-content {
  max-width: 760px;
  padding: 0 1.5rem;
  margin-top: 56px;
  text-align: center;
}

.projects-page .projects-hero-kicker,
.projects-page .project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.projects-page .project-kicker {
  margin-bottom: 1rem;
}

.projects-page .projects-hero .page-hero-content h1 {
  max-width: 12ch;
  margin: 0 auto 1.1rem;
  font-size: clamp(2.4rem, 4.9vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.projects-page .projects-hero .page-hero-content p:last-child {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
}

.projects-page .projects-quicknav-wrap {
  padding-top: 2.2rem;
  padding-bottom: 0.4rem;
}

.projects-page .projects-quicknav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.15rem 0 0;
}

.projects-page .projects-quicknav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.projects-page .projects-quicknav a:hover,
.projects-page .projects-quicknav a:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-1px);
}

.projects-page .projects-impact {
  padding-top: 2.5rem;
}

.projects-page .projects-impact-shell {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 2vw, 2.2rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.projects-page .projects-impact-intro {
  max-width: 760px;
}

.projects-page .projects-impact-intro .section-heading,
.projects-page .projects-impact-intro .section-sub {
  margin-left: 0;
}

.projects-page .projects-stat-strip {
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0;
}

.projects-page .projects-stat-strip .stat-item {
  flex: 1 1 180px;
  min-width: 150px;
  padding: 1.1rem 0.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.projects-page .projects-stat-strip .stat-num {
  letter-spacing: -0.04em;
}

.projects-page .project-video-section,
.projects-page .project-story-section {
  padding-top: clamp(4.5rem, 6vw, 6rem);
  padding-bottom: clamp(4.5rem, 6vw, 6rem);
}

.projects-page .feature-film-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.3fr);
  gap: clamp(1.3rem, 3vw, 2.6rem);
  align-items: center;
}

.projects-page .project-section-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.projects-page .project-section-intro--left {
  max-width: 540px;
  margin: 0;
  text-align: left;
}

.projects-page .project-section-intro .section-heading {
  max-width: 720px;
  margin: 0 auto 1rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.projects-page .project-section-intro .section-sub {
  max-width: 620px;
  margin: 0 auto;
}

.projects-page .project-section-intro--left .section-heading,
.projects-page .project-section-intro--left .section-sub,
.projects-page .section-sub-left {
  margin-left: 0;
  margin-right: 0;
}

.projects-page .project-video-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.08);
}

.projects-page .project-video-ratio {
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.04);
}

.projects-page .project-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.projects-page .project-entry-grid {
  display: grid;
  gap: 2rem;
}

.projects-page .project-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.projects-page .project-entry-card.reverse {
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
}

/* remove hover effect completely */
.projects-page .project-entry-card:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
  border: 0;
}

.projects-page .project-entry-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.projects-page .project-entry-copy p {
  max-width: 62ch;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.projects-page .project-entry-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.projects-page .project-entry-meta {
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
}

.projects-page .project-entry-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.14;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.projects-page .project-entry-lead {
  font-size: 1.08rem !important;
  line-height: 1.8;
  color: rgba(255,255,255,0.9) !important;
}

.projects-page .project-entry-copy p {
  max-width: 62ch;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.projects-page .project-entry-meta {
  width: 100%;
}

.projects-page .project-entry-copy p {
  max-width: 60ch;
  color: rgba(255,255,255,0.76);
  line-height: 1.78;
  margin-bottom: 0.95rem;
}

.projects-page .project-entry-copy p:last-child {
  margin-bottom: 0;
}

.projects-page .project-entry-stage {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
  height: auto;
  justify-content: flex-start;
  align-self: start;
}

.projects-page .project-stage-view {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  aspect-ratio: 4 / 3;
}

.projects-page .project-stage-view img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.projects-page .project-stage-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.78rem 0.92rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,25,33,0.2) 0%, rgba(20,25,33,0.76) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.projects-page .project-stage-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.projects-page .project-thumb {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  opacity: 0.72;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.projects-page .project-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.projects-page .project-thumb.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.projects-page .project-thumb:hover,
.projects-page .project-thumb:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

.projects-page .projects-cta {
  padding-top: 4.5rem;
  padding-bottom: 4.8rem;
}

.projects-page .projects-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}

.projects-page .projects-cta-panel > div:first-child {
  text-align: left;
}

.projects-page .projects-cta-panel .section-heading,
.projects-page .projects-cta-panel .section-sub {
  margin-left: 0;
  margin-right: 0;
}

.projects-page .projects-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .projects-page .feature-film-grid,
  .projects-page .project-entry-card,
  .projects-page .project-entry-card.reverse,
  .projects-page .projects-cta-panel {
    grid-template-columns: 1fr;
  }

  .projects-page .project-entry-copy p {
    max-width: none;
  }

  .projects-page .projects-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .projects-page .project-stage-view {
  min-height: 320px;
}

.projects-page .project-stage-view img {
  min-height: 320px;
}
  .projects-page .projects-hero {
    min-height: 420px;
  }

  .projects-page .projects-hero .page-hero-content {
    max-width: 100%;
    margin-top: 42px;
  }

.projects-page .projects-hero .page-hero-content h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 8.2vw, 3.5rem);
  line-height: 1.06;
}
  .projects-page .project-section-intro {
    margin-bottom: 2.2rem;
  }

  .projects-page .project-entry-card {
    border-radius: 24px;
    padding: 1rem;
  }

  .projects-page .project-entry-copy,
  .projects-page .project-stage-view {
    border-radius: 20px;
  }

  .projects-page .project-stage-caption {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.8rem;
  }

  .projects-page .projects-cta-panel,
  .projects-page .projects-cta-panel > div:first-child,
  .projects-page .project-section-intro--left {
    text-align: left;
  }

  .projects-page .projects-cta-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-page .projects-quicknav a,
  .projects-page .project-entry-card,
  .projects-page .project-thumb {
    transition: none;
  }
}
/* ============================================================
   PEACE CAMPS PAGE
   Scoped only to .peace-camps-page
   ============================================================ */

.peace-camps-page .peace-camps-hero {
  min-height: clamp(460px, 72vh, 760px);
}

.peace-camps-page .peace-camps-hero .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(24,31,41,0.18) 0%, rgba(24,31,41,0.44) 52%, rgba(24,31,41,0.78) 100%),
    linear-gradient(90deg, rgba(24,31,41,0.32) 0%, rgba(24,31,41,0.12) 44%, rgba(24,31,41,0.34) 100%);
}

.peace-camps-page .peace-camps-hero .page-hero-content {
  max-width: 780px;
  margin-top: 52px;
}

.peace-camps-page .peace-camps-hero .page-hero-content h1 {
  max-width: 12ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.7rem, 5.3vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.peace-camps-page .peace-camps-hero .page-hero-content p:last-child {
  max-width: 690px;
  margin: 0 auto;
}

.peace-camps-page .camp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.peace-camps-page .peace-camps-intro,
.peace-camps-page .peace-camps-overview,
.peace-camps-page .peace-camp-stories,
.peace-camps-page .peace-camps-values,
.peace-camps-page .peace-camps-cta {
  position: relative;
}

.peace-camps-page .peace-camps-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.peace-camps-page .peace-camps-intro-copy {
  text-align: left;
}

.peace-camps-page .peace-camps-intro-copy .section-heading,
.peace-camps-page .section-sub-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.peace-camps-page .peace-camps-intro-note {
  padding: clamp(1.3rem, 2.1vw, 1.8rem);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.peace-camps-page .peace-camps-intro-note p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.peace-camps-page .peace-camps-intro-note p:last-child {
  margin-bottom: 0;
}

.peace-camps-page .peace-camps-section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.peace-camps-page .camp-year-strip {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.peace-camps-page .camp-year-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.peace-camps-page .camp-year-pill:hover,
.peace-camps-page .camp-year-pill:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-1px);
}

.peace-camps-page .camp-story-card,
.peace-camps-page .camp-story-card.reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 4rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.peace-camps-page .camp-story-media {
  min-width: 0;
  display: block;
}

.peace-camps-page .camp-story-image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  display: block;
}

.peace-camps-page .camp-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0 0;
  border-radius: 0;
  background: transparent;
}

.peace-camps-page .camp-story-placeholder span {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
}

.peace-camps-page .camp-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
}

.peace-camps-page .camp-story-meta {
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
}

.peace-camps-page .camp-story-copy h3 {
  width: 100%;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #fff;
}

.peace-camps-page .camp-story-copy p {
  width: 100%;
  max-width: 68ch;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
}

.peace-camps-page .camp-story-copy p:last-child {
  margin-bottom: 0;
}



.peace-camps-page .peace-camps-values .container {
  max-width: 980px;
}

.peace-camps-page .peace-camps-values .peace-camps-section-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.peace-camps-page .peace-camps-values .peace-camps-section-intro .section-heading {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.peace-camps-page .peace-values-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.peace-camps-page .peace-value-card {
  min-height: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.peace-camps-page .peace-value-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #fff;
}

.peace-camps-page .peace-value-card p {
  max-width: 62ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
}

.peace-camps-page .peace-camps-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.09);
}

.peace-camps-page .peace-camps-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.peace-camps-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 980px) {
  .peace-camps-page .peace-camps-values .container,
  .peace-camps-page .peace-values-grid {
    max-width: none;
  }

  .peace-camps-page .peace-value-card {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    align-items: start;
  }

  .peace-camps-page .peace-value-card p {
    max-width: none;
  }
}
/* styles.css */
/* === PEACE CAMPS MOBILE FIX (SAFE OVERRIDE) === */
@media (max-width: 720px) {
  .peace-camps-page .peace-camps-intro,
  .peace-camps-page .peace-camps-overview,
  .peace-camps-page .peace-camp-stories,
  .peace-camps-page .peace-camps-values,
  .peace-camps-page .peace-camps-cta {
    padding: 3.5rem 0.9rem;
  }

  .peace-camps-page .peace-camps-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .peace-camps-page .peace-camps-intro-copy,
  .peace-camps-page .peace-camps-intro-note {
    width: 100%;
    min-width: 0;
  }

  .peace-camps-page .peace-camps-intro-copy .section-heading {
    max-width: 9ch;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.02;
    margin-bottom: 0.9rem;
  }

  .peace-camps-page .section-sub-left,
  .peace-camps-page .peace-camps-intro-note p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .peace-camps-page .peace-camps-intro-note {
    padding: 1rem;
    border-radius: 18px;
  }

  .peace-camps-page .peace-values-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .peace-camps-page .peace-value-card {
    padding: 1.1rem 1rem;
    border-radius: 18px;
  }

  .peace-camps-page .peace-camps-cta-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.2rem 1rem;
  }

  .peace-camps-page .peace-camps-cta-panel > div:first-child,
  .peace-camps-page .peace-camps-cta-actions {
    width: 100%;
  }

  .peace-camps-page .peace-camps-cta-panel .section-heading,
  .peace-camps-page .peace-camps-cta-panel .section-sub {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .peace-camps-page .peace-camps-cta-panel .section-heading {
    max-width: 7ch;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.06;
  }

  .peace-camps-page .peace-camps-cta-actions {
    justify-content: flex-start;
  }

  .peace-camps-page .peace-camps-cta-actions .btn {
  width: 100%;
}

.peace-camps-page .camp-story-card,
.peace-camps-page .camp-story-card.reverse,
.peace-camps-page #camp-2025,
.peace-camps-page #camp-2023,
.peace-camps-page #camp-2022,
.peace-camps-page #camp-2018,
.peace-camps-page #camp-2017 {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  margin-bottom: 3rem;
}

.peace-camps-page .camp-story-media {
  justify-content: flex-start;
}

.peace-camps-page .camp-story-image-wrap {
  max-width: 100%;
  border-radius: 16px;
}

.peace-camps-page .camp-story-image {
  max-height: 360px;
}

.peace-camps-page .camp-story-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.25rem 0 0;
  overflow: hidden;
}

.peace-camps-page .camp-story-meta,
.peace-camps-page .camp-story-copy h3,
.peace-camps-page .camp-story-slogan,
.peace-camps-page .camp-story-copy p {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: normal;
}

.peace-camps-page .camp-story-copy h3 {
  font-size: clamp(1.45rem, 6.4vw, 2rem);
  line-height: 1.12;
}
}

@media (prefers-reduced-motion: reduce) {
  .peace-camps-page .camp-year-pill {
    transition: none;
  }
}

/* ===== Peace Camps page refinements ===== */

.peace-camps-page .camp-story-card.featured {
  grid-template-columns: 1fr;
  background: transparent;
  box-shadow: none;
}

.peace-camps-page .camp-story-image-wrap {
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.peace-camps-page .camp-story-image {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
}

.peace-camps-page .camp-story-year-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(24,31,41,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.peace-camps-page .camp-story-slogan {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
}

.peace-camps-page .peace-camps-interviews {
  position: relative;
}

.peace-camps-page .interviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.peace-camps-page .interview-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 38px rgba(0,0,0,0.15);
}

.peace-camps-page .interview-video-wrap {
  background: rgba(0,0,0,0.18);
}

.peace-camps-page .interview-video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #1f2530;
}

.peace-camps-page .interview-copy {
  padding: 1.15rem 1.2rem 1.25rem;
}

.peace-camps-page .interview-copy h3 {
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #fff;
}

.peace-camps-page .interview-copy p {
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .peace-camps-page .interviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .peace-camps-page .camp-story-image-wrap {
  min-height: 0;
}

.peace-camps-page .camp-story-image {
  max-height: 360px;
}

  .peace-camps-page .camp-story-year-badge {
    top: 0.85rem;
    left: 0.85rem;
  }

  .peace-camps-page .interview-card {
    border-radius: 22px;
  }

  .peace-camps-page .interview-copy {
    padding: 1rem;
  }
}
.peace-camp-featured-video {
  margin-bottom: 2.5rem;
}

.peace-camp-featured-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.peace-camp-featured-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
