﻿    /* ============================================================
       CSS CUSTOM PROPERTIES  (identical to index.html)
    ============================================================ */
    :root {
      --blue-dark:    #0d2a4e;
      --blue-mid:     #1a4480;
      --blue-light:   #2563a8;
      --orange:       #f07c1e;
      --orange-dark:  #d96712;
      --orange-light: #ffb347;
      --white:        #ffffff;
      --gray-50:      #f8f9fb;
      --gray-100:     #eef1f6;
      --gray-200:     #dde3ed;
      --gray-400:     #94a3b8;
      --gray-600:     #475569;
      --gray-800:     #1e293b;
      --text:         #1e293b;
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    24px;
      --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
      --shadow-md:    0 8px 32px rgba(0,0,0,.12);
      --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
      --transition:   .3s cubic-bezier(.4,0,.2,1);
      --max-w:        1200px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a  { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700; 
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title.white { color: var(--white); }
    .body-text { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; }
    .body-text.white { color: rgba(255,255,255,.85); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: .02em;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(240,124,30,.35);
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(240,124,30,.5);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.7);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white);
      transform: translateY(-2px);
    }
    .btn-blue {
      background: var(--blue-dark);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(13,42,78,.25);
    }
    .btn-blue:hover {
      background: var(--blue-mid);
      transform: translateY(-2px);
    }
    .btn-lg { padding: 18px 44px; font-size: 1.05rem; }

    /* ============================================================
       SCROLL REVEAL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ============================================================
       NAVIGATION  (identical to index.html)
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13,42,78,.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-logo img { height: 48px; width: auto; object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      color: rgba(255,255,255,.82);
      font-size: .9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-links a.active { color: var(--white); font-weight: 600; background: rgba(255,255,255,.13); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(240,124,30,.85); }
    .nav-links .btn-nav-donate {
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 50px;
      margin-left: 8px;
      box-shadow: 0 2px 12px rgba(240,124,30,.4);
    }
    .nav-links .btn-nav-donate:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(240,124,30,.55);
    }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
      z-index: 1100;
    }
    .nav-toggle span {
      display: block;
      width: 26px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: var(--blue-dark);
      padding: 12px 24px 24px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: rgba(255,255,255,.85);
      font-size: 1rem;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      transition: color var(--transition);
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: var(--orange); }
    .nav-mobile a.active { color: var(--orange); font-weight: 600; }
    .nav-mobile .btn-nav-donate {
      margin-top: 16px;
      background: var(--orange);
      color: var(--white);
      border-radius: 50px;
      padding: 14px 24px;
      font-weight: 700;
      text-align: center;
      border-bottom: none;
    }

    /* sticky donate */
    #stickyDonate {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 1200;
      padding: 14px 18px;
      border-radius: 999px;
      font-size: 0.95rem;
      letter-spacing: .05em;
      animation: pulseButton 2.4s ease-in-out infinite;
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    #stickyDonate:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0,0,0,.35);
    }
    /* Override pulseButton when wwa effects are active */
    #stickyDonate.wwa-donate-btn {
      animation: none;
    }
    #stickyDonate.wwa-donate-btn:hover {
      transform: translateY(-8px) scale(1.08);
      box-shadow:
        0 28px 64px rgba(240,124,30,.7),
        0 0 0 8px  rgba(240,124,30,.18),
        0 0 0 18px rgba(240,124,30,.07);
    }
    @keyframes pulseButton {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/who-we-are/second-image.png');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.06);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(13,42,78,.92) 0%,
        rgba(13,42,78,.78) 55%,
        rgba(13,42,78,.45) 100%
      );
    }

    /* Animated gradient particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-particles span {
      position: absolute;
      border-radius: 50%;
      background: rgba(240,124,30,.12);
      animation: floatParticle var(--dur, 8s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }
    @keyframes floatParticle {
      0%, 100% { transform: translateY(0) scale(1); opacity: .4; }
      50%       { transform: translateY(-30px) scale(1.1); opacity: .7; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,124,30,.2);
      border: 1px solid rgba(240,124,30,.4);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 24px;
      animation: fadeSlideDown .8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .6; transform: scale(1.4); }
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 12px;
      animation: fadeSlideUp .9s .2s ease both;
    }
    .hero-headline .accent {
      font-style: italic;
      color: var(--orange-light);
      display: block;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.85);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 520px;
      animation: fadeSlideUp .9s .4s ease both;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeSlideUp .9s .6s ease both;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.5);
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: scrollBob 2s ease-in-out infinite;
    }
    @keyframes scrollBob {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50%       { transform: scaleY(.65); opacity: .4; }
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about {
      padding: 110px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      transition: transform .6s ease;
    }
    .about-image-wrap:hover img {
      transform: scale(1.02);
    }
    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--orange);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .about-badge strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1;
    }
    .about-badge span {
      font-size: .75rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      opacity: .9;
    }
    .about-text { }
    .about-text .section-label { color: var(--orange); }
    .about-body {
      font-size: 1.05rem;
      color: var(--gray-600);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-body .kw {
      color: var(--blue-dark);
      font-weight: 700;
    }

    /* Service icons row */
    .service-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }
    .service-icon-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 12px 18px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--blue-dark);
      transition: var(--transition);
    }
    .service-icon-item:hover {
      background: var(--blue-dark);
      color: var(--white);
      border-color: var(--blue-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .service-icon-item .si-icon {
      font-size: 1.3rem;
      transition: transform .3s ease;
    }
    .service-icon-item:hover .si-icon {
      transform: scale(1.25) rotate(-5deg);
    }

    /* ============================================================
       MISSION HIGHLIGHTS
    ============================================================ */
    #mission-highlights {
      padding: 100px 0;
      background: var(--gray-50);
    }
    .mh-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }
    .mh-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .mh-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .mh-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }
    .mh-card:hover::before { transform: scaleX(1); }
    .mh-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,.13);
      border-color: transparent;
    }
    .mh-icon {
      font-size: 2.8rem;
      margin-bottom: 16px;
      display: block;
      transition: transform .4s ease, color .4s ease, text-shadow .4s ease;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
      will-change: transform, text-shadow;
    }
    .mh-icon-feed {
      animation-name: iconFloat;
    }
    .mh-icon-medical {
      animation-name: iconPulse;
    }
    .mh-icon-education {
      animation-name: iconRise;
    }
    .mh-icon-disaster {
      animation-name: iconRipple;
    }
    .mh-card:hover .mh-icon {
      transform: scale(1.2) rotate(-8deg);
      color: var(--orange);
      text-shadow: 0 0 14px rgba(240,124,30,.18);
    }
    .mh-card:hover .mh-icon-feed {
      animation-duration: 5.8s;
    }
    .mh-card:hover .mh-icon-medical {
      animation-duration: 5.2s;
    }
    .mh-card:hover .mh-icon-education {
      animation-duration: 5.6s;
    }
    .mh-card:hover .mh-icon-disaster {
      animation-duration: 5.9s;
    }
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-6px) scale(1.04); }
    }
    @keyframes iconPulse {
      0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
      30% { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(255,255,255,.18)); }
      60% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
    }
    @keyframes iconRise {
      0%, 100% { transform: translateY(0) scale(1); }
      40% { transform: translateY(-5px) scale(1.03); }
      70% { transform: translateY(-3px) scale(1.02); }
    }
    @keyframes iconRipple {
      0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(255,255,255,0); }
      20% { transform: scale(1.02); text-shadow: 0 0 12px rgba(37,99,168,.14); }
      50% { transform: scale(1.01); text-shadow: 0 0 0 rgba(255,255,255,0); }
      80% { transform: scale(1.03); text-shadow: 0 0 10px rgba(240,124,30,.12); }
    }
    .mh-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }
    .mh-desc {
      font-size: .9rem;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ============================================================
       MEET THE TEAM
    ============================================================ */
    #team {
      padding: 110px 0;
      background: var(--white);
    }
    .team-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 64px;
    }

    /* Featured founder card */
    .team-founder-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 48px;
    }
    .team-founder-card {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      gap: 36px;
      max-width: 680px;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .team-founder-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 70px rgba(13,42,78,.35);
    }
    .team-founder-card::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(240,124,30,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .founder-photo-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .founder-photo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 4px solid var(--orange);
      box-shadow: 0 0 0 6px rgba(240,124,30,.2);
      transition: transform .4s ease;
    }
    .team-founder-card:hover .founder-photo {
      transform: scale(1.04);
    }
    .founder-info { color: var(--white); }
    .founder-info .founder-label {
      display: inline-block;
      background: rgba(240,124,30,.25);
      border: 1px solid rgba(240,124,30,.4);
      color: var(--orange-light);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 12px;
    }
    .founder-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .founder-info .founder-role {
      font-size: .95rem;
      color: rgba(255,255,255,.7);
      margin-bottom: 14px;
    }
    .founder-info .founder-bio {
      font-size: .88rem;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
    }

    /* Team grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .team-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      transition: transform .35s ease, box-shadow .35s ease;
      cursor: default;
    }
    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 56px rgba(0,0,0,.14);
    }
    .team-photo-wrap {
      position: relative;
      overflow: hidden;
      height: 220px;
    }
    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform .5s ease;
    }
    .team-card:hover .team-photo {
      transform: scale(1.07);
    }
    .team-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,42,78,.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .35s ease;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
    .team-card:hover .team-photo-overlay {
      opacity: 1;
    }
    .team-overlay-role {
      font-size: .82rem;
      font-weight: 700;
      color: var(--orange-light);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .team-info {
      padding: 20px;
    }
    .team-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 4px;
    }
    .team-info p {
      font-size: .85rem;
      color: var(--gray-600);
      font-weight: 500;
    }
    .team-role-bar {
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      margin-top: 10px;
      transition: width .3s ease;
    }
    .team-card:hover .team-role-bar { width: 56px; }

    /* ============================================================
       DONATION CTA SECTION
    ============================================================ */
    #donate-cta {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
    }
    .donate-cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/landingpage/giving_back_feels_good.webp');
      background-size: cover;
      background-position: center;
    }
    .donate-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13,42,78,.94) 0%, rgba(26,68,128,.88) 100%);
    }

    /* Animated glow blobs */
    .cta-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      animation: blobMove var(--dur, 10s) ease-in-out infinite alternate;
    }
    @keyframes blobMove {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(30px, -20px) scale(1.1); }
    }

    .donate-cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .donate-cta-content .section-label { color: var(--orange-light); }
    .donate-cta-content .section-title { color: var(--white); margin-bottom: 16px; }
    .donate-cta-content .body-text { color: rgba(255,255,255,.8); margin-bottom: 44px; }
    .donate-cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }
    .btn-primary.pulse-cta {
      animation: ctaPulse 2.6s ease-in-out infinite;
    }
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(240,124,30,.35); }
      50%       { box-shadow: 0 8px 40px rgba(240,124,30,.65); }
    }
    .impact-note {
      margin-top: 28px;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
    }

    /* ============================================================
       FOOTER  (identical to index.html)
    ============================================================ */
    #footer {
      background: #060f1e;
      color: rgba(255,255,255,.75);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand img {
      height: 52px;
      width: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }
    .footer-brand p {
      font-size: .9rem;
      line-height: 1.8;
      color: rgba(255,255,255,.55);
      margin-bottom: 24px;
    }
    .footer-socials { display: flex; gap: 10px; }
    .social-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      transition: var(--transition);
      cursor: pointer;
      color: rgba(255,255,255,.6);
    }
    .social-icon:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before { content: '\203A'; color: var(--orange); font-size: 1rem; }
    .footer-links a:hover { color: var(--orange); }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.6;
    }
    .contact-icon {
      width: 32px; height: 32px;
      background: rgba(240,124,30,.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      flex-shrink: 0;
      font-size: .9rem;
    }
    .contact-row a { color: rgba(255,255,255,.55); transition: color var(--transition); }
    .contact-row a:hover { color: var(--orange); }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
    }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      transition: color var(--transition);
    }
    .footer-legal a:hover { color: var(--orange); }

    /* ============================================================
       WHO WE ARE — HERO CTA BUTTONS
    ============================================================ */

    /* ── Donate Here button ── */
    .wwa-donate-btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: transform .45s cubic-bezier(.34,1.56,.64,1),
                  box-shadow .3s ease,
                  filter .2s ease;
    }
    /* Idle shimmer sweep */
    .wwa-donate-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -90%; bottom: 0;
      width: 60%;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
      transform: skewX(-18deg);
      animation: wwaShimmerIdle 3.5s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
    }
    @keyframes wwaShimmerIdle {
      0%, 30%   { left: -90%; opacity: 1; }
      52%       { left: 160%; opacity: 1; }
      53%, 100% { left: -90%; opacity: 0; }
    }
    .wwa-donate-btn:hover {
      transform: translateY(-8px) scale(1.08);
      background: linear-gradient(135deg, #f9923a 0%, #f06f1e 50%, #e55a00 100%);
      box-shadow:
        0 32px 72px rgba(240,124,30,.75),
        0 0 0 8px  rgba(240,124,30,.18),
        0 0 0 18px rgba(240,124,30,.07),
        0 0 0 32px rgba(240,124,30,.03);
      filter: brightness(1.07);
    }
    .wwa-donate-btn:hover::before {
      animation: wwaShimmerHover .65s ease forwards;
    }
    @keyframes wwaShimmerHover {
      0%   { left: -90%; opacity: 1; }
      100% { left: 160%; opacity: 0; }
    }
    .wwa-donate-btn:active {
      transform: translateY(-2px) scale(.97);
      transition: transform .1s ease;
    }

    /* Heartbeat on ♥ */
    .wwa-heart {
      display: inline-block;
      animation: wwaHeartbeat 2.2s ease-in-out infinite;
      transform-origin: center;
    }
    @keyframes wwaHeartbeat {
      0%, 70%, 100% { transform: scale(1); }
      14%           { transform: scale(1.45); }
      28%           { transform: scale(1); }
      42%           { transform: scale(1.25); }
    }

    /* ── Learn Our Story button ── */
    .wwa-story-btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: transform .45s cubic-bezier(.34,1.56,.64,1),
                  color .3s ease,
                  border-color .3s ease,
                  box-shadow .3s ease;
      animation: wwaStoryGlow 3s ease-in-out infinite;
    }
    @keyframes wwaStoryGlow {
      0%, 100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
      50%      { box-shadow: 0 0 0 5px rgba(255,255,255,.13); }
    }
    /* Liquid fill from bottom */
    .wwa-story-btn::before {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 0;
      background: rgba(255,255,255,.97);
      border-radius: inherit;
      transition: height .48s cubic-bezier(.4,0,.2,1);
      z-index: -1;
    }
    .wwa-story-btn:hover::before { height: 100%; }
    .wwa-story-btn:hover {
      color: var(--blue-dark);
      border-color: transparent;
      transform: translateY(-8px) scale(1.06);
      box-shadow:
        0 24px 56px rgba(255,255,255,.18),
        0 0 0 3px rgba(255,255,255,.85);
      animation: none;
    }
    .wwa-story-btn:active {
      transform: translateY(-2px) scale(.97);
      transition: transform .1s ease;
    }

    /* Arrow icon — idle bob, hover slide + color */
    .wwa-arrow {
      flex-shrink: 0;
      animation: wwaArrowBob 2.4s ease-in-out infinite;
      transition: transform .35s cubic-bezier(.34,1.56,.64,1), color .3s ease;
    }
    @keyframes wwaArrowBob {
      0%, 100% { transform: translateX(0); }
      50%      { transform: translateX(4px); }
    }
    .wwa-story-btn:hover .wwa-arrow {
      transform: translateX(5px) scale(1.15);
      color: var(--orange);
      animation: none;
    }

    /* Ripple (shared with hero btns) */
    .wwa-btn-ripple {
      position: absolute;
      border-radius: 50%;
      width: 10px; height: 10px;
      margin-left: -5px; margin-top: -5px;
      background: rgba(255,255,255,.5);
      transform: scale(0);
      animation: wwaRipple .65s linear;
      pointer-events: none;
      z-index: 2;
    }
    @keyframes wwaRipple {
      to { transform: scale(28); opacity: 0; }
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image-wrap img { height: 400px; }
      .about-badge { right: 16px; bottom: -12px; }
      .mh-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .mh-grid { grid-template-columns: 1fr 1fr; }
      .team-founder-card { flex-direction: column; text-align: center; padding: 32px 24px; }
      .founder-photo { width: 110px; height: 110px; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .donate-cta-btns { flex-direction: column; align-items: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .team-photo-wrap { height: 180px; }
      .mh-grid { grid-template-columns: 1fr; }
      .btn-lg { padding: 15px 28px; font-size: 1rem; }
      #stickyDonate { right: 8px; bottom: 10px; padding: 12px 14px; font-size: .82rem; }
    }
    @media (max-width: 360px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       SCROLL TO TOP
    ============================================================ */
    #scrollToTop {
      position: fixed;
      left: 24px;
      bottom: 84px;
      z-index: 1199;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange-dark) 100%);
      border: none;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(240,124,30,.5), 0 2px 6px rgba(0,0,0,.12);
      opacity: 0;
      transform: scale(1) translateY(0);
      pointer-events: none;
      transition: opacity .35s ease, box-shadow .25s ease, filter .25s ease;
      will-change: transform, opacity;
    }
    #scrollToTop::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid rgba(240,124,30,.65);
      pointer-events: none;
    }
    #scrollToTop.visible {
      opacity: 1;
      pointer-events: auto;
      animation: sttBounceIn .55s cubic-bezier(.34,1.56,.64,1) forwards,
                 sttBob 3s ease-in-out .6s infinite;
    }
    #scrollToTop.visible::before {
      animation: sttPulse 2.5s ease-out .8s infinite;
    }
    #scrollToTop:hover {
      animation-play-state: paused;
      filter: brightness(1.1);
      box-shadow: 0 16px 44px rgba(240,124,30,.7), 0 0 0 10px rgba(240,124,30,.12), 0 2px 8px rgba(0,0,0,.15);
    }
    #scrollToTop:hover::before { animation-duration: 1.1s; }
    #scrollToTop:active {
      filter: brightness(.92);
      box-shadow: 0 4px 16px rgba(240,124,30,.45);
    }
    #scrollToTop svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      pointer-events: none;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
      position: relative;
      z-index: 1;
    }
    @keyframes sttBounceIn {
      0%   { transform: scale(0.2) translateY(30px); }
      60%  { transform: scale(1.18) translateY(-5px); }
      80%  { transform: scale(.96) translateY(2px); }
      100% { transform: scale(1) translateY(0); }
    }
    @keyframes sttBob {
      0%, 100% { transform: translateY(0) scale(1); }
      50%      { transform: translateY(-7px) scale(1.03); }
    }
    @keyframes sttPulse {
      0%   { transform: scale(1);    opacity: .7; }
      70%  { transform: scale(1.75); opacity: 0; }
      100% { transform: scale(1.75); opacity: 0; }
    }
    @media (max-width: 480px) {
      #scrollToTop { left: 8px; right: auto; bottom: 72px; width: 44px; height: 44px; }
    }

