/* ═══════════════════════════════════════════════════════════
   OPRE — Organisation for Planet Rescue and Equity
   style.css  |  Production Grade
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --forest:      #0c2318;
  --forest-mid:  #163326;
  --leaf:        #2c6e49;
  --lime:        #52b788;
  --lime-light:  #74c69d;
  --sand:        #f6f3ed;
  --sand-dark:   #e8e3d9;
  --cream:       #fdfaf5;
  --ink:         #0a160f;
  --mist:        #b2ccc0;
  --mist-light:  #daeae2;
  --gold:        #c8952a;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:    cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-xs:   0 1px 4px rgba(10,22,15,.06);
  --shadow-sm:   0 4px 16px rgba(10,22,15,.09);
  --shadow-md:   0 8px 32px rgba(10,22,15,.13);
  --shadow-lg:   0 20px 56px rgba(10,22,15,.18);
  --shadow-xl:   0 36px 90px rgba(10,22,15,.22);

  --nav-h: 78px;
  --r:     3px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 950;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  transition: background .4s var(--ease), box-shadow .4s;
}
#nav.scrolled {
  background: rgba(12,35,24,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  height: 50px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: .03em;
}
.nav-brand-tagline {
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .18em; color: var(--lime-light); text-transform: uppercase;
}

/* Links */
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .77rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mist); text-decoration: none;
  position: relative; padding-bottom: 3px; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--lime);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Controls */
.nav-controls { display: flex; align-items: center; gap: .9rem; }
#lang-btn {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .15em;
  background: none; border: 1.5px solid rgba(255,255,255,.22); color: var(--mist);
  padding: .4rem .9rem; border-radius: var(--r); cursor: pointer;
  transition: border-color .25s, color .25s;
}
#lang-btn:hover { border-color: var(--lime); color: var(--lime-light); }

/* Hamburger */
#menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
#menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px;
  transition: transform .35s, opacity .35s;
}
#menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
#mobile-menu {
  position: fixed; inset: 0; background: var(--forest); z-index: 940;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem;
  transform: translateX(100%); transition: transform .45s var(--ease);
}
#mobile-menu.open { transform: none; }
.mobile-nav { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 1.8rem; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--white); text-decoration: none; display: block; transition: color .2s;
}
.mobile-nav a:hover { color: var(--lime); }
.mobile-lang-btn {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white); padding: .55rem 1.4rem; border-radius: var(--r);
  cursor: pointer; text-transform: uppercase; transition: border-color .25s;
}
.mobile-lang-btn:hover { border-color: var(--lime); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 54% 46%;
  background: var(--forest); overflow: hidden;
}
.hero-ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 80% at 72% 50%, rgba(44,110,73,.35) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 18% 75%, rgba(82,183,136,.07) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 5rem) 5rem 8rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .24em;
  color: var(--lime); text-transform: uppercase; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 2.2rem; height: 1px; background: var(--lime); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 700; line-height: 1.03; color: var(--white);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-title em { font-style: italic; color: var(--lime-light); }
.hero-title .indent { display: block; padding-left: 3.5rem; }
.hero-desc {
  font-size: 1.02rem; font-weight: 300; line-height: 1.82;
  color: var(--mist); max-width: 500px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-visual { position: relative; overflow: hidden; }
.hero-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, var(--forest) 0%, rgba(12,35,24,.25) 40%, transparent 65%);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; opacity: .65;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(12,35,24,.75); backdrop-filter: blur(12px);
}
.hero-stat {
  flex: 1; padding: 1.7rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--lime); line-height: 1; display: block;
}
.stat-label {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em;
  color: var(--mist); text-transform: uppercase; display: block; margin-top: .4rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 6.5rem; right: 3.5rem; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .18em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.2; transform:scaleY(1) } 50% { opacity:1; transform:scaleY(.6) } }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--lime); color: var(--forest);
  padding: .88rem 2.2rem; border: none; border-radius: var(--r);
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: var(--lime-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(82,183,136,.32); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .55rem;
  background: transparent; color: var(--white);
  padding: .88rem 2.2rem; border: 1.5px solid rgba(255,255,255,.26);
  border-radius: var(--r); font-family: var(--font-body); font-weight: 500;
  font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime-light); }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */
