/* ============================================
   BWÄRÄ — Aquatique Immersif
   Palette: bleu océan · turquoise · écume
   ============================================ */

:root {
  --deep:     #023E8A;
  --ocean:    #0077B6;
  --turq:     #00B4D8;
  --light:    #90E0EF;
  --foam:     #CAF0F8;
  --white:    #FFFFFF;
  --ink:      #03045E;
  --muted:    rgba(255,255,255,0.65);
  --glass:    rgba(255,255,255,0.12);
  --glass2:   rgba(255,255,255,0.22);

  --font-h: 'Raleway', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--foam);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 50px;
  font-family: var(--font-h); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn--white {
  background: var(--white); color: var(--ocean);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn--glass {
  background: var(--glass2); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { transform: translateY(-3px); background: rgba(255,255,255,0.3); }
.btn--ocean {
  background: var(--ocean); color: var(--white);
}
.btn--ocean:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,119,182,0.45); }
.btn--outline-ocean {
  border: 2px solid var(--ocean); color: var(--ocean);
}
.btn--outline-ocean:hover { background: var(--ocean); color: var(--white); }

/* ---- Language Toggle ---- */
.lang-toggle {
  display: flex; background: var(--glass); border-radius: 20px; padding: 3px;
  backdrop-filter: blur(8px);
}
.lang-toggle button {
  padding: 4px 14px; border-radius: 16px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7); transition: all 0.25s;
}
.lang-toggle button.active {
  background: var(--white); color: var(--ocean);
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(0,55,100,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo img { height: 50px; transition: height 0.3s; }
.nav.scrolled .nav__logo img { height: 38px; }
.nav__links {
  display: flex; gap: 4px;
}
.nav__links a {
  color: rgba(255,255,255,0.85); font-family: var(--font-h);
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px;
  transition: all 0.25s;
}
.nav__links a:hover { color: var(--white); background: var(--glass2); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 10px 24px; font-size: 0.83rem; }
.nav__menu-btn {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,60,120,0.96); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { color: var(--white); font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; }
.nav__mobile-close { position: absolute; top: 24px; right: 28px; color: var(--white); font-size: 2rem; padding: 8px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background-color: var(--deep);
  background-size: cover;
  background-position: center;
}
/* Dark overlay over photo for text readability */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(2,62,138,0.82) 0%, rgba(0,77,130,0.65) 50%, rgba(0,100,120,0.55) 100%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(0,180,216,0.2) 0%, transparent 60%);
  animation: caustic 8s ease-in-out infinite alternate;
}
@keyframes caustic {
  0%   { opacity: 0.8; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.05) rotate(2deg); }
}
/* Bubbles */
.hero__bubbles {
  position: absolute; inset: 0; pointer-events: none;
}
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  animation: rise linear infinite;
}
.bubble:nth-child(1) { width:12px; height:12px; left:10%; animation-duration:8s; animation-delay:0s; }
.bubble:nth-child(2) { width:20px; height:20px; left:25%; animation-duration:12s; animation-delay:2s; }
.bubble:nth-child(3) { width:8px;  height:8px;  left:40%; animation-duration:9s;  animation-delay:1s; }
.bubble:nth-child(4) { width:16px; height:16px; left:60%; animation-duration:11s; animation-delay:3s; }
.bubble:nth-child(5) { width:6px;  height:6px;  left:75%; animation-duration:7s;  animation-delay:0.5s; }
.bubble:nth-child(6) { width:24px; height:24px; left:88%; animation-duration:14s; animation-delay:4s; }
.bubble:nth-child(7) { width:10px; height:10px; left:50%; animation-duration:10s; animation-delay:1.5s; }
@keyframes rise {
  0%   { bottom: -40px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { bottom: 110%; opacity: 0; }
}
/* Bottom wave */
.hero__wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
}