/* ────────────────────────────────────────────────────────────
   MOBILE FOOTER OVERHAUL — accordion + widget-collision fix
──────────────────────────────────────────────────────────── */

.footer-accordion-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: default;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  pointer-events: none;
}
.footer-accordion-icon { display: none; }

@media (max-width: 768px) {
  .footer-accordion-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-accordion-icon {
    display: block;
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  .footer-nav-accordion.open .footer-accordion-icon {
    transform: rotate(180deg);
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1),
                opacity .3s ease;
  }

  .footer-nav-accordion.open .footer-accordion-content {
    max-height: 400px;
    opacity: 1;
  }

  .footer-accordion-content li,
  .footer-accordion-content > a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .footer-accordion-content li:last-child,
  .footer-accordion-content > a:last-child {
    border-bottom: none;
  }

  .footer-social a,
  .social-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #footer { padding-bottom: 140px; }

  #stickyDonate {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  #scrollToTop {
    left: 14px;
    right: auto;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

/* ================================================================
   MOBILE WHO WE ARE — elite editorial overhaul (≤768px only)
   Desktop untouched — all rules scoped inside media queries below.
================================================================ */

/* —— Disable JS parallax on mobile via CSS override ————————— */
@media (max-width: 768px) {
  .hero-bg {
    transform: scale(1) !important;
    transition: none !important;
  }
}

/* —— 1. Hero ————————————————————————————————————————————————— */
@media (max-width: 768px) {
  #hero { min-height: 100svh; }

  .hero-content { padding: 60px 0 44px; }

  .hero-badge {
    font-size: .72rem;
    padding: 5px 14px;
    margin-bottom: 18px;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: .95rem;
  }

  .hero-scroll { bottom: 20px; }
}

/* —— 2. About Section ——————————————————————————————————————— */
@media (max-width: 768px) {
  #about { padding: 56px 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Image bleeds to screen edges for editorial impact */
  .about-image-wrap {
    order: -1;
    margin: 0 -24px;
  }

  .about-image-wrap img {
    height: 260px;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    object-position: center 20%;
  }

  .about-badge {
    bottom: 16px;
    right: 24px;
    padding: 14px 18px;
  }
  .about-badge strong { font-size: 1.8rem; }
  .about-badge span { font-size: .68rem; }

  .about-text { padding-top: 28px; }

  .about-body { font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }

  /* Service icons: horizontal scrollable chip rail */
  .service-icons {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 10px;
    margin: 20px -24px 0;
    padding: 4px 24px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .service-icons::-webkit-scrollbar { display: none; }

  .service-icon-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 44px;
    padding: 10px 16px;
    font-size: .84rem;
  }
}

/* —— 3. Mission Highlights ————————————————————————————————— */
@media (max-width: 768px) {
  #mission-highlights { padding: 56px 0; }

  .mh-header { margin-bottom: 32px; }
  .mh-header .body-text { font-size: .92rem; }

  .mh-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mh-card {
    padding: 22px 16px;
    border-radius: var(--radius-md);
  }
  .mh-card:active { transform: scale(.97); transition: transform .1s ease; }

  .mh-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .mh-title { font-size: 1rem; margin-bottom: 6px; }
  .mh-desc { font-size: .8rem; line-height: 1.6; }

  .mh-card.reveal {
    transform: translate3d(0, 24px, 0);
    transition: opacity .45s ease, transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform, opacity;
  }
  .mh-card.reveal.visible { transform: translate3d(0, 0, 0); }
}

/* —— 4. Meet the Team ——————————————————————————————————————— */
@media (max-width: 768px) {
  #team { padding: 56px 0; }

  .team-header { margin-bottom: 36px; }
  .team-header .body-text { font-size: .92rem; }

  /* Founder card */
  .team-founder-card {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    align-items: center;
  }

  .founder-photo { width: 100px; height: 100px; }

  .founder-info .founder-label { font-size: .68rem; padding: 3px 12px; }
  .founder-info h3 { font-size: 1.5rem; }
  .founder-info .founder-role { font-size: .88rem; margin-bottom: 10px; }
  .founder-info .founder-bio { font-size: .84rem; line-height: 1.65; }

  /* Team grid → horizontal swipe carousel */
  .team-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 -24px;
    padding: 4px 24px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .team-grid::-webkit-scrollbar { display: none; }

  .team-card {
    flex: 0 0 calc(47% - 6px);
    scroll-snap-align: start;
    border-radius: var(--radius-md);
  }

  .team-photo-wrap { height: 180px; }

  .team-info { padding: 14px 16px; }
  .team-info h3 { font-size: .92rem; margin-bottom: 2px; }
  .team-info p { font-size: .78rem; }
  .team-role-bar { margin-top: 8px; width: 20px; }

  .team-card.reveal {
    transform: translate3d(0, 16px, 0);
    transition: opacity .4s ease, transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform, opacity;
  }
  .team-card.reveal.visible { transform: translate3d(0, 0, 0); }
}

/* —— 5. Donation CTA ————————————————————————————————————————— */
@media (max-width: 768px) {
  #donate-cta { padding: 76px 0; }

  .donate-cta-content .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 14px;
  }
  .donate-cta-content .body-text {
    font-size: .92rem;
    margin-bottom: 28px;
  }

  .donate-cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
  }

  .donate-cta-btns .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: .95rem;
  }

  .impact-note { font-size: .75rem; margin-top: 20px; line-height: 1.6; }
}

