:root {
  --ocean-deep: #042C53;
  --ocean-mid: #185FA5;
  --ocean-light: #E6F1FB;
  --teal-dark: #085041;
  --teal-mid: #1D9E75;
  --teal-light: #E1F5EE;
  --sand: #FAC775;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #444441;
  --text-light: #888780;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* =====================
   NAV
   ===================== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(4,44,83,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 0; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0 1rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sand); }
.nav-right {
  display: flex; align-items: center; gap: 1rem;
}
.lang-selector {
  display: flex; gap: 6px;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); font-size: 0.72rem; padding: 3px 8px;
  border-radius: 3px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active { background: var(--teal-mid); border-color: var(--teal-mid); color: white; }
.btn-donate {
  background: var(--teal-mid); color: white; border: none;
  padding: 8px 20px; border-radius: 4px; font-size: 0.82rem;
  font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-donate:hover { background: #0F6E56; }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; width: 36px; height: 36px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(4,44,83,0.98);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column; gap: 0;
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0); opacity: 1;
}
.mobile-menu li { list-style: none; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sand); }
.mobile-menu .mobile-bottom {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem;
}
.mobile-menu .lang-selector { flex-wrap: wrap; }
.mobile-menu .btn-donate { width: 100%; text-align: center; padding: 12px; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--ocean-deep) 0%, #0a3d6b 40%, #0d5c8a 70%, #1D9E75 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; overflow: hidden;
}
.hero-waves svg { width: 100%; height: 100%; }
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 4rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: white; line-height: 1.15;
  margin-bottom: 0.5rem;
}
.hero-text .hero-sub {
  font-size: 1.1rem; color: var(--sand);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 300;
}
.hero-text p {
  color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.8;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  background: var(--teal-mid); color: white; border: none;
  padding: 14px 32px; border-radius: 4px; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-primary:hover { background: #0F6E56; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 32px; border-radius: 4px; font-size: 0.9rem;
  font-weight: 400; cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 1.5rem;
  text-align: center;
}
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--sand); display: block;
}
.stat-card .stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.hero-badge {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 10px;
  background: rgba(29,158,117,0.15);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 6px; padding: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.hero-badge svg { flex-shrink: 0; }
.hero-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* =====================
   SECTIONS (shared)
   ===================== */
section { padding: 5rem 3rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--teal-mid); font-weight: 500; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--ocean-deep); line-height: 1.25;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1rem; color: var(--text-mid); line-height: 1.85;
  max-width: 640px;
}

/* =====================
   ABOUT
   ===================== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  margin-top: 3rem;
}
.about-img {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--teal-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-inner {
  text-align: center; color: white;
}
.about-img-inner svg { width: 80px; height: 80px; opacity: 0.4; }
.about-img-inner span { display: block; font-size: 0.8rem; opacity: 0.5; margin-top: 8px; }
.objectives { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.obj-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.obj-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--teal-dark);
}
.obj-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; padding-top: 6px; }
.obj-text strong { color: var(--ocean-deep); display: block; margin-bottom: 2px; }

/* =====================
   MEMBERSHIP
   ===================== */
.membership { background: #f7f9fc; }
.membership-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  margin-top: 3rem;
}
.mem-card {
  background: white; border-radius: 8px;
  border: 1px solid #e8edf2;
  padding: 1.5rem 1.25rem; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.mem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(4,44,83,0.1); }