.hero__content {
  position: relative; z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--light); font-family: var(--font-h);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block; width: 32px; height: 2px;
  background: var(--turq);
}
.hero__title {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white); line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: 0;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--turq), var(--light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: 1.1rem; color: var(--muted);
  max-width: 540px; line-height: 1.75; margin-bottom: 44px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating turtle */
.hero__turtle-wrap {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 2; animation: swim 7s ease-in-out infinite;
}
@keyframes swim {
  0%, 100% { transform: translateY(-50%) rotate(-4deg); }
  50%       { transform: translateY(-56%) rotate(4deg); }
}

/* ---- STATS FLOATING ---- */
.stats-float {
  position: relative; z-index: 10;
  margin-top: -60px; padding-bottom: 0;
}
.stats-float__inner {
  display: flex; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,77,128,0.2);
  overflow: hidden;
}
.stat-item {
  flex: 1; padding: 36px 28px; text-align: center;
  border-right: 1px solid rgba(0,119,182,0.12);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,180,216,0.06); }
.stat-item__num {
  font-family: var(--font-h); font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--ocean), var(--turq));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-item__label {
  font-size: 0.8rem; font-weight: 500; color: #5d8fa8;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px;
}

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }
.section--light { background: var(--white); }
.section--foam  { background: var(--foam); }
.section--ocean {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--deep) 100%);
  color: var(--white);
}
.section--turq {
  background: linear-gradient(160deg, var(--turq) 0%, var(--ocean) 100%);
  color: var(--white);
}

/* Wavy top for ocean sections */
.wave-top, .wave-bottom {
  display: block; width: 100%; overflow: hidden; line-height: 0;
}
.wave-top { margin-bottom: -2px; }
.wave-bottom { margin-top: -2px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: currentColor;
}
.section--ocean .section-tag,
.section--turq .section-tag { color: var(--light); }

.section-title {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25; letter-spacing: 0;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem; color: #4a7a9b;
  max-width: 580px; line-height: 1.75;
}
.section--ocean .section-subtitle,
.section--turq .section-subtitle { color: var(--muted); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- MISSION ---- */
.mission__layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.mission__blob-wrap {
  position: relative;
}
.mission__blob {
  width: 100%; aspect-ratio: 1;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--turq), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  animation: blob-morph 10s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0,119,182,0.3);
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  33%       { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  66%       { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
}
.mission__blob img,
.mission__blob-emoji {
  width: 85%; height: 85%; object-fit: cover; border-radius: 50%;
}
.mission__blob-emoji { font-size: 6rem; display:flex; align-items:center; justify-content:center; }
.mission__blob-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: 18px;
  padding: 16px 22px; box-shadow: 0 10px 40px rgba(0,77,128,0.2);
  display: flex; align-items: center; gap: 12px;
}
.mission__blob-badge-icon { font-size: 1.6rem; }
.mission__blob-badge-text strong { display: block; font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.mission__blob-badge-text span { font-size: 0.78rem; color: #5d8fa8; }

.mission__features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.mission__feature {
  display: flex; gap: 16px;
  padding: 18px 20px; border-radius: 16px;
  transition: background 0.3s;
}
.mission__feature:hover { background: rgba(0,180,216,0.08); }
.mission__feature-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--turq), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,119,182,0.25);
}
.mission__feature-text h4 { font-weight: 700; font-size: 0.93rem; margin-bottom: 3px; color: var(--ink); }
.mission__feature-text p  { font-size: 0.86rem; color: #4a7a9b; line-height: 1.55; }

/* ---- PROGRAMMES ---- */
.programs__flow {
  margin-top: 64px; display: flex; flex-direction: column; gap: 80px;
}
.program-flow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.program-flow:nth-child(even) { direction: rtl; }
.program-flow:nth-child(even) > * { direction: ltr; }
.program-flow__visual {
  position: relative;
}
.program-flow__bubble {
  width: 100%; aspect-ratio: 5/4;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,119,182,0.3));
  border: 1.5px solid rgba(0,180,216,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  transition: transform 0.5s var(--ease);
}
.program-flow__bubble:hover { transform: scale(1.03); }
.program-flow__num {
  position: absolute; top: -16px; left: 20px;
  font-family: var(--font-h); font-size: 4rem; font-weight: 800;
  color: rgba(0,180,216,0.15); line-height: 1; pointer-events: none;
  z-index: 0;
}
.program-flow__tag {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--turq); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.program-flow__tag::before { content: ''; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.program-flow__title {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 800;
  color: var(--white); line-height: 1.25; margin-bottom: 14px;
  letter-spacing: 0;
}
.program-flow__text { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }
.program-flow__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--light); font-family: var(--font-h); font-weight: 700; font-size: 0.88rem;
  transition: gap 0.3s;
}
.program-flow__link:hover { gap: 14px; }