/* ============================================================
   MISSION HIGHLIGHTS — AUTO-HOVER LOOP (desktop ≥ 1025px only)
============================================================ */
@media (min-width: 1025px) {

  /* Extend card transition to cover opacity + filter for dimming */
  .mh-card {
    transition:
      transform    .35s ease,
      box-shadow   .35s ease,
      border-color .35s ease,
      opacity      .4s  ease,
      filter       .4s  ease;
  }

  /* ── Active card: exact mirror of the :hover ruleset ──────── */
  .mh-card.mh-active {
    transform:    translateY(-10px);
    box-shadow:   0 20px 50px rgba(0,0,0,.13);
    border-color: transparent;
  }
  .mh-card.mh-active::before { transform: scaleX(1); }

  .mh-card.mh-active .mh-icon {
    transform:   scale(1.2) rotate(-8deg);
    color:       var(--orange);
    text-shadow: 0 0 14px rgba(240,124,30,.18);
  }

  /* Match the icon-specific animation speed-ups from :hover */
  .mh-card.mh-active .mh-icon-feed      { animation-duration: 5.8s; }
  .mh-card.mh-active .mh-icon-medical   { animation-duration: 5.2s; }
  .mh-card.mh-active .mh-icon-education { animation-duration: 5.6s; }
  .mh-card.mh-active .mh-icon-disaster  { animation-duration: 5.9s; }

  /* ── Dim non-active cards when the loop (or manual hover) runs */
  .mh-grid.mh-loop-active .mh-card:not(.mh-active) {
    opacity: 0.6;
    filter:  grayscale(22%) brightness(.95);
  }

  /* Active card stays fully vivid */
  .mh-grid.mh-loop-active .mh-card.mh-active {
    opacity: 1;
    filter:  none;
  }
}

