:root {
      --ink: #100d19;
      --ink-2: #1b1527;
      --purple: #6f2dbd;
      --purple-bright: #8d4de8;
      --violet-soft: #efe7fb;
      --gold: #e6b84f;
      --cream: #fbfaf7;
      --white: #ffffff;
      --text: #25212c;
      --muted: #6f6978;
      --line: rgba(16,13,25,.11);
      --shadow: 0 24px 70px rgba(16,13,25,.16);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1220px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html {
      width: 100%;
      max-width: 100%;
      scroll-behavior: smooth;
      overflow-x: clip;
      overscroll-behavior-x: none;
    }
    body {
      margin: 0;
      font-family: "DM Sans", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 0%, rgba(141,77,232,.11), transparent 28%),
        var(--cream);
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
      overscroll-behavior-x: none;
    }
    img, video, iframe { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .shell { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--purple);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: currentColor;
      border-radius: 9px;
    }
    h1, h2, h3, h4 {
      margin: 0;
      font-family: "Manrope", sans-serif;
      letter-spacing: -.035em;
    }
    h2 {
      max-width: 760px;
      font-size: clamp(2.25rem, 5vw, 4.6rem);
      line-height: 1.02;
    }
    .section-intro {
      max-width: 720px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    /* Header */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      padding: 18px 0;
      transition: .3s ease;
    }
    .site-header.scrolled { padding: 10px 0; }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      padding: 10px 12px 10px 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      color: white;
      background: rgba(16,13,25,.72);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 40px rgba(0,0,0,.18);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .brand img {
      width: 66px;
      height: 66px;
      object-fit: contain;
      background: white;
      border-radius: 50%;
      padding: 4px;
      box-shadow: 0 0 0 4px rgba(255,255,255,.10), 0 10px 28px rgba(0,0,0,.28);
    }
    .brand-copy strong {
      display: block;
      font-family: "Manrope", sans-serif;
      font-size: .93rem;
      line-height: 1.1;
    }
    .brand-copy span {
      display: block;
      margin-top: 3px;
      color: rgba(255,255,255,.66);
      font-size: .72rem;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: .92rem;
      font-weight: 700;
    }
    .nav-links a { color: rgba(255,255,255,.78); }
    .nav-links a:hover { color: white; }
    .nav-give {
      padding: 13px 20px;
      border-radius: 999px;
      color: var(--ink) !important;
      background: var(--gold);
    }
    .menu-btn {
      display: none;
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      color: white;
      background: rgba(255,255,255,.1);
      cursor: pointer;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 1080px;
      display: grid;
      align-items: center;
      color: white;
      background:
        radial-gradient(circle at 20% 20%, rgba(141,77,232,.32), transparent 28%),
        radial-gradient(circle at 85% 40%, rgba(230,184,79,.12), transparent 25%),
        linear-gradient(145deg, #0b0910 0%, #171121 55%, #231334 100%);
      overflow-x: clip;
      overflow-y: visible;
      padding: 165px 0 170px;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: -8%;
      right: -8%;
      bottom: -170px;
      height: 300px;
      border-radius: 50% 50% 0 0;
      background: var(--cream);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 70px;
      align-items: center;
      min-width: 0;
    }
    .hero-grid > * { min-width: 0; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      margin-bottom: 26px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      color: rgba(255,255,255,.8);
      background: rgba(255,255,255,.06);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero-kicker i {
      width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
      box-shadow: 0 0 0 6px rgba(230,184,79,.12);
    }
    .hero h1 {
      font-size: clamp(3.3rem, 7vw, 6.8rem);
      line-height: .93;
      max-width: 760px;
    }
    .hero h1 .accent { color: #c59aff; }
    .hero-lead {
      max-width: 640px;
      margin: 28px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 1.12rem;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 52px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .btn:hover { transform: translateY(-3px); }
    .btn-gold { color: var(--ink); background: var(--gold); box-shadow: 0 14px 35px rgba(230,184,79,.2); }
    .btn-ghost { color: white; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 36px;
    }
    .tag-cloud span {
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      color: rgba(255,255,255,.74);
      font-size: .78rem;
      font-weight: 700;
    }

    .collage {
      position: relative;
      height: 760px;
      margin-bottom: 20px;
    }
    .photo {
      position: absolute;
      overflow: hidden;
      border: 5px solid rgba(255,255,255,.92);
      border-radius: 24px;
      box-shadow: 0 25px 60px rgba(0,0,0,.38);
      transition: transform .35s ease;
    }
    .photo:hover { transform: translateY(-10px) rotate(0deg) scale(1.02) !important; z-index: 8; }
    .photo img { width: 100%; height: 100%; object-fit: cover; }
    .p1 { width: 34%; height: 225px; left: 0; top: 20px; transform: rotate(-4deg); }
    .p2 { width: 34%; height: 205px; left: 35%; top: 0; transform: rotate(2deg); }
    .p3 { width: 31%; height: 230px; right: 0; top: 35px; transform: rotate(4deg); }
    .p4 { width: 30%; height: 275px; left: 2%; top: 255px; transform: rotate(3deg); }
    .p5 { width: 35%; height: 235px; left: 45%; top: 205px; transform: rotate(-3deg); }
    .p6 { width: 28%; height: 275px; right: 0; top: 295px; transform: rotate(2deg); }
    .p7 { width: 43%; height: 220px; left: 8%; bottom: 15px; transform: rotate(-2deg); }
    .p8 { width: 35%; height: 295px; right: 3%; bottom: 0; transform: rotate(3deg); }
    .collage-badge {
      position: absolute;
      z-index: 10;
      left: 50%;
      top: 49%;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      width: 248px;
      height: 248px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: rgba(16,13,25,.76);
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 45px rgba(0,0,0,.3);
    }
    .collage-badge img {
      width: 238px;
      height: 238px;
      object-fit: contain;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
    }

    /* Impact strip */
    .impact-strip {
      position: relative;
      z-index: 4;
      margin-top: -120px;
    }
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow);
    }
    .impact-item {
      min-height: 180px;
      padding: 34px;
      border-right: 1px solid var(--line);
    }
    .impact-item:last-child { border: 0; }
    .impact-number {
      font-family: "Manrope", sans-serif;
      font-size: clamp(2.2rem, 4vw, 4rem);
      font-weight: 800;
      color: var(--purple);
      line-height: 1;
    }
    .impact-label { margin-top: 10px; color: var(--muted); font-weight: 700; }

    /* About */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 72px;
      align-items: center;
    }
    .about-copy p {
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.9;
    }
    .about-copy p + p { margin-top: 18px; }
    .value-stack { display: grid; gap: 14px; }
    .value-card {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 35px rgba(16,13,25,.06);
    }
    .value-icon {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 18px;
      color: white;
      font-size: 1.35rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--purple), var(--purple-bright));
    }
    .value-card h3 { font-size: 1.1rem; }
    .value-card p { margin: 5px 0 0; color: var(--muted); font-size: .92rem; }

    /* Leadership */
    .leadership {
      position: relative;
      color: white;
      background:
        radial-gradient(circle at 80% 10%, rgba(141,77,232,.24), transparent 28%),
        var(--ink);
    }
    .leadership .eyebrow { color: #c9a8f5; }
    .leadership .section-intro { color: rgba(255,255,255,.62); }
    .leadership-grid {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 28px;
      margin-top: 54px;
      align-items: start;
    }
    .moderator-card {
      position: sticky;
      top: 110px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
      box-shadow: 0 28px 70px rgba(0,0,0,.3);
    }
    .moderator-photo {
      height: 470px;
      overflow: hidden;
      background: radial-gradient(circle at 50% 25%, rgba(141,77,232,.26), transparent 52%);
    }
    .moderator-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 18%;
      transform: scale(1.55);
      transform-origin: 50% 22%;
    }
    .moderator-copy { padding: 26px 28px 30px; }
    .moderator-copy small {
      color: #c7a3f5;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .moderator-copy h3 { margin-top: 8px; font-size: 1.65rem; }
    .leader-groups { display: grid; gap: 18px; }
    .leader-panel {
      padding: 28px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.055);
    }
    .leader-panel h3 {
      margin-bottom: 20px;
      color: #c7a3f5;
      font-size: 1rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .vice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
    .vice-card {
      padding: 16px;
      border-radius: 14px;
      background: rgba(255,255,255,.06);
    }
    .vice-card strong { display: block; font-size: .92rem; }
    .vice-card span { display: block; margin-top: 5px; color: rgba(255,255,255,.6); font-size: .84rem; }
    .leaders-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 22px;
    }
    .leader-line {
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,.09);
    }
    .leader-line strong { display: block; font-size: .9rem; }
    .leader-line span { display: block; margin-top: 4px; color: rgba(255,255,255,.55); font-size: .79rem; }

    /* Giving */
    .give-head {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: end;
      margin-bottom: 42px;
    }
    .give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .give-card {
      position: relative;
      min-height: 355px;
      overflow: hidden;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: white;
      box-shadow: 0 20px 55px rgba(16,13,25,.08);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .give-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    .give-card::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(111,45,189,.08);
    }
    .give-card.featured {
      color: white;
      background: linear-gradient(150deg, #4b1d83, #7b38c9);
    }
    .give-card.featured::before { background: rgba(255,255,255,.09); }
    .give-icon {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin-bottom: 44px;
      border-radius: 18px;
      color: white;
      font-size: 1.35rem;
      background: var(--purple);
    }
    .featured .give-icon { color: var(--ink); background: var(--gold); }
    .give-card h3 { font-size: 1.55rem; }
    .give-card p { min-height: 75px; color: var(--muted); line-height: 1.7; }
    .featured p { color: rgba(255,255,255,.7); }
    .give-card .btn { margin-top: 12px; }
    .btn-purple { color: white; background: var(--purple); }
    .featured .btn { color: var(--ink); background: var(--gold); }

    /* Connect */
    .connect-box {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 44px;
      align-items: center;
      padding: 54px;
      border-radius: 38px;
      color: white;
      background:
        radial-gradient(circle at 90% 20%, rgba(230,184,79,.18), transparent 25%),
        linear-gradient(135deg, #17111f, #2b183d);
      box-shadow: var(--shadow);
    }
    .connect-box h2 { font-size: clamp(2.3rem, 4vw, 4.1rem); }
    .connect-box p { color: rgba(255,255,255,.64); font-size: 1.05rem; line-height: 1.8; }
    .connect-actions { display: grid; gap: 14px; }
    .connect-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 22px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      font-weight: 800;
      transition: .2s ease;
    }
    .connect-link:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
    .connect-link span:last-child { color: var(--gold); }

    footer {
      padding: 34px 0 45px;
      color: var(--muted);
    }
    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      font-size: .88rem;
    }
    .footer-brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 800; }
    .footer-brand img { width: 42px; height: 42px; object-fit: contain; }
    
