:root {
    --red:       #E31E24;
    --red-dark:  #b81519;
    --red-light: #fdf0f0;
    --blue:      #1F4B99;
    --blue-dark: #163678;
    --blue-light:#eef2fb;
    --gold:      #FFED00;
    --gold-dark: #d4c500;
    --white:     #ffffff;
    --off-white: #faf9f7;
    --text:      #1a1a2e;
    --text-mid:  #3d3d5c;
    --text-light:#6b6b8a;
    --border:    rgba(31,75,153,0.12);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--red);
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
  }

  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

  /* SVG badge placeholder that mirrors the actual logo shape */
  .logo-badge {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: conic-gradient(var(--red) 0deg 360deg);
    border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 900;
    color: white;
    box-shadow: 0 2px 12px rgba(227,30,36,0.3);
  }

  .logo-words { display: flex; flex-direction: column; line-height: 1.15; }
  .logo-words .top { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--blue); }
  .logo-words .sub { font-size: 10px; font-weight: 500; color: var(--red); letter-spacing: 1.8px; text-transform: uppercase; }

  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
  .nav-links a:hover { color: var(--red); }

  .btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 26px; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.22s; cursor: pointer; border: none; }
  .btn-red   { background: var(--red); color: white; }
  .btn-red:hover   { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(227,30,36,0.35); }
  .btn-blue  { background: var(--blue); color: white; }
  .btn-blue:hover  { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,75,153,0.35); }
  .btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
  .btn-outline:hover { background: var(--blue); color: white; }
  .btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 76px;
    background: var(--blue);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  /* Decorative circles */
  .hero::before {
    content: '';
    position: absolute; top: -160px; right: 38%;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,30,36,0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -120px; left: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,237,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left {
    padding: 80px 6% 80px 8%;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 1;
  }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); display: block; }

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 900; color: white; line-height: 1.08; margin-bottom: 28px;
  }
  .hero-h1 em { color: var(--gold); font-style: italic; }

  .hero-p {
    font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.72);
    font-weight: 300; max-width: 430px; margin-bottom: 44px;
  }

  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

  .hero-stats {
    margin-top: 68px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.12);
    border-radius: 12px; overflow: hidden;
  }
  .stat {
    background: rgba(255,255,255,0.06);
    padding: 24px 20px; text-align: center;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

  /* Hero right — photo collage */
  .hero-right {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 100px 6% 80px 40px; z-index: 1;
  }
  .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 130px;
    gap: 12px;
    max-width: 480px; width: 100%;
  }
  .photo-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .photo-box.tall { grid-row: span 2; }
  .photo-box.wide { grid-column: span 2; }

  .photo-tag {
    position: absolute; bottom: 10px; left: 10px;
    background: var(--red); color: white;
    font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px;
  }
  .photo-tag.gold { background: var(--gold); color: var(--text); }
  .photo-tag.blue { background: var(--blue-dark); }

  /* ── TAGLINE TICKER ── */
  .tagline-strip {
    background: var(--off-white);
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--blue);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .tagline-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marquee 22s linear infinite;
  }
  .tagline-strip:hover .tagline-track { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .tagline-strip span {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--blue);
    white-space: nowrap;
    padding: 0 18px;
  }
  .tagline-dot { color: var(--red); font-size: 18px; padding: 0 !important; flex-shrink: 0; }

  /* ── SECTION SHARED ── */
  section { padding: 96px 6%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .section-label.red { color: var(--red); }
  .section-label.blue { color: var(--blue); }
  .section-label::before { content: ''; display: block; width: 28px; height: 2px; }
  .section-label.red::before { background: var(--red); }
  .section-label.blue::before { background: var(--blue); }

  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px); font-weight: 900;
    line-height: 1.12; color: var(--text);
    margin-bottom: 20px;
  }
  .section-h2 span { color: var(--red); }
  .section-h2.light { color: white; }
  .section-h2.light span { color: var(--gold); }

  /* ── WHO WE ARE ── */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img {
    width: 100%; height: 480px; background: var(--blue-light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-style: italic; font-size: 14px;
    border: 1px solid var(--border);
  }
  .about-badge {
    position: absolute; bottom: -24px; right: -24px;
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--red);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 2px;
    box-shadow: 0 8px 32px rgba(227,30,36,0.4);
    border: 4px solid var(--gold);
  }
  .about-badge .num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: white; line-height: 1; }
  .about-badge .lbl { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; letter-spacing: 0.5px; }

  .about-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; font-weight: 300; }

  .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .pillar {
    background: var(--off-white);
    border-radius: 10px; padding: 20px;
    border-left: 4px solid var(--red);
  }
  .pillar.blue-border { border-left-color: var(--blue); }
  .pillar h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .pillar p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* ── PROJECTS ── */
  .projects-section { background: var(--blue); }
  .projects-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .projects-intro .section-label.gold { color: var(--gold); }
  .projects-intro .section-label.gold::before { background: var(--gold); }
  .projects-intro p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 380px; line-height: 1.7; font-weight: 300; }

  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .project-card {
    border-radius: 14px; overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
  .project-card:first-child { grid-row: span 2; }

  .card-img {
    width: 100%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(255,255,255,0.3); font-style: italic;
  }
  .card-img.tall { height: 340px; }
  .card-img.short { height: 160px; }

  /* Colored placeholder tints */
  .ci-red   { background: rgba(227,30,36,0.25); }
  .ci-blue  { background: rgba(31,75,153,0.5); }
  .ci-gold  { background: rgba(255,237,0,0.12); }
  .ci-mix   { background: linear-gradient(135deg, rgba(227,30,36,0.2), rgba(31,75,153,0.3)); }

  .card-body { padding: 22px; }
  .card-tag {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
  }
  .tag-red  { background: rgba(227,30,36,0.25); color: #ff8a8d; }
  .tag-gold { background: rgba(255,237,0,0.15); color: var(--gold); }
  .tag-blue { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

  .card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.25; }
  .card-body p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* ── IMPACT NUMBERS ── */
  .impact-section {
    background: var(--white);
    padding: 80px 6%;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .impact-section::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,75,153,0.04) 0%, transparent 65%);
  }
  .impact-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .impact-inner .section-label { color: var(--red); justify-content: center; }
  .impact-inner .section-label::before { background: var(--red); }
  .impact-inner .section-h2 { margin-bottom: 60px; }

  .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .impact-item {
    background: var(--blue-light);
    padding: 40px 20px; text-align: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .impact-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(31,75,153,0.12); }
  .impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 900; color: var(--blue); line-height: 1;
    margin-bottom: 8px;
  }
  .impact-num sup { font-size: 28px; vertical-align: super; }
  .impact-lbl { font-size: 14px; color: var(--text-mid); font-weight: 400; line-height: 1.5; }

  /* ── TESTIMONIALS ── */
  .testi-section { background: var(--off-white); }
  .testi-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
  .testi-header .section-label { justify-content: center; }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: white; border-radius: 14px; padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(31,75,153,0.06);
    position: relative;
  }
  .testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 64px; line-height: 0.8;
    color: var(--red); opacity: 0.15;
    position: absolute; top: 24px; left: 28px;
    pointer-events: none;
  }
  .testi-text {
    font-size: 14px; line-height: 1.8; color: var(--text-mid);
    margin-bottom: 24px; font-style: italic; position: relative; z-index: 1;
    padding-top: 20px;
  }
  .testi-org {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--border); padding-top: 20px;
  }
  .testi-icon {
    width: 42px; height: 42px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: white; flex-shrink: 0;
  }
  .ti-red  { background: var(--red); }
  .ti-blue { background: var(--blue); }
  .ti-gold { background: var(--gold); color: var(--text) !important; }
  .testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
  .testi-role { font-size: 12px; color: var(--text-light); }

  /* ── TIMELINE JOURNEY ── */
  .journey-section { background: white; }
  .journey-inner { max-width: 900px; margin: 0 auto; }
  .journey-header { text-align: center; margin-bottom: 64px; }

  .timeline { position: relative; }
  .timeline::before {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 2px; background: linear-gradient(to bottom, var(--red), var(--blue));
  }
  .tl-item {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
    align-items: center; margin-bottom: 52px; position: relative;
  }
  .tl-left { text-align: right; }
  .tl-right { text-align: left; }
  .tl-empty { }

  .tl-year {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
    z-index: 1; position: relative; flex-shrink: 0;
  }
  .tl-year.red  { background: var(--red); color: white; box-shadow: 0 0 0 6px rgba(227,30,36,0.15); }
  .tl-year.blue { background: var(--blue); color: white; box-shadow: 0 0 0 6px rgba(31,75,153,0.15); }
  .tl-year.gold { background: var(--gold); color: var(--text); box-shadow: 0 0 0 6px rgba(255,237,0,0.2); }

  .tl-content h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .tl-content p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* ── GET INVOLVED ── */
  .involve-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1a3d8a 100%);
    padding: 96px 6%; text-align: center; position: relative; overflow: hidden;
  }
  .involve-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .involve-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
  .involve-inner .section-label { color: var(--gold); justify-content: center; }
  .involve-inner .section-label::before { background: var(--gold); }
  .involve-inner .section-h2.light { margin-bottom: 20px; }
  .involve-inner p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 44px; font-weight: 300; }
  .involve-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 44px; text-align: left; }
  .involve-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 28px;
    transition: background 0.2s;
  }
  .involve-card:hover { background: rgba(255,255,255,0.11); }
  .ic-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
  }
  .ic-red  { background: rgba(227,30,36,0.3); }
  .ic-gold { background: rgba(255,237,0,0.15); }
  .involve-card h4 { font-size: 16px; font-weight: 600; color: white; margin-bottom: 8px; }
  .involve-card p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .involve-ctas { display: flex; gap: 14px; justify-content: center; }

  /* ── CONTACT ── */
  .contact-section { background: var(--off-white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--text); margin-bottom: 16px; }
  .contact-info p { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
  .contact-details { display: flex; flex-direction: column; gap: 20px; }
  .cd-item { display: flex; align-items: center; gap: 14px; }
  .cd-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .cdi-red  { background: var(--red-light); }
  .cdi-blue { background: var(--blue-light); }
  .cdi-gold { background: #fffbdd; }
  .cd-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
  .cd-value { font-size: 15px; font-weight: 500; color: var(--text); }

  .contact-form { background: white; border-radius: 16px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 4px 30px rgba(31,75,153,0.07); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
  .form-group input,
  .form-group textarea {
    padding: 12px 16px; border-radius: 8px;
    border: 1.5px solid var(--border);
    font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
    background: var(--off-white);
    outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--blue); background: white; }
  .form-group textarea { min-height: 110px; resize: vertical; }

  /* ── FOOTER ── */
  footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 60px 6% 32px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 300px; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none; color: rgba(255,255,255,0.7);
    transition: background 0.2s;
  }
  .social-btn:hover { background: var(--red); color: white; }

  .footer-col h5 { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: white; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── SCROLL ANIMATION ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.7s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.22s; }
  .delay-3 { animation-delay: 0.34s; }
  .delay-4 { animation-delay: 0.46s; }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: all 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-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: white;
    border-bottom: 3px solid var(--red);
    padding: 24px 6%;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .mobile-menu a:last-child {
    margin-top: 16px;
    border-bottom: none;
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
  }

  /* ── TABLET (max 900px) ── */
  @media (max-width: 900px) {
    section { padding: 72px 5%; }

    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 5% 52px; }
    .hero-right { display: none; }
    .hero-stats { margin-top: 40px; }

    /* Tagline ticker - no override needed, works at all sizes */

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { height: 300px; }
    .about-badge { width: 110px; height: 110px; bottom: -18px; right: -10px; }
    .about-badge .num { font-size: 26px; }
    .pillars { grid-template-columns: 1fr 1fr; }

    /* Projects */
    .projects-intro { flex-direction: column; gap: 16px; align-items: flex-start; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-card:first-child { grid-row: auto; grid-column: span 2; }
    .card-img.tall { height: 220px; }

    /* Impact */
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Timeline */
    .timeline::before { left: 28px; }
    .tl-item { display: flex; flex-direction: row; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
    .tl-left { display: block; }
    .tl-empty { display: none; }
    .tl-right { text-align: left; width: 100%; }
    .tl-year { width: 56px; height: 56px; font-size: 12px; flex-shrink: 0; margin-top: 4px; }
	.timeline::before { display: none; }

    /* Get Involved */
    .involve-cards { grid-template-columns: 1fr; }
    .involve-inner { max-width: 100%; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── MOBILE (max 480px) ── */
  @media (max-width: 480px) {
    section { padding: 56px 4%; }

    /* Nav */
    nav { padding: 0 4%; height: 66px; }
    .mobile-menu { top: 66px; padding: 20px 4%; }
    .logo-words .top { font-size: 14px; }
    .logo-words .sub { display: none; }
    .logo-badge { width: 42px; height: 42px; font-size: 16px; }

    /* Hero */
    .hero-left { padding: 48px 4% 44px; }
    .hero-h1 { font-size: 34px; }
    .hero-p { font-size: 15px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .stat-num { font-size: 26px; }
    .stat-label { font-size: 10px; }

    /* Tagline strip */
    .tagline-strip span { font-size: 13px; }

    /* About */
    .about-img { height: 240px; }
    .about-badge { width: 90px; height: 90px; right: 0; }
    .about-badge .num { font-size: 20px; }
    .about-badge .lbl { font-size: 9px; }
    .pillars { grid-template-columns: 1fr; }

    /* Section headings */
    .section-h2 { font-size: 28px; }

    /* Projects — single column on small phones */
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-column: auto; }
    .card-img.tall { height: 200px; }
    .card-img.short { height: 180px; }

    /* Impact */
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .impact-num { font-size: 38px; }
    .impact-item { padding: 28px 12px; border-radius: 10px; }

    /* Testimonials */
    .testi-card { padding: 24px; }

    /* Timeline */
    .tl-content h4 { font-size: 16px; }
    .journey-inner { max-width: 100%; }
    .tl-year { width: 48px; height: 48px; font-size: 11px; }

    /* Get Involved */
    .involve-ctas { flex-direction: column; align-items: center; }
    .involve-ctas .btn { width: 100%; justify-content: center; }

    /* Contact */
    .contact-info h2 { font-size: 28px; }
    .contact-form { padding: 24px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { font-size: 12px; }
  }