.mem-card.featured {
  border: 2px solid var(--teal-mid);
}
.mem-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 0; right: 0; left: 0;
  background: var(--teal-mid);
  color: white; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 5px;
}
.mem-card.featured { padding-top: 2.5rem; }
.mem-icon {
  width: 48px; height: 48px; border-radius: 50%;
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.mem-card:nth-child(1) .mem-icon { background: #E6F1FB; color: var(--ocean-mid); }
.mem-card:nth-child(2) .mem-icon { background: #E1F5EE; color: var(--teal-dark); }
.mem-card:nth-child(3) .mem-icon { background: #E1F5EE; color: var(--teal-mid); }
.mem-card:nth-child(4) .mem-icon { background: #FAEEDA; color: #633806; }
.mem-card:nth-child(5) .mem-icon { background: #EEEDFE; color: #3C3489; }
.mem-name { font-weight: 600; font-size: 0.9rem; color: var(--ocean-deep); margin-bottom: 0.5rem; }
.mem-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--ocean-deep);
  margin-bottom: 0.25rem;
}
.mem-price span { font-size: 0.85rem; font-family: 'DM Sans', sans-serif; color: var(--text-light); }
.mem-divider { border: none; border-top: 1px solid #eee; margin: 1rem 0; }
.mem-features { list-style: none; text-align: left; font-size: 0.8rem; color: var(--text-mid); }
.mem-features li { padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.mem-features li::before { content: '✓'; color: var(--teal-mid); font-weight: 700; }
.mem-features li.no::before { content: '✗'; color: #ccc; }
.mem-features li.no { color: #bbb; }
.btn-join {
  width: 100%; margin-top: 1.25rem;
  background: var(--ocean-deep); color: white; border: none;
  padding: 10px; border-radius: 4px; font-size: 0.8rem;
  font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: background 0.2s;
}
.btn-join:hover { background: var(--ocean-mid); }
.mem-card.featured .btn-join { background: var(--teal-mid); }
.mem-card.featured .btn-join:hover { background: var(--teal-dark); }

/* =====================
   PROJECTS
   ===================== */
.projects { background: var(--white); }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid #e8edf2;
  transition: transform 0.2s;
}
.project-card:hover { transform: translateY(-4px); }
.project-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.project-card:nth-child(1) .project-img { background: linear-gradient(135deg, #0a3d6b, #1D9E75); }
.project-card:nth-child(2) .project-img { background: linear-gradient(135deg, #185FA5, #042C53); }
.project-card:nth-child(3) .project-img { background: linear-gradient(135deg, #0F6E56, #1D9E75); }
.project-body { padding: 1.25rem; }
.project-tag {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal-mid); font-weight: 600; margin-bottom: 0.5rem;
}
.project-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--ocean-deep); margin-bottom: 0.5rem;
}
.project-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.project-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--teal-mid); text-decoration: none;
  font-weight: 500; margin-top: 0.75rem;
  transition: gap 0.2s;
}
.project-link:hover { gap: 8px; }

/* =====================
   MISSION QUOTE
   ===================== */
.mission-quote {
  background: var(--ocean-deep);
  text-align: center; padding: 5rem 3rem;
}
.mission-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: white; line-height: 1.5;
  max-width: 800px; margin: 0 auto;
  font-style: italic;
}
.mission-quote cite {
  display: block; margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--sand);
  font-style: normal; letter-spacing: 0.08em; text-transform: uppercase;
}

/* =====================
   EVENTS
   ===================== */
.events { background: var(--teal-light); }
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.event-card {
  background: white; border-radius: 8px; padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 1px solid rgba(29,158,117,0.15);
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: 0 8px 24px rgba(8,80,65,0.1); }
.event-date {
  flex-shrink: 0; text-align: center; min-width: 52px;
}
.event-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--teal-mid); line-height: 1;
}
.event-date .month {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light);
}
.event-info h4 { font-size: 0.95rem; color: var(--ocean-deep); margin-bottom: 0.35rem; }
.event-info p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.event-tag {
  display: inline-block; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; background: var(--teal-light); color: var(--teal-dark);
  padding: 2px 8px; border-radius: 3px; margin-top: 6px;
}

/* =====================
   PARTNERS
   ===================== */
.partners { background: white; padding: 4rem 3rem; }
.partners-title {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-light); text-align: center; margin-bottom: 2rem;
}
.partners-logos {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center;
}
.partner-tag {
  background: #f7f9fc; border: 1px solid #e8edf2;
  border-radius: 4px; padding: 8px 18px;
  font-size: 0.8rem; color: var(--text-mid);
  font-weight: 400;
}

/* =====================
   CTA BAR
   ===================== */
.cta-bar {
  background: linear-gradient(90deg, var(--ocean-deep) 0%, var(--teal-dark) 100%);
  padding: 3rem;
}
.cta-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px; overflow: hidden;
}

.cta-grid a {
  display: block;
  text-decoration: none;
}

.cta-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem; text-align: center; cursor: pointer;
  transition: background 0.2s;
}
.cta-item:hover { background: rgba(255,255,255,0.1); }
.cta-item .cta-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.cta-item h4 { color: white; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; }
.cta-item p { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

.cta-item p { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.cta-item a { color: var(--sand); text-decoration: none; }  

.cta-grid a p {
  color: var(--sand);
}

/* =====================
   NEWSLETTER
   ===================== */
.newsletter { background: #f7f9fc; padding: 4rem 3rem; }
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--ocean-deep); margin-bottom: 0.75rem;
}
.newsletter p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: 1px solid #d3d1c7;
  border-radius: 4px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--teal-mid); }
