﻿:root {
      --blue: #073b82;
      --blue-2: #0a2f70;
      --green: #2f8f2e;
      --green-2: #126936;
      --orange: #ffac1b;
      --red: #f05f4f;
      --cream: #fff6df;
      --ink: #07142d;
      --muted: #42506a;
      --line: #d9e0e8;
      --soft: #eef8f3;
      --white: #ffffff;
      --shadow: 0 18px 40px rgba(7, 59, 130, .13);
      --radius: 8px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      letter-spacing: 0;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button { cursor: pointer; }

    .page {
      min-height: 100vh;
      overflow: hidden;
    }

    .wrap {
      width: min(1120px, calc(100% - 48px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid rgba(7, 59, 130, .08);
      backdrop-filter: blur(12px);
    }

    .nav {
      height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 254px;
    }

    .brand-logo {
      width: 240px;
      max-height: 88px;
      object-fit: contain;
      display: block;
    }

    .brand-logo + .fallback-logo,
    .brand-logo + .fallback-logo + .brand-copy {
      display: none;
    }

    .brand-badge {
      width: 82px;
      height: 82px;
      position: relative;
      flex: 0 0 auto;
    }

    .sun {
      position: absolute;
      inset: 2px 10px 24px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 65%, #ffd35b 0 22%, #ffa51b 23% 56%, transparent 57%);
    }

    .sun::before {
      content: "";
      position: absolute;
      inset: -10px;
      background:
        linear-gradient(90deg, transparent 48%, #ffa51b 49% 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, #ffa51b 49% 51%, transparent 52%);
      transform: rotate(18deg);
      opacity: .85;
    }

    .kids {
      position: absolute;
      left: 9px;
      top: 27px;
      width: 62px;
      height: 28px;
      display: flex;
      justify-content: center;
      align-items: end;
      gap: 2px;
    }

    .kid {
      width: 14px;
      height: 22px;
      border-radius: 10px 10px 4px 4px;
      background: var(--blue);
      position: relative;
      box-shadow: inset 0 -9px 0 #33a852;
    }

    .kid::before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #7b471d;
      top: -8px;
      left: 1px;
      box-shadow: inset 0 -3px 0 #f0a85d;
    }

    .kid:nth-child(2) { height: 25px; background: #e64a3b; box-shadow: inset 0 -10px 0 #ffe17a; }
    .kid:nth-child(3) { height: 23px; background: #24a0d8; box-shadow: inset 0 -9px 0 #fff; }
    .kid:nth-child(4) { height: 21px; background: #4d9a36; box-shadow: inset 0 -8px 0 #ffb21d; }

    .badge-ribbon {
      position: absolute;
      left: 3px;
      right: 3px;
      bottom: 5px;
      height: 25px;
      border-radius: 50%;
      background: var(--green);
      border: 4px solid #fff;
      box-shadow: 0 0 0 2px #ffa51b;
    }

    .brand-copy strong {
      display: block;
      color: var(--blue);
      font-size: 14px;
      line-height: 1;
    }

    .brand-copy .name {
      display: block;
      color: var(--blue);
      font-size: 30px;
      font-weight: 900;
      line-height: .92;
    }

    .brand-copy em {
      display: block;
      color: #db3b2d;
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-size: 18px;
      font-weight: 700;
      font-style: normal;
      line-height: 1.1;
    }

    .brand-copy small {
      display: inline-block;
      margin-top: 3px;
      padding: 2px 8px;
      color: #fff;
      background: var(--green);
      border-radius: 999px;
      font-size: 7px;
      font-weight: 800;
      letter-spacing: .2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      color: #060b1f;
      font-size: 14px;
      font-weight: 800;
    }

    .nav-links a {
      position: relative;
      padding: 40px 0 34px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 24px;
      height: 3px;
      border-radius: 99px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform .2s ease;
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 42px;
      border: 2px solid var(--blue);
      border-radius: 999px;
      background: #fff;
      color: var(--blue);
      padding: 0;
      position: relative;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
      width: 20px;
      height: 3px;
      border-radius: 99px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }

    .hamburger {
      position: relative;
      display: block;
    }

    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .hamburger::before { top: -7px; }
    .hamburger::after { top: 7px; }

    .menu-toggle[aria-expanded="true"] .hamburger {
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .hamburger::before {
      transform: translateY(7px) rotate(90deg);
    }

    .menu-toggle[aria-expanded="true"] .hamburger::after {
      opacity: 0;
    }

    .donate {
      min-width: 160px;
      min-height: 44px;
      border: 0;
      border-radius: 12px;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 10px 20px rgba(255, 172, 27, .25);
    }

    .heart {
      width: 16px;
      height: 16px;
      display: inline-block;
      background: currentColor;
      transform: rotate(45deg);
      border-radius: 4px 4px 0 4px;
      position: relative;
    }

    .heart::before,
    .heart::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: currentColor;
    }

    .heart::before { left: -8px; top: 0; }
    .heart::after { left: 0; top: -8px; }

    .hero {
      position: relative;
      isolation: isolate;
      min-height: 390px;
      background: linear-gradient(103deg, #fff8e9 0 38%, #fff 38% 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 56% 47%, rgba(255,255,255,.94) 0 14%, rgba(255,255,255,.74) 15% 26%, transparent 48%),
        linear-gradient(105deg, rgba(255,255,255,.96) 0 43%, transparent 43%),
        linear-gradient(180deg, #f5ead3, #fcf5e5);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 43% 57%;
      min-height: 390px;
      align-items: center;
    }

    .hero-copy {
      padding: 36px 0 70px;
      position: relative;
      z-index: 2;
    }

    h1 {
      margin: 0 0 18px;
      color: var(--blue);
      font-size: clamp(38px, 5vw, 54px);
      line-height: .98;
      font-weight: 950;
    }

    h1 span {
      display: block;
      color: var(--green);
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-size: clamp(54px, 7vw, 74px);
      font-weight: 700;
      line-height: .86;
    }

    .accent {
      width: 45px;
      height: 5px;
      border-radius: 99px;
      background: var(--orange);
      margin: 0 0 18px;
    }

    .hero p {
      margin: 0 0 24px;
      max-width: 450px;
      font-size: 19px;
      line-height: 1.42;
      color: #0e1631;
    }

    .button-row {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn {
      min-width: 170px;
      min-height: 44px;
      border-radius: 999px;
      border: 2px solid var(--green-2);
      background: #fff;
      color: var(--green-2);
      font-size: 14px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
    }

    .btn.primary {
      border-color: var(--blue);
      background: var(--blue);
      color: #fff;
    }

    .hero-art {
      align-self: stretch;
      position: relative;
      min-height: 390px;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      inset: 0 -20px 0 0;
      width: calc(100% + 20px);
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    .hero-image ~ .class-photo,
    .hero-image ~ .fallback-children {
      display: none;
    }

    .class-photo {
      position: absolute;
      inset: 0 -20px 0 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.92) 0 13%, rgba(255,255,255,.5) 23%, transparent 45%),
        radial-gradient(circle at 58% 44%, rgba(255,255,255,.2) 0 10%, transparent 11%),
        linear-gradient(120deg, #efe1c3 0 35%, #d1b586 36% 70%, #efe5cf 100%);
    }

    .class-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15,74,37,.86) 0 15%, transparent 15% 73%, rgba(40,96,45,.78) 73% 89%, transparent 89%),
        radial-gradient(circle at 91% 25%, rgba(107,71,33,.55) 0 8%, transparent 8.5%),
        radial-gradient(circle at 96% 48%, rgba(73,43,24,.45) 0 6%, transparent 6.5%);
      opacity: .8;
      filter: blur(.2px);
    }

    .children {
      position: absolute;
      inset: 28px 8px 20px 26px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 2px;
    }

    .child {
      width: 13.5%;
      min-width: 68px;
      height: 245px;
      position: relative;
      transform: translateY(14px);
      opacity: .82;
      filter: saturate(.95);
    }

    .child.featured {
      width: 26%;
      min-width: 190px;
      height: 322px;
      transform: translateY(16px);
      opacity: 1;
      z-index: 2;
    }

    .face {
      position: absolute;
      left: 50%;
      top: 18px;
      width: 68px;
      height: 78px;
      border-radius: 47% 47% 48% 48%;
      transform: translateX(-50%);
      background: #8f5329;
      box-shadow: inset 0 -9px 0 rgba(255,255,255,.12);
    }

    .featured .face {
      width: 104px;
      height: 120px;
      top: 15px;
      background: #9b5a2d;
    }

    .hair {
      position: absolute;
      left: 50%;
      top: 0;
      width: 86px;
      height: 65px;
      transform: translateX(-50%);
      border-radius: 50%;
      background:
        radial-gradient(circle at 20% 40%, #21120d 0 14%, transparent 15%),
        radial-gradient(circle at 38% 16%, #21120d 0 16%, transparent 17%),
        radial-gradient(circle at 58% 20%, #21120d 0 18%, transparent 19%),
        radial-gradient(circle at 76% 42%, #21120d 0 16%, transparent 17%),
        #2a160f;
    }

    .featured .hair {
      width: 138px;
      height: 110px;
      top: -18px;
      background:
        radial-gradient(circle at 12% 50%, #21120d 0 12%, transparent 13%),
        radial-gradient(circle at 24% 22%, #21120d 0 14%, transparent 15%),
        radial-gradient(circle at 42% 11%, #21120d 0 16%, transparent 17%),
        radial-gradient(circle at 61% 10%, #21120d 0 15%, transparent 16%),
        radial-gradient(circle at 80% 30%, #21120d 0 14%, transparent 15%),
        radial-gradient(circle at 92% 54%, #21120d 0 13%, transparent 14%),
        #2a160f;
    }

    .eyes {
      position: absolute;
      left: 50%;
      top: 48px;
      width: 40px;
      height: 8px;
      transform: translateX(-50%);
      background:
        radial-gradient(circle at 18% 50%, #17100b 0 27%, transparent 28%),
        radial-gradient(circle at 82% 50%, #17100b 0 27%, transparent 28%);
    }

    .featured .eyes {
      top: 72px;
      width: 62px;
      height: 12px;
    }

    .smile {
      position: absolute;
      left: 50%;
      top: 66px;
      width: 34px;
      height: 18px;
      border-bottom: 5px solid #fff;
      border-radius: 0 0 40px 40px;
      transform: translateX(-50%);
    }

    .featured .smile {
      top: 96px;
      width: 54px;
      height: 28px;
      border-bottom-width: 8px;
    }

    .shirt {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 92px;
      height: 145px;
      transform: translateX(-50%);
      border-radius: 28px 28px 8px 8px;
      background: #fff;
      box-shadow: 0 -8px 0 rgba(255,255,255,.52), inset 0 -20px 0 rgba(7,59,130,.05);
    }

    .child:nth-child(odd):not(.featured) .shirt { background: #103d82; }
    .featured .shirt {
      width: 180px;
      height: 184px;
      border-radius: 44px 44px 10px 10px;
    }

    .thumb {
      position: absolute;
      right: 5px;
      top: 120px;
      width: 42px;
      height: 86px;
      border-radius: 20px;
      background: #9b5a2d;
      transform: rotate(-12deg);
    }

    .thumb::before {
      content: "";
      position: absolute;
      right: -6px;
      top: -32px;
      width: 24px;
      height: 44px;
      border-radius: 20px 20px 8px 8px;
      background: #9b5a2d;
      transform: rotate(26deg);
    }

    .shirt-logo {
      position: absolute;
      left: 50%;
      top: 48px;
      width: 64px;
      height: 44px;
      transform: translateX(-50%);
      border-radius: 50%;
      border: 3px solid #f5aa1b;
      color: var(--blue);
      display: grid;
      place-items: center;
      font-size: 9px;
      font-weight: 950;
      background: #fff8df;
    }

    .leaf-pair {
      position: absolute;
      left: 44%;
      bottom: 55px;
      width: 82px;
      height: 40px;
      z-index: 4;
    }

    .leaf-pair::before,
    .leaf-pair::after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 24px;
      height: 38px;
      border-radius: 24px 24px 24px 0;
      transform-origin: bottom right;
    }

    .leaf-pair::before {
      left: 10px;
      background: var(--green);
      transform: rotate(-38deg);
    }

    .leaf-pair::after {
      left: 42px;
      background: var(--orange);
      transform: rotate(42deg) scale(.9);
    }

    .wave {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 86px;
      z-index: 5;
      pointer-events: none;
    }

    section {
      scroll-margin-top: 116px;
    }

    .section-title {
      text-align: center;
      color: var(--blue);
      font-size: 30px;
      line-height: 1.1;
      font-weight: 950;
      margin: 0;
    }

    .title-mark {
      width: 42px;
      height: 3px;
      background: var(--green);
      border-radius: 99px;
      margin: 9px auto 0;
    }

    .about {
      padding: 34px 0 22px;
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 35% 65%;
      gap: 54px;
      align-items: center;
    }

    .about-copy h2,
    .contact h2 {
      color: var(--blue);
      font-size: 31px;
      line-height: 1.1;
      font-weight: 950;
      margin: 0 0 8px;
    }

    .about-copy .accent,
    .contact .title-mark {
      margin-left: 0;
      width: 42px;
      height: 3px;
    }

    .about-copy p {
      color: #172039;
      line-height: 1.5;
      font-size: 15.5px;
      margin: 16px 0;
    }

    .mini {
      min-height: 36px;
      min-width: 144px;
      border: 2px solid var(--green);
      background: #fff;
      color: var(--green);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 46px;
      text-align: center;
    }

    .pillar-icon,
    .action-icon,
    .help-icon {
      margin: 0 auto 16px;
      width: 82px;
      height: 82px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle, #f4faf7 0 58%, #edf6f3 59% 100%);
      color: var(--green-2);
    }

    .icon {
      width: 44px;
      height: 44px;
      display: block;
    }

    .pillar h3,
    .action-card h3 {
      color: var(--blue);
      font-size: 16px;
      margin: 0 0 12px;
      font-weight: 950;
    }

    .pillar p,
    .action-card p,
    .help-option p {
      margin: 0;
      color: #1b243a;
      font-size: 13px;
      line-height: 1.45;
    }

    .actions {
      padding: 8px 0 0;
    }

    .actions-panel {
      position: relative;
      background: linear-gradient(90deg, #eef8f3, #f5fbf9);
      border-radius: 18px;
      padding: 18px 48px 14px;
      overflow: hidden;
    }

    .actions-panel::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -22px;
      width: 100px;
      height: 100px;
      background:
        radial-gradient(circle at 15px 15px, rgba(108,156,66,.18) 0 5px, transparent 6px),
        radial-gradient(circle at 38px 23px, rgba(108,156,66,.18) 0 5px, transparent 6px),
        radial-gradient(circle at 60px 11px, rgba(108,156,66,.18) 0 5px, transparent 6px),
        radial-gradient(circle at 18px 43px, rgba(108,156,66,.18) 0 5px, transparent 6px),
        radial-gradient(circle at 43px 52px, rgba(108,156,66,.18) 0 5px, transparent 6px),
        radial-gradient(circle at 70px 38px, rgba(108,156,66,.18) 0 5px, transparent 6px);
    }

    .action-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 34px;
    }

    .action-card {
      position: relative;
      background: #fff;
      border-radius: var(--radius);
      min-height: 154px;
      padding: 48px 26px 22px;
      text-align: center;
      box-shadow: 0 12px 24px rgba(9, 64, 130, .05);
    }

    .action-card .action-icon {
      position: absolute;
      left: 50%;
      top: -28px;
      transform: translateX(-50%);
      width: 66px;
      height: 66px;
      margin: 0;
      color: #fff;
      background: var(--blue);
    }

    .action-card:nth-child(2) .action-icon { background: #76a947; }
    .action-card:nth-child(3) .action-icon { background: var(--orange); }
    .action-card:nth-child(4) .action-icon { background: var(--red); }

    .stats {
      margin: 14px auto 0;
      min-height: 104px;
      border-radius: 18px;
      background: var(--blue);
      color: #fff;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      overflow: hidden;
      clear: both;
    }

    .stat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      min-height: 72px;
      border-right: 1px solid rgba(255,255,255,.34);
    }

    .stat:last-child { border-right: 0; }
    .stat svg { width: 48px; height: 48px; color: var(--orange); flex: 0 0 auto; }
    .stat strong { display: block; font-size: 31px; line-height: .92; font-weight: 950; }
    .stat span { display: block; margin-top: 6px; font-size: 14px; font-weight: 800; }

    .gallery {
      padding: 18px 0 26px;
    }

    .gallery-row {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .photo-card {
      height: 118px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      background: #d7c098;
      box-shadow: 0 7px 18px rgba(7, 59, 130, .13);
      cursor: zoom-in;
    }

    .photo-card img,
    .photo-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .photo-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(0,0,0,.08));
      z-index: 2;
    }

    .photo-scene {
      position: absolute;
      inset: 0;
      background: var(--photo-bg, linear-gradient(120deg, #d7b67d, #f4dbab));
    }

    .desk {
      position: absolute;
      left: -8%;
      right: -8%;
      bottom: -16px;
      height: 48px;
      background: #c88945;
      transform: rotate(-4deg);
    }

    .gallery-kids {
      position: absolute;
      inset: 18px 10px 16px;
      display: flex;
      align-items: end;
      justify-content: center;
      gap: 7px;
    }

    .small-person {
      width: 27px;
      height: 58px;
      position: relative;
    }

    .small-person::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 0;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #7c4a28;
      box-shadow: inset 0 -4px 0 #e7a15d;
    }

    .small-person::after {
      content: "";
      position: absolute;
      left: 4px;
      bottom: 0;
      width: 21px;
      height: 40px;
      border-radius: 10px 10px 3px 3px;
      background: var(--shirt, #0b3d83);
    }

    .book {
      position: absolute;
      width: 31px;
      height: 23px;
      border-radius: 3px;
      background: var(--book, #f5d24a);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.45);
    }

    .book.one { left: 14%; bottom: 18px; transform: rotate(8deg); }
    .book.two { left: 38%; bottom: 23px; transform: rotate(-7deg); --book: #eb5d51; }
    .book.three { right: 17%; bottom: 19px; transform: rotate(6deg); --book: #56a2d7; }

    .dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 18px;
    }

    .dot {
      width: 11px;
      height: 11px;
      border: 0;
      border-radius: 50%;
      padding: 0;
      background: #c8c8c8;
    }

    .dot.active { background: var(--green); }

    .gallery-status .dot {
      cursor: pointer;
    }

    .help {
      padding: 0 0 8px;
    }

    .help-band {
      min-height: 162px;
      border-radius: 16px;
      background: var(--cream);
      display: grid;
      grid-template-columns: 1.25fr repeat(4, 1fr) 1.25fr;
      align-items: center;
      gap: 0;
      padding: 20px 28px;
    }

    .help-title {
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--blue);
      font-size: 26px;
      line-height: 1.08;
      font-weight: 950;
    }

    .hands {
      width: 80px;
      height: 80px;
      color: var(--green);
      flex: 0 0 auto;
    }

    .help-option {
      min-height: 118px;
      border: 0;
      border-left: 1px dashed #b7b7a7;
      background: transparent;
      color: var(--ink);
      text-align: center;
      padding: 0 18px;
      display: grid;
      align-content: start;
      justify-items: center;
    }

    .help-option strong {
      color: #0d1940;
      font-size: 13.5px;
      font-weight: 950;
      margin: 3px 0 11px;
    }

    .help-option.active .help-icon {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(7, 59, 130, .14);
    }

    .help-icon {
      width: 58px;
      height: 58px;
      margin-bottom: 8px;
      background: var(--orange);
      color: #fff;
      transition: .2s ease;
    }

    .help-option:nth-of-type(2) .help-icon { background: var(--blue); }
    .help-option:nth-of-type(3) .help-icon { background: #78aa4c; }
    .help-option:nth-of-type(4) .help-icon { background: var(--red); }

    .help-cta {
      border-left: 1px dashed #0d4d63;
      text-align: center;
      padding-left: 26px;
    }

    .help-cta p {
      margin: 0 0 18px;
      color: #0e1b36;
      font-size: 16px;
      line-height: 1.4;
    }

    .help-cta .donate {
      min-width: 148px;
      min-height: 38px;
      border-radius: 999px;
      font-size: 12px;
    }

    .contact {
      padding: 6px 0 0;
      position: relative;
    }

    .contact h2 {
      text-align: center;
      margin-bottom: 6px;
    }

    .contact .title-mark { margin: 0 auto 22px; }

    .contact-grid {
      display: grid;
      grid-template-columns: 260px 1fr 160px;
      gap: 38px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 16px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--blue);
      font-size: 13px;
    }

    .contact-item svg {
      width: 28px;
      height: 28px;
    }

    .contact-item strong {
      display: block;
      font-size: 14px;
      font-weight: 950;
    }

    .socials {
      display: flex;
      gap: 20px;
      margin: 12px 0 0 36px;
    }

    .social {
      width: 27px;
      height: 27px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 16px;
      font-weight: 950;
    }

    .social-facebook { font-family: Arial, sans-serif; }
    .social-instagram { font-size: 15px; }
    .social-youtube { font-size: 13px; }
    .social-tiktok { font-size: 16px; }
    .social-whatsapp { font-size: 15px; }

    .contact-form {
      display: grid;
      gap: 8px;
      position: relative;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid #b7bdc8;
      background: #fff;
      border-radius: 11px;
      min-height: 34px;
      padding: 0 14px;
      color: #17213c;
      font-size: 13px;
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 50px;
      padding-top: 11px;
    }

    input:focus,
    textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(47, 143, 46, .12);
    }

    .send {
      width: min(320px, 100%);
      min-height: 34px;
      margin: 0 auto;
      border: 0;
      border-radius: 999px;
      background: var(--green-2);
      color: #fff;
      font-weight: 950;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .send svg { width: 19px; height: 19px; }

    .watermark {
      width: 150px;
      height: 150px;
      opacity: .13;
      color: var(--orange);
      margin-top: 0;
    }

    .form-note {
      min-height: 18px;
      text-align: center;
      color: var(--green-2);
      font-size: 12px;
      font-weight: 800;
    }

    .site-footer {
      position: relative;
      margin-top: 20px;
      background: var(--blue);
      color: #fff;
      padding: 32px 0 24px;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -35px;
      height: 36px;
      background: var(--blue);
      clip-path: polygon(0 55%, 10% 70%, 20% 45%, 30% 74%, 40% 46%, 51% 68%, 63% 43%, 75% 70%, 88% 43%, 100% 64%, 100% 100%, 0 100%);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 220px 1.6fr 1.1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo {
      width: auto;
      max-width: 170px;
      height: 92px;
      object-fit: contain;
      display: block;
    }

    .footer-brand .brand-badge {
      width: 65px;
      height: 65px;
    }

    .footer-brand .brand-copy strong,
    .footer-brand .brand-copy .name {
      color: #fff;
      font-size: 12px;
    }

    .footer-brand .brand-copy .name { font-size: 19px; line-height: .98; }
    .footer-brand .brand-copy small { background: var(--green); }

    .site-footer p,
    .site-footer a {
      font-size: 12px;
      line-height: 1.5;
    }

    .site-footer h4 {
      margin: 0 0 8px;
      font-size: 13px;
    }

    .footer-links {
      columns: 2;
    }

    .footer-links a {
      display: block;
      margin-bottom: 5px;
    }

    .footer-social {
      display: flex;
      gap: 20px;
      margin-top: 12px;
    }

    .footer-social .social {
      background: #fff;
      color: var(--blue);
    }

    .toast {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 50;
      background: var(--blue);
      color: #fff;
      padding: 13px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(18px);
      pointer-events: none;
      transition: .2s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .pix-modal {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: none;
      place-items: center;
      padding: 24px;
    }

    .pix-modal.open {
      display: grid;
    }

    .pix-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7, 20, 45, .58);
      backdrop-filter: blur(6px);
    }

    .pix-modal__dialog {
      position: relative;
      width: min(860px, 100%);
      max-height: calc(100vh - 48px);
      overflow: auto;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
      padding: 22px;
      text-align: center;
    }

    .pix-modal__dialog h2 {
      margin: 0 48px 14px;
      color: var(--blue);
      font-size: 28px;
      line-height: 1.15;
    }

    .pix-modal__dialog img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }

    .pix-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      font-size: 24px;
      line-height: 1;
      display: grid;
      place-items: center;
    }

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 82px;
      z-index: 45;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 24px;
      font-weight: 950;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(14px);
      pointer-events: none;
      transition: .2s ease;
    }

    .back-to-top.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .media-modal {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: none;
      place-items: center;
      padding: 24px;
    }

    .media-modal.open {
      display: grid;
    }

    .media-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7, 20, 45, .76);
      backdrop-filter: blur(7px);
    }

    .media-modal__dialog {
      position: relative;
      width: min(980px, 100%);
      max-height: calc(100vh - 48px);
      border-radius: 16px;
      background: #07142d;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
      overflow: hidden;
    }

    .media-modal__content img,
    .media-modal__content video {
      width: 100%;
      max-height: calc(100vh - 48px);
      object-fit: contain;
      display: block;
      background: #07142d;
    }

    .media-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: var(--blue);
      font-size: 25px;
      line-height: 1;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    }

    @media (max-width: 980px) {
      .nav {
        height: auto;
        min-height: 92px;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .brand { min-width: 220px; }
      .brand-logo { width: 220px; }
      .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        overflow-x: auto;
      }

      .nav-links a {
        padding: 10px 0 12px;
        white-space: nowrap;
      }

      .nav-links a::after { bottom: 3px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { padding: 34px 0 22px; }
      .hero-art { min-height: 330px; }
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .pillars,
      .action-grid,
      .stats,
      .gallery-row,
      .help-band,
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats { padding: 8px 0; }
      .stat:nth-child(2) { border-right: 0; }
      .help-title,
      .help-cta {
        grid-column: 1 / -1;
      }

      .help-option:nth-of-type(3) { border-left: 0; }
      .contact-grid { gap: 20px; }
      .watermark { display: none; }
    }

    @media (max-width: 640px) {
      .wrap { width: min(100% - 28px, 1120px); }
      .site-header .wrap { width: min(100% - 24px, 1120px); }
      .nav {
        align-items: center;
        gap: 12px;
      }

      .brand-badge { width: 64px; height: 64px; }
      .brand {
        min-width: 0;
        flex: 1 1 100%;
        justify-content: center;
      }

      .brand-logo {
        width: min(260px, 100%);
        max-height: 82px;
      }

      .brand-copy .name { font-size: 23px; }
      .brand-copy em { font-size: 15px; }
      .donate {
        min-width: 0;
        flex: 1 1 auto;
        padding: 0 18px;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
      }

      .nav-links {
        display: none;
        order: 4;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 4px 0 8px;
        overflow: visible;
      }

      .nav-links.open {
        display: grid;
      }

      .nav-links a {
        min-height: 38px;
        padding: 0 10px;
        border: 1px solid rgba(7, 59, 130, .14);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        font-size: 13px;
      }

      .nav-links a::after {
        display: none;
      }

      .nav-links a.active {
        color: #fff;
        background: var(--blue);
        border-color: var(--blue);
      }

      .button-row .btn { width: 100%; }
      .children { left: -16px; right: -84px; }
      .child { min-width: 54px; }
      .child.featured { min-width: 150px; }
      .hero-image {
        inset: 0;
        width: 100%;
      }
      .pillars,
      .action-grid,
      .stats,
      .gallery-row,
      .help-band,
      .form-row,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .pix-modal {
        padding: 12px;
      }

      .pix-modal__dialog {
        width: 100%;
        padding: 14px;
      }

      .pix-modal__dialog h2 {
        margin: 4px 42px 12px;
        font-size: 24px;
      }

      .footer-logo {
        max-width: 170px;
        height: 86px;
      }

      .actions-panel { padding: 18px 18px 14px; }
      .action-grid { gap: 38px; }
      .stats .stat,
      .help-option,
      .help-cta {
        border: 0;
        border-top: 1px solid rgba(7, 59, 130, .18);
      }

      .stats .stat:first-child,
      .help-option:first-of-type,
      .help-cta {
        border-top: 0;
      }

      .help-title { justify-content: center; }
      .contact-item { grid-template-columns: 30px 1fr; }
      .socials { margin-left: 0; }
    }