.section-tag {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .22em;
  color: var(--lime); text-transform: uppercase;
  display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem;
}
.section-tag::before { content: ''; display: block; width: 1.8rem; height: 1.5px; background: var(--lime); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700; line-height: 1.1; color: var(--forest); margin-bottom: 1.4rem;
}
.section-body {
  font-size: 1rem; font-weight: 300; line-height: 1.85; color: #3a5044;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
#about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.about-media { position: relative; overflow: hidden; min-height: 640px; }
.about-img-main { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 3.5rem; right: -2.5rem;
  width: 52%; aspect-ratio: 4/3; object-fit: cover;
  border: 6px solid var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-xl); z-index: 2;
}
.about-badge {
  position: absolute; top: 3rem; right: -1.5rem; z-index: 3;
  background: var(--lime); color: var(--forest); padding: 1.3rem 1.7rem;
  border-radius: var(--r); box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.about-badge span   { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.about-text { padding: 6.5rem 5.5rem 6.5rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.pillar {
  padding: 1.4rem 1.3rem; background: var(--sand); border-left: 3px solid var(--lime);
  border-radius: var(--r); transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pillar-icon { font-size: 1.4rem; margin-bottom: .55rem; }
.pillar-title { font-weight: 600; font-size: .86rem; color: var(--forest); margin-bottom: .3rem; }
.pillar-desc  { font-size: .78rem; color: #587060; line-height: 1.55; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   MISSION
   ═══════════════════════════════════════════════════════════ */
#mission {
  background: var(--forest); padding: 8rem 5rem;
  position: relative; overflow: hidden;
}
.mission-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 20vw; font-weight: 700;
  color: rgba(82,183,136,.03); pointer-events: none; user-select: none; white-space: nowrap;
}
.mission-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
#mission .section-tag { color: var(--lime); }
#mission .section-tag::before { background: var(--lime); }
#mission .section-title { color: var(--white); }
#mission .section-body { color: var(--mist); }
.mission-sdgs { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.sdg-item {
  display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); transition: background .25s, border-color .25s;
}
.sdg-item:hover { background: rgba(82,183,136,.1); border-color: rgba(82,183,136,.35); }
.sdg-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--lime); min-width: 3rem; line-height: 1; }
.sdg-info strong { display: block; font-size: .84rem; font-weight: 600; color: var(--white); margin-bottom: .18rem; }
.sdg-info span   { font-size: .76rem; color: var(--mist); font-weight: 300; }
.mission-values { padding-top: 1rem; }
.value-block { padding: 1.9rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.value-block:last-child { border-bottom: none; }
.value-num   { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em; color: var(--lime); margin-bottom: .6rem; }
.value-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.value-desc  { font-size: .83rem; color: var(--mist); font-weight: 300; line-height: 1.68; }

/* ═══════════════════════════════════════════════════════════
   ACTIONS
   ═══════════════════════════════════════════════════════════ */
#actions { background: var(--sand); padding: 8rem 5rem; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.actions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.action-card { position: relative; overflow: hidden; border-radius: var(--r); height: 430px; background: var(--forest); }
.action-card img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: transform .65s var(--ease), opacity .4s; }
.action-card:hover img { transform: scale(1.06); opacity: .58; }
.action-overlay {
  position: absolute; inset: 0; padding: 2.2rem;
  background: linear-gradient(to top, rgba(10,22,15,.93) 0%, rgba(10,22,15,.15) 55%, transparent 80%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.action-tag {
  display: inline-block; background: var(--lime); color: var(--forest);
  font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .26rem .62rem; border-radius: 2px; margin-bottom: .8rem; width: fit-content;
}
.action-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: .6rem; }
.action-desc { font-size: .78rem; color: var(--mist); line-height: 1.62; font-weight: 300; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s var(--ease), opacity .4s; }
.action-card:hover .action-desc { max-height: 90px; opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   IMPACT BAR
   ═══════════════════════════════════════════════════════════ */
#impact { background: var(--leaf); display: grid; grid-template-columns: repeat(4,1fr); }
.impact-cell {
  padding: 4rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .3s;
}
.impact-cell:last-child { border-right: none; }
.impact-cell:hover { background: rgba(255,255,255,.06); }
.impact-num { font-family: var(--font-display); font-size: 3.8rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.impact-rule { width: 2rem; height: 2px; background: rgba(255,255,255,.22); margin: .9rem auto; }
.impact-label { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; color: rgba(255,255,255,.6); text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════ */
#events { background: var(--white); padding: 8rem 5rem; }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.event-card {
  background: var(--cream); border: 1px solid var(--sand-dark);
  border-radius: var(--r); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-date-bar { background: var(--forest); padding: 1.3rem 1.8rem; display: flex; align-items: center; gap: 1.4rem; }
.event-date-block { text-align: center; min-width: 48px; }
.event-day   { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--lime); line-height: 1; display: block; }
.event-month { font-family: var(--font-mono); font-size: .57rem; letter-spacing: .12em; color: var(--mist); text-transform: uppercase; }
.event-date-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,.1); }
.event-location strong { display: block; font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: .12rem; }
.event-location span  { font-size: .72rem; color: var(--mist); font-weight: 300; }
.event-body { padding: 1.8rem; }
.event-type {
  display: inline-block; font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--leaf);
  border: 1px solid var(--mist-light); padding: .2rem .58rem; border-radius: 2px; margin-bottom: .9rem;
}
.event-title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--forest); line-height: 1.3; margin-bottom: .7rem; }
.event-desc  { font-size: .8rem; color: #587060; line-height: 1.65; font-weight: 300; margin-bottom: 1.4rem; }
.event-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--leaf); text-decoration: none;
  letter-spacing: .04em; transition: gap .2s, color .2s;
}
.event-link:hover { gap: .7rem; color: var(--lime); }
.event-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.events-empty {
  grid-column: 1/-1; text-align: center; padding: 4rem;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .1em;
  color: var(--mist); border: 1px dashed var(--sand-dark); border-radius: var(--r);
}