/* ============================================================
   SERVICE ICONS — INFINITE TICKER (mobile only)
============================================================ */

/* Clones are invisible everywhere except inside the mobile ticker */
.service-ticker-clone { display: none; }

@media (max-width: 768px) {

  /* ── Outer wrapper: clips & adds edge-fade vignette ────── */
  .service-ticker-wrap {
    position: relative;
    overflow: hidden;
    margin: 20px -24px 0;          /* bleed to screen edges */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent  0%,
      #000        14%,
      #000        86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent  0%,
      #000        14%,
      #000        86%,
      transparent 100%
    );
  }

  /* ── Track: switch from manual-scroll to auto-ticker ───── */
  .service-ticker-wrap .service-icons {
    /* Reset the existing mobile scroll overrides */
    overflow-x:        visible;
    scroll-snap-type:  none;
    scrollbar-width:   auto;
    -ms-overflow-style: auto;
    margin:            0;
    padding:           6px 0 14px;

    /* Ticker geometry: one continuous row whose width = 2× one set */
    display:    inline-flex;
    flex-wrap:  nowrap;
    gap:        14px;
    width:      max-content;

    /* 60 fps hardware-accelerated scroll */
    animation:                 serviceTicker 18s linear infinite;
    will-change:               transform;
    -webkit-backface-visibility: hidden;
    backface-visibility:         hidden;
  }

  /* Show clones and lock item width */
  .service-ticker-clone               { display: flex; }
  .service-ticker-wrap .service-icon-item { flex-shrink: 0; }

  /* ── Pause: CSS tap-hold via :active ───────────────────── */
  .service-ticker-wrap:active .service-icons,
  .service-ticker-wrap.ticker-paused  .service-icons {
    animation-play-state: paused;
  }

  /* ── Honour prefers-reduced-motion ─────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    .service-ticker-wrap { overflow: visible; mask-image: none; -webkit-mask-image: none; }
    .service-ticker-wrap .service-icons { animation: none; overflow-x: auto; width: auto; }
    .service-ticker-clone { display: none; }
  }
}

/* Keyframe: moves the track exactly -50% (= width of one set of 4 items) */
@keyframes serviceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TEAM CARDS — PREMIUM HOVER & BIO PANEL
============================================================ */