/* ---- IMPACT ---- */
.impact-wrap {
  background: var(--white); border-radius: 32px;
  padding: 72px; position: relative; overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,77,128,0.12);
}
.impact-wrap::before {
  content: '';
  position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%);
  pointer-events: none;
}
.impact-wrap::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,182,0.08), transparent 70%);
  pointer-events: none;
}
.impact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1;
}
.impact-label {
  font-family: var(--font-h); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--turq); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.impact-label::before { content: ''; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.impact-title {
  font-family: var(--font-h); font-size: 1.9rem; font-weight: 800;
  color: var(--ink); margin-bottom: 10px; letter-spacing: 0;
}
.impact-sub { font-size: 1rem; color: #4a7a9b; margin-bottom: 36px; }

.impact-track {
  height: 10px; background: var(--foam);
  border-radius: 50px; margin-bottom: 12px; overflow: visible; position: relative;
}
.impact-bar {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--ocean), var(--turq));
  width: 0%; transition: width 1.6s var(--ease);
  position: relative; box-shadow: 0 0 20px rgba(0,180,216,0.5);
}
.impact-bar::after {
  content: '';
  position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--turq); border: 3px solid var(--white);
  box-shadow: 0 0 12px rgba(0,180,216,0.7);
}
.impact-labels {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: #5d8fa8; margin-bottom: 36px;
}
.impact-labels strong { color: var(--ink); font-weight: 700; }
.impact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.impact-uses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.impact-use {
  padding: 24px 22px; border-radius: 20px;
  background: var(--foam); border: 1.5px solid transparent;
  transition: all 0.3s;
}
.impact-use:hover {
  border-color: rgba(0,180,216,0.3);
  background: rgba(0,180,216,0.06);
  transform: translateY(-3px);
}
.impact-use__icon { font-size: 1.8rem; margin-bottom: 10px; }
.impact-use__pct {
  font-family: var(--font-h); font-size: 1.7rem; font-weight: 800;
  background: linear-gradient(135deg, var(--ocean), var(--turq));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-use__label { font-size: 0.8rem; color: #4a7a9b; margin-top: 4px; font-weight: 500; }

/* ---- GALLERY ---- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px; margin-top: 52px;
}
.gal-item {
  border-radius: 20px; overflow: hidden; cursor: pointer; position: relative;
  background: linear-gradient(135deg, var(--ocean), var(--turq));
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  min-height: 200px;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,77,128,0.25); z-index: 2; }
.gal-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 4; }
.gal-item:nth-child(3) { grid-column: span 3; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 4; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; }
.gal-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:3.5rem; }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s; padding: 18px;
  display: flex; align-items: flex-end;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-caption { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(2,62,138,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 16px; }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  color: var(--white); font-size: 2.2rem; padding: 8px; cursor: pointer; font-weight: 300;
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px;
}
.testi-card {
  background: var(--white); border-radius: 24px; padding: 36px;
  box-shadow: 0 8px 40px rgba(0,77,128,0.1);
  border: 1.5px solid rgba(0,180,216,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute; top: -10px; right: 20px;
  font-size: 7rem; font-family: Georgia, serif;
  color: rgba(0,180,216,0.1); line-height: 1;
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,77,128,0.18); }
.testi-stars { color: #FFB800; font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 0.96rem; color: #2a4a6a; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turq), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-h); font-weight: 700; font-size: 0.95rem;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.testi-role { font-size: 0.78rem; color: #5d8fa8; }

/* ---- CTA SPLIT ---- */
.cta-fluid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,77,128,0.2);
}
.cta-panel {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-panel--don {
  background: linear-gradient(150deg, var(--turq) 0%, var(--ocean) 100%);
}
.cta-panel--vol {
  background: linear-gradient(150deg, var(--ocean) 0%, var(--deep) 100%);
}
.cta-panel__icon { font-size: 2.8rem; margin-bottom: 20px; }
.cta-panel__title {
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 14px; letter-spacing: 0; line-height: 1.25;
}
.cta-panel__text { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.cta-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-pill {
  padding: 8px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white); font-family: var(--font-h);
  font-weight: 700; font-size: 0.87rem;
  cursor: pointer; transition: all 0.25s;
}
.cta-pill:hover, .cta-pill.active {
  background: var(--white);
  color: var(--ocean);
  border-color: var(--white);
}

/* ---- PARTNERS MARQUEE ---- */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  margin: 40px 0 48px;
}
.marquee-fade--left,
.marquee-fade--right {
  position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.marquee-fade--left  { left: 0;  background: linear-gradient(to right, var(--white) 20%, transparent); }
.marquee-fade--right { right: 0; background: linear-gradient(to left,  var(--white) 20%, transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  flex-shrink: 0;
  border-radius: 14px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  margin: 0 8px;
  background: var(--foam);
  border: 1.5px solid transparent;
}
a.marquee-logo { cursor: pointer; }
a.marquee-logo:hover {
  background: var(--white);
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,77,128,0.13);
}
div.marquee-logo { cursor: default; }
.marquee-logo img {
  height: 70px; width: auto; max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(0.25) opacity(0.85);
  transition: filter 0.3s;
}
a.marquee-logo:hover img { filter: grayscale(0) opacity(1); }

/* ---- PARTNERS ---- */
.partners-intro {
  font-size: 0.95rem; color: #4a7a9b; max-width: 640px;
  margin: 16px auto 48px; line-height: 1.75; text-align: center;
}
.partners-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px;
}
.partner-logo-wrap {
  background: var(--foam); border-radius: 14px;
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
}
.partner-logo-wrap:hover {
  border-color: rgba(0,180,216,0.3);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,77,128,0.12);
}
.partner-logo-wrap img {
  height: 50px; width: auto; max-width: 130px;
  object-fit: contain;
  filter: grayscale(0.3) opacity(0.85);
  transition: filter 0.3s;
}
.partner-logo-wrap:hover img { filter: grayscale(0) opacity(1); }
.partners-cta-box {
  margin-top: 48px; text-align: center;
  padding: 28px 36px; border-radius: 16px;
  background: var(--foam);
  border: 1.5px dashed rgba(0,180,216,0.5);
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.partners-cta-box p { font-size: 0.92rem; color: #4a7a9b; margin-bottom: 16px; line-height: 1.65; }
@media (max-width: 768px) {
  .partner-logo-wrap img { height: 38px; max-width: 100px; }
}

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(160deg, var(--deep) 0%, #011a40 100%);
  color: rgba(255,255,255,0.7); padding: 80px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.footer__logo { height: 54px; margin-bottom: 18px; }
.footer__desc { font-size: 0.9rem; line-height: 1.75; max-width: 270px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer__social a:hover { background: var(--turq); transform: translateY(-2px); }
.footer__col-title {
  font-family: var(--font-h); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 0.9rem; transition: color 0.25s; }
.footer__links a:hover { color: var(--turq); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.82rem; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.82rem; transition: color 0.25s; }
.footer__legal a:hover { color: var(--turq); }

/* ---- Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--left.visible, .reveal--right.visible { transform: none; }
.reveal--scale { transform: scale(0.92); }
.reveal--scale.visible { transform: scale(1); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu-btn { display: flex; }
  .mission__layout { grid-template-columns: 1fr; gap: 56px; }
  .mission__blob-wrap { max-width: 400px; margin: 0 auto; }
  .program-flow { grid-template-columns: 1fr; gap: 32px; }
  .program-flow:nth-child(even) { direction: ltr; }
  .impact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__turtle-wrap { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .stats-float__inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: 1px solid rgba(0,119,182,0.12); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-fluid { grid-template-columns: 1fr; border-radius: 24px; }
  .cta-panel { padding: 52px 32px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
  .impact-wrap { padding: 40px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-float__inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,119,182,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .impact-uses { grid-template-columns: 1fr 1fr; }
  .impact-actions { flex-direction: column; }
}