.connect-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.facebook-icon {
  color: #ffffff;
  background: #1877f2;
}
    @media (max-width: 1020px) {
  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 170px;
  }

  .hero-grid,
  .about-layout,
  .leadership-grid,
  .connect-box {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 40px; }

  .collage {
    height: 760px;
    margin-top: 30px;
  }

  .photo img {
    object-fit: contain;
    object-position: center;
  }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: 0; }
  .impact-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .moderator-card {
    position: relative;
    top: auto;
    max-width: 520px;
  }

  .give-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .section { padding: 78px 0; }
  .brand-copy { display: none; }
  .menu-btn { display: grid; place-items: center; }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(16, 13, 25, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 140px;
  }

  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .tag-cloud { display: none; }

  /* Swipeable photo strip while retaining all eight collage photos */
  .collage {
    position: relative;
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 36px 0 0;
    padding: 8px 4px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .collage::-webkit-scrollbar { display: none; }

  .photo,
  .p1, .p2, .p3, .p4, .p5, .p6, .p7, .p8 {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 82%;
    width: auto;
    max-width: 82vw;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    transform: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-width: 3px;
    border-radius: 20px;
    background: #171121;
  }

  .photo:hover { transform: none !important; }

  .photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .collage-badge { display: none; }
  .impact-strip { margin-top: -70px; }
  .impact-item { min-height: 145px; padding: 24px; }
  .vice-grid, .leaders-list { grid-template-columns: 1fr; }
  .moderator-photo { height: 420px; }
  .give-head { display: block; }
  .connect-box { padding: 34px 24px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 20px), var(--max)); }
  .nav-wrap { min-height: 62px; }
  .brand img { width: 52px; height: 52px; }

  .hero {
    padding-top: 120px;
    padding-bottom: 125px;
  }

  .hero-lead { font-size: 1rem; }

  .collage {
    gap: 10px;
    margin-top: 28px;
    padding: 6px 2px 16px;
  }

  .photo,
  .p1, .p2, .p3, .p4, .p5, .p6, .p7, .p8 {
    flex-basis: 88%;
    max-width: 88vw;
    border-radius: 16px;
  }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item { min-height: 130px; padding: 20px; }
  .impact-number { font-size: 2.2rem; }
  .impact-label { font-size: 0.82rem; }
  .moderator-photo { height: 390px; }
  .connect-link { padding: 17px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