/* Ensure card is a stacking context for absolute children */
.team-card { position: relative; }

/* Shimmer sweep that fires once on hover entry */
.team-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.09), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.team-card:hover::after {
  animation: teamCardShine .7s ease forwards;
}
@keyframes teamCardShine {
  0%   { left: -80%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* Richer hover: gradient-border illusion via box-shadow + deeper lift */
.team-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 28px 70px rgba(13,42,78,.2),
    0 8px 24px rgba(240,124,30,.1),
    0 0 0 1.5px rgba(240,124,30,.5);
}

/* Photo: softer, more natural scale */
.team-card:hover .team-photo { transform: scale(1.04); }

/* Accent bar: wider + subtle glow */
.team-card:hover .team-role-bar {
  width: 52px;
  box-shadow: 0 0 8px rgba(240,124,30,.45);
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

/* ── Bio Reveal Panel ─────────────────────────────────────── */
.team-bio-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 20px;
  background: linear-gradient(
    to top,
    rgba(13,42,78,.98) 0%,
    rgba(13,42,78,.93) 60%,
    transparent 100%
  );
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: translateY(100%);
  transition: transform .44s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 2;
}

.team-card:hover .team-bio-panel,
.team-card.bio-open    .team-bio-panel {
  transform: translateY(0);
  pointer-events: auto;
}

.team-bio-text {
  font-size: .75rem;
  color: rgba(255,255,255,.84);
  line-height: 1.72;
  margin: 0;
}

/* ── Mobile: no-hover devices — tap to toggle bio ─────────── */
@media (hover: none) {
  .team-card:active { transform: scale(.98); transition: transform .1s ease; }
}

@media (max-width: 768px) {
  .team-bio-panel {
    padding: 36px 14px 14px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .team-bio-text { font-size: .72rem; }

  /* Keep card within the swipe carousel — bio still slides up within */
  .team-card.bio-open { flex-shrink: 0; }
}

/* ============================================================
   FOUNDER CARD — PREMIUM REFRESH
============================================================ */

.team-founder-wrap { max-width: 100%; }

.team-founder-card {
  max-width: 860px;
  padding: 48px 52px;
  gap: 48px;
  background: linear-gradient(
    135deg,
    #09203f  0%,
    #0d2a4e 40%,
    #122f58 70%,
    #1a4480 100%
  );
  transition:
    transform  .45s cubic-bezier(.34,1.2,.64,1),
    box-shadow .4s ease;
}

.team-founder-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 44px 96px rgba(9,32,63,.55),
    0  0   0 1px rgba(240,124,30,.18),
    0 20px 48px rgba(240,124,30,.07);
}

.team-founder-card::before {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37,99,168,.28) 0%, transparent 70%);
  pointer-events: none;
}