.newsletter-form button {
  background: var(--teal-mid); color: white; border: none;
  padding: 12px 24px; border-radius: 4px; font-size: 0.85rem;
  font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif;
  white-space: nowrap; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--teal-dark); }

/* =====================
   FOOTER
   ===================== */
footer {
  background: #02182e;
  color: rgba(255,255,255,0.7);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1rem; margin-bottom: 1rem; display: block;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
.footer-brand .footer-contact { margin-top: 1.25rem; font-size: 0.8rem; }
.footer-brand .footer-contact a { color: var(--sand); text-decoration: none; }
.footer-col h5 {
  color: white; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 1rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sand); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.8rem; color: rgba(255,255,255,0.6);
  transition: all 0.2s; text-decoration: none;
}
.social-btn:hover { background: var(--teal-mid); border-color: var(--teal-mid); color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* =====================
   COOKIE BAR
   ===================== */
.cookie-bar {
  display: none; /* Add this to prevent flickering on page load */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ocean-deep); color: white;
  padding: 1rem 2rem; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.82rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2); /* Optional: added a shadow for depth */
}

.cookie-bar a { color: var(--sand); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal-mid); color: white; border: none;
  padding: 7px 18px; border-radius: 4px; cursor: pointer; font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 18px; border-radius: 4px; cursor: pointer; font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
}

/* =====================
   RESPONSIVE — TABLET (≤ 900px)
   ===================== */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 6rem;
  }
  .hero-text h1 { font-size: 2.6rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img { order: -1; }

  /* Membership */
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-grid .mem-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr 1fr; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-grid { grid-template-columns: repeat(2, 1fr); }

.cta-grid a {
  display: contents;
  text-decoration: none;
}

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  /* Sections */
  section { padding: 3.5rem 1.5rem; }
  .mission-quote { padding: 3.5rem 1.5rem; }
  .partners { padding: 3rem 1.5rem; }
  .newsletter { padding: 3rem 1.5rem; }
  .cta-bar { padding: 2rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}

/* =====================
   RESPONSIVE — MOBILE (≤ 600px)
   ===================== */
@media (max-width: 600px) {
  /* Nav */
  nav { padding: 0 1rem; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo .logo-badge { width: 30px; height: 30px; font-size: 0.65rem; }

  /* Hero */
  .hero-content { padding: 2rem 1rem 5rem; gap: 2rem; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text .hero-sub { font-size: 0.85rem; }
  .hero-text p { font-size: 0.9rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 13px 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1rem; }
  .stat-card .stat-num { font-size: 1.8rem; }
  .hero-badge { flex-direction: column; align-items: flex-start; gap: 6px; padding: 0.75rem 1rem; }
  .hero-waves { height: 70px; }

  /* Sections */
  section { padding: 2.5rem 1rem; }
  .section-title { font-size: 1.8rem; }
  .mission-quote { padding: 3rem 1rem; }
  .mission-quote blockquote { font-size: 1.3rem; }
  .partners { padding: 2.5rem 1rem; }
  .newsletter { padding: 2.5rem 1rem; }
  .cta-bar { padding: 1.5rem 1rem; }
  footer { padding: 2.5rem 1rem 1.5rem; }

  /* About */
  .about-grid { gap: 2rem; }

  /* Membership */
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .membership-grid .mem-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Events */
  .event-card { flex-direction: column; gap: 0.75rem; }
  .event-date { display: flex; align-items: baseline; gap: 6px; }
  .event-date .day { font-size: 1.5rem; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .cta-item { padding: 1.25rem 0.75rem; }
  .cta-item .cta-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .cta-item h4 { font-size: 0.8rem; }
  .cta-item p { font-size: 0.72rem; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }

  /* Cookie bar */
  .cookie-bar { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