/* ═══════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════ */
#team { background: var(--sand); padding: 8rem 5rem; }
.team-section-header { text-align: center; margin-bottom: 5rem; }
.team-section-header .section-tag { justify-content: center; }
.team-section-header .section-tag::before { display: none; }
.team-unit { margin-bottom: 5rem; }
.team-unit:last-child { margin-bottom: 0; }
.team-unit-divider {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem;
}
.team-unit-divider::before, .team-unit-divider::after { content: ''; flex: 1; height: 1px; background: var(--mist-light); }
.team-unit-label { font-family: var(--font-mono); font-size: .67rem; letter-spacing: .2em; color: var(--leaf); text-transform: uppercase; white-space: nowrap; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-banner { height: 88px; background: var(--forest); position: relative; }
.team-avatar {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%; border: 5px solid var(--white);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.team-avatar svg { width: 100%; height: 100%; display: block; }
.team-card-body { padding: 3.2rem 2rem 2rem; text-align: center; }
.team-name   { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--forest); margin-bottom: .25rem; }
.team-role   { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .15em; color: var(--lime); text-transform: uppercase; margin-bottom: .9rem; }
.team-divider { width: 2rem; height: 2px; background: var(--mist-light); margin: .9rem auto; }
.team-bio    { font-size: .8rem; color: #587060; line-height: 1.68; font-weight: 300; }
.team-socials { display: flex; justify-content: center; gap: .65rem; margin-top: 1.3rem; }
.team-social-btn {
  width: 32px; height: 32px; border: 1.5px solid var(--mist-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf); text-decoration: none; font-size: .7rem; font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}
.team-social-btn:hover { border-color: var(--lime); background: var(--lime); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════════ */
#partners { background: var(--white); padding: 7rem 5rem; }
.partners-header { text-align: center; margin-bottom: 4rem; }
.partners-header .section-tag { justify-content: center; }
.partners-header .section-tag::before { display: none; }
.partners-header .section-title { margin: 0 auto .6rem; }
.partners-header .section-body  { max-width: 620px; margin: 0 auto; }
.partners-marquee-wrap { overflow: hidden; margin: 3.5rem 0; }
.partners-track {
  display: flex; gap: 2rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .55rem;
  width: 175px; height: 88px; flex-shrink: 0;
  background: var(--sand); border: 1.5px solid var(--sand-dark); border-radius: var(--r);
  padding: 1rem; text-decoration: none; transition: border-color .25s, box-shadow .25s;
}
.partner-card:hover { border-color: var(--lime); box-shadow: var(--shadow-sm); }
.partner-name { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--forest); text-align: center; line-height: 1.25; }
.partner-type { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .12em; color: var(--mist); text-transform: uppercase; }
.partners-cta {
  text-align: center; padding: 3rem 2rem; margin-top: .5rem;
  border: 1.5px dashed var(--mist-light); border-radius: var(--r);
}
.partners-cta p { font-size: .95rem; color: #587060; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════════════════════════ */
#legal {
  background: var(--forest); padding: 8rem 5rem;
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 6rem; align-items: start;
}
#legal .section-tag   { color: var(--lime); }
#legal .section-tag::before { background: var(--lime); }
#legal .section-title { color: var(--white); }
#legal .section-body  { color: var(--mist); }
.legal-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); overflow: hidden; }
.legal-row { display: grid; grid-template-columns: 170px 1fr; gap: 1rem; padding: 1.15rem 2rem; border-bottom: 1px solid rgba(255,255,255,.05); align-items: start; }
.legal-row:last-child { border-bottom: none; }
.legal-key { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; color: var(--lime); text-transform: uppercase; }
.legal-val { font-size: .86rem; color: var(--mist); font-weight: 300; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
#contact { background: var(--sand); padding: 8rem 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; margin-top: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: var(--forest); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1.05rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--leaf); margin-bottom: .28rem; }
.contact-item-text span, .contact-item-text a { font-size: .88rem; color: #3a5044; font-weight: 300; line-height: 1.55; text-decoration: none; transition: color .2s; }
.contact-item-text a:hover { color: var(--leaf); }

/* Form */
.form-group { margin-bottom: 1.15rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-label { display: block; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--leaf); margin-bottom: .42rem; }
.form-control {
  width: 100%; background: var(--white); border: 1.5px solid var(--sand-dark);
  color: var(--ink); padding: .85rem 1.15rem;
  font-family: var(--font-body); font-size: .88rem; border-radius: var(--r);
  outline: none; appearance: none; transition: border-color .25s, box-shadow .25s;
}
.form-control::placeholder { color: #b8c8c0; }
.form-control:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(82,183,136,.12); }
textarea.form-control { min-height: 132px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--forest); color: var(--white); border: none;
  padding: 1.05rem; font-family: var(--font-body); font-weight: 600; font-size: .84rem;
  letter-spacing: .08em; text-transform: uppercase; border-radius: var(--r);
  cursor: pointer; margin-top: .4rem; transition: background .25s, transform .2s;
}
.form-submit:hover { background: var(--leaf); transform: translateY(-2px); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-notice { display: none; padding: .85rem 1.15rem; border-radius: var(--r); font-size: .8rem; margin-top: .8rem; line-height: 1.55; }
.form-notice.success { display: block; background: rgba(82,183,136,.1); color: var(--leaf); border: 1px solid rgba(82,183,136,.28); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer { background: var(--ink); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding: 5.5rem 5rem 4rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { height: 50px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 1.3rem; }
.footer-tagline { font-size: .83rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 1.6rem; }
.footer-socials { display: flex; gap: .7rem; }
.social-link {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.social-link:hover { border-color: var(--lime); color: var(--lime); background: rgba(82,183,136,.08); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col-title { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; color: var(--lime); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 5rem; font-size: .7rem; letter-spacing: .06em; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: var(--lime); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #nav { padding: 0 1.5rem; }
  .nav-links, .nav-controls { display: none; }
  #lang-btn { display: block; }    /* Keep but hide in mobile, controlled by overlay */
  #menu-toggle { display: flex; }
  .nav-controls { display: flex; } /* show lang-btn next to hamburger on mobile */

  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: calc(var(--nav-h) + 2.5rem) 2rem 6rem; }
  .hero-stats { position: relative; }
  .hero-stat { padding: 1.3rem 1rem; }
  .scroll-hint { display: none; }

  #about { grid-template-columns: 1fr; }
  .about-media { min-height: 320px; }
  .about-img-float, .about-badge { display: none; }
  .about-text { padding: 3.5rem 2rem; }
  .about-pillars { grid-template-columns: 1fr; }

  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  #mission { padding: 5rem 2rem; }

  #actions, #events, #team, #partners, #contact { padding: 5rem 2rem; }
  .section-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .actions-grid, .events-grid, .team-grid { grid-template-columns: 1fr; }

  #impact { grid-template-columns: repeat(2,1fr); }
  #legal  { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 3.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; padding: 1.5rem 2rem; text-align: center; }
}
