@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #1B4332;
    --secondary: #1B3A6B;
    --accent: #D4A017;
    --bg: #FFFFFF;
    --text: #2D2D2D;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    padding-top: 196px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Navigation ── */
.navbar {
  background: rgba(245,240,232,0.97) !important;
  border-bottom: 3px solid #1B4332 !important;
  box-shadow: none !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* ── Fixed right sidebar ── */
.sidebar-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.sidebar-fixed button {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 0;
    transition: background 0.2s;
}

.sidebar-fixed button:hover {
    background: #16325a;
}

.navbar .logo img {
  height: 130px;
  width: auto;
  display: block;
}
.navbar .container {
  padding: 0.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.navbar .button { font-family: 'Inter', sans-serif !important; }

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    white-space: nowrap;
}

.navbar .nav-links li { position: relative; }

.navbar .nav-links li:hover > .dropdown { display: block; }

.navbar .nav-links a {
  color: #1B4332;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', Georgia, serif;
  text-decoration: none;
}
.navbar .nav-links a:hover {
  color: #D4A017;
}

.navbar .dropdown {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;
    border-top: 3px solid var(--accent);
}

.navbar .dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-weight: 400;
}

.navbar .dropdown a:hover { background: #f5f5f5; color: var(--primary); }

/* ── Buttons ── */
.button {
    background: var(--accent);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.button:hover { background: #c89a14; }

.button-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.button-outline:hover { background: white; color: var(--primary) !important; }

/* ── Ticker ── */
.ticker {
    background: var(--secondary);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.9rem 0;
    position: fixed;
    top: 160px;
    left: 0;
    right: 0;
    z-index: 999;
}

.ticker p {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 22s linear infinite;
    font-size: 0.9rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ── Hero ── */
.hero {
    height: 100vh;
    background: url('images/Joe-kids-ball.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.92;
}

.hero .buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--primary);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 { color: white; font-size: 2.5rem; }

.page-hero p { opacity: 0.85; margin-top: 0.5rem; font-size: 1.1rem; }

/* ── Welcome Popup ── */
.popup {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    max-width: 290px;
    z-index: 9999;
    border-top: 4px solid #D4A017;
    border-radius: 6px;
}

.popup.visible { display: block; }

.popup h3 { color: var(--primary); margin-bottom: 0.5rem; }

.popup p { font-size: 0.85rem; margin-bottom: 1rem; }

.popup .close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    color: #888;
    background: none;
    border: none;
}

.popup .close:hover { color: var(--primary); }

/* ── Counters ── */
.counters-section {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.counters-section h2 { color: white; margin-bottom: 2rem; }

/* ── Climate Imperative cards ── */
.climate-imperative {
    background: #E8F4FD;
    padding: 6rem 2rem;
}

.climate-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.climate-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.climate-row.alt {
    flex-direction: row-reverse;
}

.climate-card {
    flex: 1;
    background: white;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.climate-text {
    width: 100%;
}

.climate-text h2 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.75rem;
    line-height: 1.05;
}

.climate-text p {
    color: #2d2d2d;
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.climate-image {
    flex: 1;
    height: 400px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .climate-row {
        flex-direction: column;
    }
    .climate-row.alt {
        flex-direction: column;
    }
    .climate-image {
        width: 100%;
        height: 280px;
    }
    .climate-card {
        padding: 2.25rem 1.75rem;
    }
}

.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.counter { text-align: center; }

.counter .number {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.counter .label { margin-top: 0.5rem; font-size: 0.95rem; opacity: 0.9; }

/* ── Sections ── */
.section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section.visible { }

.section h2 { margin-bottom: 1.5rem; font-size: 2rem; }

.section-full {
    padding: 5rem 2rem;
}

.section-full.visible { }

.fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }

.section-full .inner { max-width: 1100px; margin: 0 auto; }

/* ── Cards ── */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 210px;
    border-top: 4px solid var(--accent);
    transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }

.card h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1rem; }

.card p { font-size: 0.9rem; color: #555; }

/* ── Profile ── */
.profile {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.profile img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.profile .bio h3 { color: var(--primary); margin-bottom: 0.3rem; }

.profile .bio .title { color: var(--accent); font-weight: 600; margin-bottom: 1rem; }

.profile-irena {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.profile-irena img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.profile-irena .bio h3 { color: var(--primary); margin-bottom: 0.3rem; }

.profile-irena .bio .title { color: var(--accent); font-weight: 600; margin-bottom: 1rem; }

.badges { margin-top: 1rem; }

.badges span {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ── Gallery ── */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.gallery img {
    width: calc(50% - 0.8rem);
    border-radius: 6px;
    object-fit: cover;
    height: 220px;
}

/* ── Logos ── */
.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.logos img { max-height: 70px; filter: grayscale(30%); }

/* ── Spotlight band ── */
.spotlight {
    background: var(--primary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.spotlight h2 { color: white; font-size: 2rem; margin-bottom: 1rem; }

.spotlight p { max-width: 700px; margin: 0 auto; opacity: 0.9; font-size: 1.05rem; }

/* ── Mission strip ── */
.mission-strip {
    background: var(--secondary);
    color: white;
    padding: 4rem 2rem;
}

.mission-strip .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.mission-strip .block { flex: 1; min-width: 280px; }

.mission-strip h3 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.mission-strip p { opacity: 0.92; }

/* ── CTA ── */
.cta-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 { color: var(--primary); margin-bottom: 1rem; }

.cta-section p { max-width: 620px; margin: 0 auto 2rem; color: #555; }

/* ── Contact form ── */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info { flex: 1; min-width: 260px; }

.contact-info h3 { color: var(--primary); margin-bottom: 1rem; }

.contact-info p { margin-bottom: 0.6rem; color: #444; }

.contact-form { flex: 2; min-width: 300px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.contact-form textarea { height: 130px; resize: vertical; }

/* ── Footer ── */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.footer .column { flex: 1; min-width: 200px; }

.footer h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer a:hover { color: var(--accent); }

.footer input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Leadership Profile ── */
.leader-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.leader-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.leader-card {
    flex: 0 0 420px;
    background: #1B4332;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
}

.leader-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.leader-card-body {
    padding: 1.8rem;
}

.leader-card-body h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.leader-card-title {
    color: #D4A017;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212,160,23,0.35);
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.leader-contact p {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.5;
}

.contact-icon {
    color: #D4A017;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.leader-bio {
    flex: 1;
    min-width: 0;
}

.leader-bio h2 {
    color: #1B4332;
    font-size: 2rem;
    margin-bottom: 0.35rem;
}

.leader-bio-title {
    color: #D4A017;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1.8rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #D4A017;
}

.leader-bio-text p {
    color: #444;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.leader-bio-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .leader-inner {
        flex-direction: column;
    }
    .leader-card {
        flex: none;
        width: 100%;
        max-width: 420px;
        position: static;
    }
    .leader-card img {
        height: 300px;
    }
}

/* ── Responsive (base — see comprehensive block below for full overrides) ── */
@media (max-width: 768px) {
    .navbar .container { flex-wrap: wrap; gap: 0.5rem; padding: 0.5rem 1rem; }
    .navbar .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .hero h1 { font-size: 2rem; }
    .counters { gap: 1.5rem; }
    .profile { justify-content: center; text-align: center; }
    .mission-strip .inner { flex-direction: column; }
    .gallery img { width: 100%; }
    .contact-grid { flex-direction: column; }
}

/* ═══════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ═══════════════════════════════════════ */

/* Hamburger menu button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1B4332;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

@media (max-width: 768px) {

  /* NAV */
  .navbar .container {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    position: relative;
  }
  .navbar .logo img { height: 80px !important; }
  .hamburger { display: flex; margin-left: auto; }

  /* Hide sidebar on mobile */
  .sidebar-fixed { display: none !important; }

  /* Body spacing for smaller header */
  body { padding-top: 145px !important; }

  /* Ticker - fix position for mobile (margin-top doesn't work on fixed elements) */
  .ticker { top: 90px !important; }

  /* Climate imperative images - stack vertically */
  .climate-inner img { flex: 1 1 100% !important; height: 220px !important; }

  /* Home executive/Harvard section - stack vertically */
  #executive { flex-direction: column !important; }
  #executive > div { width: 100% !important; }
  #executive > div:first-child { height: 260px; }
  #executive > div:last-child { padding: 2rem 1.5rem !important; }

  /* Popup - ensure it fits on small screens */
  .popup, #welcome-popup { right: 1rem !important; left: 1rem !important; max-width: 100% !important; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 1rem 0;
    border-top: 2px solid #1B4332;
    gap: 0 !important;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links .dropdown {
    position: static;
    display: none;
    background: #f7f7f7;
    box-shadow: none;
    padding: 0;
  }
  .nav-links li:hover .dropdown { display: block; }
  .nav-links .dropdown a {
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
  }
  .navbar .button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
  }

  /* HERO SECTIONS */
  .page-hero { padding: 4rem 1.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.95rem; }

  /* HOME HERO */
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.95rem; }
  .hero .buttons { flex-direction: column; align-items: center; }

  /* COLOR BLOCKS */
  .color-blocks { flex-wrap: wrap; }
  .color-block { min-width: 50%; flex: 1 1 50%; }

  /* COUNTERS */
  .counters { flex-wrap: wrap; }
  .counter { min-width: 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 1rem; }
  .number { font-size: 3rem; }

  /* ABOUT PAGE */
  .story-section { flex-direction: column; }
  .story-text { padding: 2.5rem 1.5rem; }
  .story-images { height: 300px; flex-direction: row; }
  .approach-section { padding: 2.5rem 1.5rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .stats-strip { padding: 3rem 1rem; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 0.5rem; }
  .stat-number { font-size: 2.8rem; }
  .values-intro { padding: 2.5rem 1.5rem 1rem; }
  .values-intro h2 { font-size: 2rem; }
  .value-block { flex-direction: column; }
  .value-block.reverse { flex-direction: column; }
  .value-image { width: 100%; height: 260px; }
  .value-content { padding: 2.5rem 1.5rem; }
  .value-content h3 { font-size: 1.4rem; }
  .value-number { font-size: 4rem; }
  .policy-section { padding: 2.5rem 1.5rem; }
  .policy-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mission-strip { grid-template-columns: 1fr; }
  .mission-block { padding: 2.5rem 1.5rem; }
  .pull-quote { padding: 2.5rem 1.5rem; }
  .pull-quote blockquote { font-size: 1.2rem; }

  /* WHAT WE DO PAGE */
  .program-intro { padding: 2.5rem 1.5rem; }
  .program-block { flex-direction: column; min-height: auto; }
  .program-block.reverse { flex-direction: column; }
  .program-image { width: 100%; height: 260px; }
  .program-content { padding: 2.5rem 1.5rem; }
  .program-content h2 { font-size: 1.5rem; }
  .program-pull { padding: 2.5rem 1.5rem; }
  .program-pull blockquote { font-size: 1.2rem; }

  /* IMPACT PAGE */
  .trees-section { padding: 2.5rem 1.5rem; }
  .trees-section h2 { font-size: 2rem; }
  .trees-gallery { height: 200px; }
  .trees-quote { padding: 1.5rem; }
  .trees-quote p { font-size: 1.1rem; }
  .forest-band { flex-direction: column; padding: 2.5rem 1.5rem; gap: 2rem; }
  .forest-stats { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .forest-divider { display: none; }
  .forest-stat-number { font-size: 3rem; }
  .forest-text h2 { font-size: 1.6rem; }
  .impact-pull { padding: 2.5rem 1.5rem; }
  .impact-pull blockquote { font-size: 1.2rem; }
  .impact-pull-2 { padding: 2.5rem 1.5rem; }
  .impact-pull-2 blockquote { font-size: 1.2rem; }
  .achievements-intro { padding: 2.5rem 1.5rem 1rem; }
  .achievements-intro h2 { font-size: 2rem; }
  .achievement-block { flex-direction: column; min-height: auto; }
  .achievement-block.reverse { flex-direction: column; }
  .achievement-block img { width: 100%; height: 260px; }
  .achievement-text { padding: 2.5rem 1.5rem; }
  .achievement-text h3 { font-size: 1.4rem; }
  .achievement-big-number { font-size: 4rem; top: 0.5rem; right: 1rem; }
  .achievement-images-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .achievement-images-grid img { height: 150px; }
  .community-section { padding: 2.5rem 1.5rem; }
  .community-section h2 { font-size: 2rem; }
  .community-gallery { height: 180px; }

  /* PARTNERS PAGE */
  .partners-intro { padding: 2.5rem 1.5rem; }
  .partners-intro h2 { font-size: 2rem; }
  .partner-tiles { grid-template-columns: 1fr 1fr; gap: 3px; }
  .partner-tile { padding: 2rem 1rem; }
  .partner-feature { flex-direction: column; }
  .partner-feature-image { width: 100%; height: 260px; }
  .partner-feature-content { padding: 2.5rem 1.5rem; }
  .partner-feature-content h2 { font-size: 1.6rem; }
  .partner-pull { padding: 2.5rem 1.5rem; }
  .partner-pull blockquote { font-size: 1.2rem; }
  .why-partner { padding: 2.5rem 1.5rem; }
  .why-partner h2 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 2rem 1.5rem; }
  .opportunities { padding: 2.5rem 1.5rem; }
  .opportunities h2 { font-size: 2rem; }
  .opp-grid { grid-template-columns: 1fr 1fr; }
  .paris-spotlight { flex-direction: column; padding: 2.5rem 1.5rem; gap: 1.5rem; text-align: center; }
  .paris-icon { font-size: 4rem; }
  .paris-content h2 { font-size: 1.6rem; }

  /* LEADERSHIP PAGE */
  .leader-section { padding: 2.5rem 1.5rem; }
  .leader-inner { flex-direction: column; }
  .leader-card { width: 100%; max-width: 100%; }
  .leader-bio { padding: 0; }
  .leader-bio-title { font-size: 1.8rem; }

  /* CONTACT PAGE */
  .contact-grid { flex-direction: column; }
  .contact-info { width: 100%; }
  .contact-form { width: 100%; }

  /* DONATE PAGE */
  .donate-hero { padding: 3rem 1.5rem; }
  .donate-hero h1 { font-size: 2rem; }
  .donate-body { padding: 2.5rem 1.5rem; }
  .payment-tabs { flex-direction: column; }
  .payment-tab { width: 100%; text-align: center; }

  /* FOOTER */
  .footer .columns { flex-direction: column; gap: 2rem; padding: 2.5rem 1.5rem; }
  .footer .column { width: 100%; }
  .footer-bottom { padding: 1.5rem; text-align: center; }
  .footer-bottom p { font-size: 0.8rem; }

  /* CTA SECTIONS */
  .cta-section { padding: 3.5rem 1.5rem; }
  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 0.95rem; }

  /* SPOTLIGHT */
  .spotlight { padding: 2.5rem 1.5rem; }
  .spotlight h2 { font-size: 1.8rem; }

  /* MISSION STRIP */
  .mission-strip .inner { flex-direction: column; }
  .mission-strip .block { padding: 2rem 1.5rem; }

  /* TICKER - handled above with top property */

  /* GENERAL */
  section { padding: 2.5rem 1.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .navbar .logo img { height: 60px !important; }
  body { padding-top: 125px !important; }
  .ticker { top: 70px !important; }
  .page-hero h1 { font-size: 1.7rem; }
  .color-block { min-width: 100%; }
  .partner-tiles { grid-template-columns: 1fr; }
  .opp-grid { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .achievement-images-grid { grid-template-columns: 1fr; }
  .trees-gallery { flex-direction: column; height: auto; gap: 6px; }
  .trees-gallery img { height: 200px; flex: none; }
  .community-gallery { flex-direction: column; height: auto; gap: 6px; }
  .community-gallery img { height: 200px; flex: none; }
  .stat-item { min-width: 100%; }
  .forest-stat { min-width: 100%; }
  .counter { min-width: 100%; }
}