.team-founder-card::after {
  width: 260px;
  height: 260px;
  top: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(240,124,30,.22) 0%, transparent 65%);
  transition: transform .45s ease;
}
.team-founder-card:hover::after { transform: scale(1.25); }

/* ── Spinning gradient ring ── */
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--orange-dark)   0%,
    var(--orange)       30%,
    var(--orange-light) 55%,
    var(--orange)       75%,
    var(--orange-dark) 100%
  );
  animation: founderRingRotate 4s linear infinite;
  z-index: 0;
}
@keyframes founderRingRotate { to { transform: rotate(360deg); } }

.founder-photo {
  position: relative;
  z-index: 1;
  border: none;
  box-shadow: 0 0 0 4px #0d2a4e, 0 8px 28px rgba(0,0,0,.35);
  transition: transform .4s ease, box-shadow .4s ease;
}
.team-founder-card:hover .founder-photo {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px #0d2a4e, 0 12px 36px rgba(0,0,0,.45);
}

/* ── Bio ── */
.founder-info .founder-bio {
  font-size: .9rem;
  color: #E6ECF4;
  line-height: 1.88;
}

/* ── Stat chips ── */
.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.founder-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  min-width: 88px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.founder-stat:hover {
  background: rgba(240,124,30,.16);
  border-color: rgba(240,124,30,.38);
  transform: translateY(-3px);
}
.founder-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.founder-stat span {
  display: block;
  margin-top: 3px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── Monogram watermark ── */
.founder-card-deco {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color .45s ease;
}
.team-founder-card:hover .founder-card-deco { color: rgba(255,255,255,.065); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .team-founder-card   { padding: 28px 20px; gap: 20px; }
  .founder-card-deco   { display: none; }
  .founder-stats       { gap: 8px; }
  .founder-stat        { padding: 8px 12px; min-width: 80px; }
  .founder-stat strong { font-size: .85rem; }
}

/* ============================================================
   FOUNDER CARD — DESKTOP GRID REFACTOR (≥ 1025px)
   Converts founder-info into a 2-col grid so the stat chips
   fill the right dead space instead of piling at the bottom.
============================================================ */
@media (min-width: 1025px) {

  /* More breathing room in the card itself */
  .team-founder-card {
    padding-bottom: 52px;
    align-items: center;   /* keep photo vertically centered */
  }

  /* Lock photo-wrap to its natural size so the ::before ring stays small */
  .founder-photo-wrap {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    align-self: center;
  }

  /* ── Inner 2-column grid: text | stats ── */
  .founder-info {
    display: grid;
    grid-template-columns: 1fr 156px;
    column-gap: 32px;
    align-items: start;
  }

  /* Label, name, role span both columns */
  .founder-info > .founder-label,
  .founder-info > h3,
  .founder-info > .founder-role {
    grid-column: 1 / -1;
  }

  /* Bio sits in the left column, row 4 */
  .founder-info > .founder-bio {
    grid-column: 1;
    margin-bottom: 0;
  }

  /* Stats column: same row as bio, vertically centered */
  .founder-stats {
    grid-column: 2;
    grid-row: 4;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    align-self: center;
  }

  /* Chips fill the column width and lose the flex min-width */
  .founder-stat {
    width: 100%;
    min-width: unset;
    padding: 12px 16px;
  }

  /* ── Contrast fix: subtext legibility ── */
  .founder-stat span {
    color: rgba(255,255,255,.72);
    font-size: .68rem;
  }

  /* Strong value text — slightly larger in this layout */
  .founder-stat strong {
    font-size: 1rem;
  }

  /* Hide the monogram so it doesn't overlap the stat column */
  .founder-card-deco { display: none; }
}
