
    :root {
      --ink: #143639;
      --ink-deep: #09272b;
      --ink-muted: #557173;
      --paper: #fcfaf5;
      --mist: #eef4ed;
      --peach: #f6d8bd;
      --sun: #e58a4b;
      --sun-deep: #c96833;
      --line: rgba(20, 54, 57, .14);
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(14, 42, 43, .12);
      --radius: 26px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background: var(--paper);
      color: var(--ink);
      font-family: "DM Sans", Arial, sans-serif;
      line-height: 1.55;
    }

    body.modal-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    :focus-visible {
      outline: 3px solid #f1ad75;
      outline-offset: 3px;
    }

    .shell {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--sun-deep);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 25px;
      height: 2px;
      background: currentColor;
    }

    .display {
      font-family: "Playfair Display", Georgia, serif;
      letter-spacing: -.045em;
      line-height: .98;
    }

    .section {
      padding: 105px 0;
    }

    .section-heading {
      max-width: 650px;
    }

    .section-heading h2 {
      margin: 14px 0 17px;
      font-size: clamp(2.35rem, 5vw, 4.3rem);
    }

    .section-heading p {
      margin: 0;
      max-width: 590px;
      color: var(--ink-muted);
      font-size: 1.05rem;
    }

    .button {
      min-height: 48px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: .93rem;
      font-weight: 700;
      transition: transform .2s ease, background .2s ease, border .2s ease, color .2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button--sun {
      background: var(--sun);
      color: var(--white);
    }

    .button--sun:hover {
      background: var(--sun-deep);
    }

    .button--light {
      background: var(--white);
      color: var(--ink);
    }

    .button--ghost {
      border-color: rgba(255, 255, 255, .42);
      color: var(--white);
    }

    .button--ghost:hover {
      background: rgba(255, 255, 255, .11);
    }

    .button--outline {
      border-color: var(--ink);
      color: var(--ink);
      background: transparent;
    }

    .button--outline:hover {
      background: var(--ink);
      color: var(--white);
    }

    .arrow {
      font-size: 1.15em;
      line-height: .8;
    }

    .notice {
      background: var(--ink-deep);
      color: rgba(255, 255, 255, .84);
      font-size: .78rem;
    }

    .notice__inner {
      min-height: 37px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
    }

    .notice a {
      color: #ffca9d;
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 700;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(252, 250, 245, .93);
      backdrop-filter: blur(13px);
      border-bottom: 1px solid transparent;
      transition: border .2s ease, box-shadow .2s ease;
    }

    .site-header.is-scrolled {
      border-color: var(--line);
      box-shadow: 0 6px 18px rgba(10, 32, 33, .04);
    }

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

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

    .brand__mark {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      overflow: hidden;
      padding: 3px;
      border: 1px solid rgba(20, 54, 57, .1);
      box-shadow: 0 5px 15px rgba(20, 54, 57, .1);
    }

    .brand__mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .brand__name {
      display: block;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.43rem;
      letter-spacing: -.04em;
      line-height: 1;
    }

    .brand__tag {
      display: block;
      margin-top: 4px;
      color: var(--ink-muted);
      font-size: .55rem;
      font-weight: 700;
      letter-spacing: .105em;
      text-transform: uppercase;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 27px;
      margin-left: auto;
      font-size: .88rem;
      font-weight: 600;
    }

    .nav__links a:not(.button) {
      position: relative;
    }

    .nav__links a:not(.button)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--sun);
      transition: width .2s ease;
    }

    .nav__links a:not(.button):hover::after {
      width: 100%;
    }

    .nav .button {
      min-height: 42px;
      padding: 10px 17px;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--ink);
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      margin: 4px auto;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-button[aria-expanded="true"] span {
      opacity: 0;
    }

    .menu-button[aria-expanded="true"]::before {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"]::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
    }

    .hero::before {
      content: "";
      position: absolute;
      width: min(53vw, 750px);
      aspect-ratio: 1;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
      top: -37%;
      right: -12%;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 270px;
      height: 270px;
      border-radius: 50%;
      background: var(--sun);
      filter: blur(0);
      right: 14%;
      bottom: -160px;
      opacity: .86;
    }

    .hero__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      min-height: 640px;
      align-items: center;
      gap: 64px;
      padding: 84px 0 72px;
    }

    .hero__copy {
      padding: 25px 0;
    }

    .hero .eyebrow {
      color: #ffbd86;
    }

    .hero h1 {
      max-width: 700px;
      margin: 17px 0 23px;
      font-size: clamp(3.35rem, 7.2vw, 6.5rem);
    }

    .hero h1 em {
      color: #f6c596;
      font-weight: inherit;
    }

    .hero__copy>p {
      max-width: 535px;
      margin: 0;
      color: rgba(255, 255, 255, .76);
      font-size: clamp(1rem, 2vw, 1.12rem);
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero__actions .button--light {
      color: var(--sun-deep);
    }

    .trust-row {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-top: 49px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .72);
    }

    .trust-avatars {
      display: flex;
    }

    .trust-avatars img {
      width: 32px;
      height: 32px;
      margin-left: -10px;
      border: 2px solid var(--ink);
      border-radius: 50%;
      object-fit: cover;
    }

    .trust-avatars img:first-child {
      margin-left: 0;
    }

    .hero-art {
      position: relative;
      min-height: 440px;
    }

    .hero-card {
      position: absolute;
      border-radius: 20px;
      box-shadow: 0 24px 55px rgba(0, 0, 0, .21);
    }

    .hero-card--large {
      inset: 32px 23px 25px 26px;
      overflow: hidden;
      background: #dce8da;
    }

    .hero-card--large img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-card--quote {
      width: 218px;
      right: -4px;
      bottom: 0;
      padding: 20px;
      background: var(--white);
      color: var(--ink);
    }

    .quote-icon {
      display: block;
      color: var(--sun);
      font-family: Georgia, serif;
      font-size: 3.5rem;
      line-height: .6;
    }

    .hero-card--quote p {
      margin: 8px 0 11px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.25;
    }

    .hero-card--quote small {
      color: var(--ink-muted);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-card--label {
      left: 0;
      top: 0;
      padding: 13px 16px;
      background: var(--sun);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      transform: rotate(-5deg);
      z-index: 10;
    }

    .scroll-cue {
      position: absolute;
      z-index: 2;
      bottom: 22px;
      left: 50%;
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .6);
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      transform: translateX(-50%);
    }

    .scroll-cue::before {
      content: "";
      width: 23px;
      height: 1px;
      background: currentColor;
    }

    .intro {
      padding: 48px 0;
      border-bottom: 1px solid var(--line);
      background: #fffdfa;
    }

    .intro__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 30px;
    }

    .intro-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding-right: 25px;
      border-right: 1px solid var(--line);
    }

    .intro-item:last-child {
      border: 0;
    }

    .intro-icon {
      flex: none;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--mist);
      color: var(--sun-deep);
    }

    .intro-item strong {
      display: block;
      font-size: .92rem;
    }

    .intro-item span {
      display: block;
      margin-top: 2px;
      color: var(--ink-muted);
      font-size: .8rem;
    }

    .mission {
      overflow: hidden;
      background: var(--mist);
    }

    .mission__grid {
      display: grid;
      grid-template-columns: 1fr .9fr;
      align-items: center;
      gap: 8vw;
    }

    .mission-visual {
      position: relative;
      min-height: 495px;
    }

    .mission-shape {
      position: absolute;
      width: 80%;
      aspect-ratio: 1;
      border-radius: 49% 51% 40% 60% / 57% 42% 58% 43%;
      background: var(--sun);
      top: 23px;
      left: 0;
    }

    .mission-photo {
      position: absolute;
      z-index: 1;
      width: 74%;
      height: 76%;
      right: 0;
      bottom: 0;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    .mission-dots {
      position: absolute;
      z-index: 2;
      width: 128px;
      height: 75px;
      right: -25px;
      top: 28px;
      opacity: .75;
      background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
      background-size: 12px 12px;
    }

    .mission-note {
      position: absolute;
      z-index: 3;
      left: 0;
      bottom: 32px;
      max-width: 196px;
      padding: 18px;
      border-radius: 14px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .mission-note strong {
      display: block;
      margin-bottom: 5px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.1rem;
      line-height: 1.15;
    }

    .mission-note span {
      color: var(--ink-muted);
      font-size: .76rem;
      line-height: 1.4;
    }

    .mission-copy h2 {
      max-width: 550px;
    }

    .mission-copy .lead {
      margin: 24px 0 27px;
      color: var(--ink-muted);
      font-size: 1.05rem;
    }

    .check-list {
      display: grid;
      gap: 14px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      font-weight: 600;
      font-size: .93rem;
    }

    .check {
      flex: none;
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border-radius: 50%;
      background: rgba(229, 138, 75, .19);
      color: var(--sun-deep);
      font-size: .8rem;
    }

    .text-link {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin-top: 30px;
      color: var(--sun-deep);
      font-size: .88rem;
      font-weight: 700;
    }

    .text-link:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .focus {
      background: var(--paper);
    }

    .focus__head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
    }

    .focus__head .section-heading {
      max-width: 680px;
    }

    .focus__head .text-link {
      margin: 0 0 13px;
      white-space: nowrap;
    }

    .focus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .focus-card {
      min-height: 330px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .focus-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .focus-card__number {
      color: var(--sun);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
    }

    .focus-icon {
      display: grid;
      place-items: center;
      width: 59px;
      height: 59px;
      margin: 22px 0 22px;
      border-radius: 18px;
      background: var(--mist);
      color: var(--ink);
    }

    .focus-card:nth-child(2) .focus-icon {
      background: var(--peach);
    }

    .focus-card:nth-child(3) .focus-icon {
      background: #dae5f0;
    }

    .focus-card h3 {
      margin: 0 0 10px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.53rem;
      letter-spacing: -.03em;
    }

    .focus-card p {
      margin: 0;
      color: var(--ink-muted);
      font-size: .9rem;
    }

    .focus-card a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 23px;
      font-size: .83rem;
      font-weight: 700;
    }

    .donate {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--ink);
    }

    .donate::before {
      content: "";
      position: absolute;
      width: 410px;
      height: 410px;
      top: -220px;
      right: -130px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
      box-shadow: 0 0 0 55px transparent, 0 0 0 56px rgba(255, 255, 255, .08);
    }

    .donate__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr .96fr;
      gap: clamp(35px, 7vw, 105px);
      align-items: center;
    }

    .donate .eyebrow {
      color: #ffbd86;
    }

    .donate h2 {
      margin: 14px 0 16px;
      font-size: clamp(2.5rem, 5vw, 4.3rem);
    }

    .donate__copy p {
      max-width: 510px;
      color: rgba(255, 255, 255, .72);
      font-size: 1.03rem;
    }

    .donate__assurance {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-top: 26px;
      color: rgba(255, 255, 255, .66);
      font-size: .78rem;
    }

    .donate__assurance svg {
      color: #ffbd86;
      flex: none;
    }

    .pledge-card {
      padding: 28px;
      border-radius: var(--radius);
      background: #fffdf9;
      color: var(--ink);
      box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
    }

    .pledge-card h3 {
      margin: 0;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.55rem;
      letter-spacing: -.03em;
    }

    .pledge-card>p {
      margin: 5px 0 21px;
      color: var(--ink-muted);
      font-size: .82rem;
    }

    .amounts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
    }

    .amount {
      position: relative;
      padding: 11px 6px;
      border: 1px solid var(--line);
      border-radius: 11px;
      background: var(--white);
      color: var(--ink);
      font-weight: 700;
      font-size: .9rem;
    }

    .amount:hover,
    .amount.is-selected {
      border-color: var(--sun);
      background: #fff5eb;
      color: var(--sun-deep);
    }

    .amount.is-selected::after {
      content: "✓";
      position: absolute;
      top: -7px;
      right: -5px;
      display: grid;
      place-items: center;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: var(--sun);
      color: #fff;
      font-size: .63rem;
    }

    .amount--custom {
      color: var(--ink-muted);
    }

    .pledge-card .button {
      width: 100%;
      margin-top: 19px;
    }

    .pledge-card small {
      display: block;
      margin-top: 12px;
      color: var(--ink-muted);
      font-size: .71rem;
      line-height: 1.4;
      text-align: center;
    }

    .opportunities {
      background: #fffdfa;
    }

    .opportunities__top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: end;
    }

    .opportunity-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 19px;
      margin-top: 46px;
    }

    .opportunity {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      overflow: hidden;
      min-height: 360px;
      border-radius: var(--radius);
      background: var(--mist);
    }

    .opportunity--volunteer {
      background: #f9e6d2;
    }

    .opportunity__copy {
      padding: 35px;
    }

    .opportunity__tag {
      color: var(--sun-deep);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .opportunity h3 {
      margin: 13px 0 13px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(1.75rem, 3vw, 2.45rem);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .opportunity p {
      margin: 0;
      color: var(--ink-muted);
      font-size: .89rem;
    }

    .opportunity .button {
      margin-top: 25px;
    }

    .opportunity__art {
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }

    /* Replaced abstract CSS with professional background images */
    .intern-art {
      background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=600&q=80');
    }

    .volunteer-art {
      background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=600&q=80');
    }

    .art-word {
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 50%;
      color: rgba(255, 255, 255, 0.9);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: .02em;
      transform: rotate(-90deg) translateX(-50%);
      transform-origin: left top;
    }

    .voice {
      background: var(--paper);
    }

    .voice__layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 70px;
      align-items: center;
    }

    .voice h2 {
      margin: 13px 0 15px;
      font-size: clamp(2.4rem, 4.7vw, 4rem);
    }

    .voice-copy>p {
      color: var(--ink-muted);
    }

    .quote-stack {
      display: grid;
      gap: 14px;
    }

    .voice-card {
      position: relative;
      padding: 23px 25px 23px 77px;
      border-radius: 16px;
      background: var(--white);
      border: 1px solid var(--line);
    }

    .voice-card::before {
      content: attr(data-initials);
      position: absolute;
      left: 20px;
      top: 22px;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--peach);
      color: var(--sun-deep);
      font-size: .7rem;
      font-weight: 700;
    }

    .voice-card:nth-child(2)::before {
      background: #d9e7df;
      color: #28645d;
    }

    .voice-card:nth-child(3)::before {
      background: #dce5f0;
      color: #3d668f;
    }

    .voice-card blockquote {
      margin: 0;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.08rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .voice-card p {
      margin: 7px 0 0;
      color: var(--ink-muted);
      font-size: .75rem;
      font-weight: 600;
    }

    .voice-card p::before {
      content: "— ";
    }

    .contact {
      padding: 74px 0;
      background: var(--sun);
      color: #fff;
    }

    .contact__grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 60px;
      align-items: center;
    }

    .contact h2 {
      margin: 10px 0 16px;
      font-size: clamp(2.45rem, 4.8vw, 4.2rem);
    }

    .contact p {
      max-width: 560px;
      margin: 0;
      color: rgba(255, 255, 255, .86);
      font-size: 1.03rem;
    }

    .contact__details {
      display: grid;
      gap: 11px;
      margin-top: 25px;
    }

    .contact__details a,
    .contact__details div {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #fff;
      font-size: .87rem;
      font-weight: 600;
    }

    .contact__details svg {
      flex: none;
      margin-top: 3px;
    }

    .contact-form {
      padding: 26px;
      border-radius: 20px;
      background: #fffaf5;
      color: var(--ink);
      box-shadow: 0 16px 35px rgba(105, 53, 23, .15);
    }

    .contact-form h3 {
      margin: 0 0 3px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.45rem;
      letter-spacing: -.03em;
    }

    .contact-form>p {
      margin-bottom: 17px;
      color: var(--ink-muted);
      font-size: .77rem;
    }

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

    .field {
      display: grid;
      gap: 5px;
      margin-top: 10px;
    }

    .field label {
      color: var(--ink-muted);
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 11px 12px;
      border: 1px solid rgba(20, 54, 57, .16);
      border-radius: 9px;
      background: #fff;
      color: var(--ink);
      font-size: .84rem;
    }

    .field textarea {
      min-height: 76px;
      resize: vertical;
    }

    .contact-form .button {
      width: 100%;
      margin-top: 15px;
    }

    .form-status {
      display: none;
      margin: 11px 2px 0;
      color: #26705e;
      font-size: .77rem;
      font-weight: 600;
    }

    .form-status.is-visible {
      display: block;
    }

    .footer {
      padding: 37px 0 23px;
      background: var(--ink-deep);
      color: rgba(255, 255, 255, .7);
    }

    .footer__main {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding-bottom: 27px;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .footer .brand {
      color: #fff;
    }

    .footer .brand__tag {
      color: rgba(255, 255, 255, .48);
    }

    .footer .brand__mark {
      border-color: rgba(255, 255, 255, .18);
    }

    .footer__main p {
      max-width: 310px;
      margin: 5px 0 0;
      font-size: .78rem;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      justify-content: flex-end;
      gap: 10px 22px;
      max-width: 320px;
      font-size: .79rem;
      font-weight: 600;
    }

    .footer-nav a:hover {
      color: #ffbd86;
    }

    .footer__bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 17px;
      font-size: .67rem;
    }

    .modal {
      position: fixed;
      z-index: 100;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 20px;
      visibility: hidden;
      opacity: 0;
      background: rgba(3, 20, 22, .66);
      transition: opacity .2s ease, visibility .2s ease;
    }

    .modal.is-open {
      visibility: visible;
      opacity: 1;
    }

    .modal__box {
      width: min(475px, 100%);
      position: relative;
      padding: 32px;
      border-radius: 22px;
      background: #fffdfa;
      box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
      transform: translateY(12px);
      transition: transform .25s ease;
    }

    .modal.is-open .modal__box {
      transform: translateY(0);
    }

    .modal__close {
      position: absolute;
      right: 15px;
      top: 15px;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: var(--mist);
      color: var(--ink);
      font-size: 1.3rem;
      line-height: 1;
    }

    .modal h2 {
      margin: 7px 0 8px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 2rem;
      letter-spacing: -.04em;
    }

    .modal>.modal__box>p {
      margin: 0 0 18px;
      color: var(--ink-muted);
      font-size: .88rem;
    }

    .modal-summary {
      padding: 10px 13px;
      border-radius: 9px;
      background: var(--mist);
      color: var(--ink);
      font-size: .83rem;
      font-weight: 700;
    }

    .modal .button {
      width: 100%;
      margin-top: 17px;
    }

    .modal-note {
      margin: 12px 0 0;
      color: var(--ink-muted);
      font-size: .71rem;
      text-align: center;
    }

    @media (max-width: 950px) {
      .hero__grid {
        grid-template-columns: 1fr .8fr;
        gap: 27px;
      }

      .hero-art {
        min-height: 385px;
      }

      .mission__grid,
      .donate__grid {
        gap: 45px;
      }

      .opportunity {
        grid-template-columns: 1fr .7fr;
      }

      .opportunity__copy {
        padding: 28px;
      }

      .voice__layout {
        gap: 42px;
      }
    }

    @media (max-width: 760px) {
      .shell {
        width: min(100% - 32px, 600px);
      }

      .section {
        padding: 75px 0;
      }

      .nav {
        height: 70px;
      }

      .brand {
        min-width: auto;
      }

      .nav__links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 20px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
        box-shadow: 0 13px 22px rgba(10, 32, 33, .1);
      }

      .nav__links.is-open {
        display: flex;
      }

      .nav__links a:not(.button) {
        padding: 12px 4px;
      }

      .nav__links a:not(.button)::after {
        display: none;
      }

      .nav__links .button {
        margin-top: 8px;
      }

      .menu-button {
        display: block;
      }

      .hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 9px;
        padding: 68px 0 55px;
      }

      .hero h1 {
        font-size: clamp(3.15rem, 13vw, 5rem);
      }

      .hero-art {
        min-height: 330px;
        max-width: 470px;
        width: 91%;
        margin: 0 auto;
      }

      .hero-card--large {
        inset: 23px 18px 20px;
      }

      .hero-card--quote {
        width: 195px;
      }

      .scroll-cue {
        display: none;
      }

      .intro__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .intro-item {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .intro-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .mission__grid,
      .donate__grid,
      .voice__layout,
      .contact__grid {
        grid-template-columns: 1fr;
      }

      .mission-visual {
        min-height: 400px;
        max-width: 490px;
        width: 90%;
      }

      .mission-copy {
        margin-top: 10px;
      }

      .focus__head {
        display: block;
      }

      .focus__head .text-link {
        margin-top: 23px;
      }

      .focus-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
      }

      .focus-card {
        min-height: 0;
      }

      .donate__grid {
        gap: 35px;
      }

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

      .opportunity-grid {
        grid-template-columns: 1fr;
        margin-top: 31px;
      }

      .opportunity {
        grid-template-columns: 1.25fr .75fr;
        min-height: 320px;
      }

      .voice__layout {
        gap: 32px;
      }

      .contact {
        padding: 65px 0;
      }

      .footer__main,
      .footer__bottom {
        flex-direction: column;
      }

      .footer-nav {
        justify-content: flex-start;
      }
    }

    @media (max-width: 480px) {
      .notice__inner {
        min-height: 42px;
        font-size: .68rem;
      }

      .brand__mark {
        width: 42px;
        height: 42px;
      }

      .brand__name {
        font-size: 1.27rem;
      }

      .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero__actions .button {
        width: 100%;
      }

      .trust-row {
        margin-top: 31px;
      }

      .hero-art {
        min-height: 282px;
        width: 100%;
      }

      .hero-card--quote {
        width: 178px;
        padding: 15px;
      }

      .hero-card--quote p {
        font-size: .88rem;
      }

      .mission-visual {
        min-height: 320px;
        width: 100%;
      }

      .mission-note {
        bottom: 8px;
        max-width: 170px;
        padding: 13px;
      }

      .focus-card {
        padding: 23px;
      }

      .pledge-card {
        padding: 21px;
      }

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

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

      .opportunity__art {
        min-height: 122px;
      }

      .art-word {
        top: 78%;
        left: 42%;
        transform: rotate(0) translateX(-50%);
      }

      .opportunity__copy {
        padding: 27px 23px;
      }

      .voice-card {
        padding: 20px 19px 20px 69px;
      }

      .voice-card::before {
        left: 17px;
      }

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

      .modal__box {
        padding: 27px 20px 23px;
      }
    }

      <style>
    /* CORE STYLES IMPORTED FROM INDEX.HTML */
    :root {
      --ink: #143639;
      --ink-deep: #09272b;
      --ink-muted: #557173;
      --paper: #fcfaf5;
      --mist: #eef4ed;
      --peach: #f6d8bd;
      --sun: #e58a4b;
      --sun-deep: #c96833;
      --line: rgba(20, 54, 57, .14);
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(14, 42, 43, .12);
      --radius: 26px; 
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      background: var(--paper);
      color: var(--ink);
      font-family: "DM Sans", Arial, sans-serif;
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    img { max-width: 100%; display: block; }
    :focus-visible { outline: 3px solid #f1ad75; outline-offset: 3px; }

    .shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--sun-deep);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 25px; height: 2px; background: currentColor; }
    .display { font-family: "Playfair Display", Georgia, serif; letter-spacing: -.045em; line-height: .98; }
    .section { padding: 105px 0; }
    .section-heading { max-width: 650px; }
    .section-heading h2 { margin: 14px 0 17px; font-size: clamp(2.35rem, 5vw, 4.3rem); }
    .section-heading p { margin: 0; max-width: 590px; color: var(--ink-muted); font-size: 1.05rem; }
    .button {
      min-height: 48px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: .93rem;
      font-weight: 700;
      transition: transform .2s ease, background .2s ease, border .2s ease, color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button--sun { background: var(--sun); color: var(--white); }
    .button--sun:hover { background: var(--sun-deep); }
    .arrow { font-size: 1.15em; line-height: .8; }

    .site-header { position: sticky; top: 0; z-index: 30; background: rgba(252,250,245,.93); backdrop-filter: blur(13px); border-bottom: 1px solid transparent; transition: border .2s ease, box-shadow .2s ease; }
    .site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 18px rgba(10,32,33,.04); }
    .nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; }
    .brand__mark { width: 48px; height: 48px; border-radius: 50%; background: #fff; overflow: hidden; padding: 3px; border: 1px solid rgba(20,54,57,.1); box-shadow: 0 5px 15px rgba(20,54,57,.1); }
    .brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .brand__name { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.43rem; letter-spacing: -.04em; line-height: 1; }
    .brand__tag { display: block; margin-top: 4px; color: var(--ink-muted); font-size: .55rem; font-weight: 700; letter-spacing: .105em; text-transform: uppercase; }
    .nav__links { display: flex; align-items: center; gap: 27px; margin-left: auto; font-size: .88rem; font-weight: 600; }
    .nav__links a:not(.button) { position: relative; }
    .nav__links a:not(.button)::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--sun); transition:width .2s ease; }
    .nav__links a:not(.button):hover::after, .nav__links a.is-active::after { width:100%; }
    .nav .button { min-height: 42px; padding: 10px 17px; }

    /* PAGE SPECIFIC STYLES */
    .page-hero { padding: 90px 0 70px; text-align: center; background: var(--mist); }
    .page-hero .section-heading { margin: 0 auto; max-width: 800px; }
    .page-hero h1 { margin: 14px 0 20px; font-size: clamp(3rem, 6vw, 5rem); }
    .page-hero p { margin: 0 auto; max-width: 650px; font-size: 1.15rem; color: var(--ink-muted); }

    .story { background: var(--paper); }
    .story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .story-content h2 { margin: 0 0 20px; font-family: "Playfair Display", Georgia, serif; font-size: 2.5rem; letter-spacing: -.03em; }
    .story-content p { color: var(--ink-muted); font-size: 1.05rem; margin-bottom: 20px; }
    .story-image img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; min-height: 400px; }

    .values { background: var(--ink); color: var(--white); }
    .values .eyebrow { color: #ffbd86; }
    .values .section-heading p { color: rgba(255,255,255,.76); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
    .value-card { padding: 40px 30px; border-radius: var(--radius); background: var(--ink-deep); border: 1px solid rgba(255,255,255,.05); transition: transform .2s ease; }
    .value-card:hover { transform: translateY(-5px); }
    .value-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; margin: 0 0 15px; }
    .value-card p { color: rgba(255,255,255,.7); font-size: .95rem; margin: 0; }
    .value-icon { margin-bottom: 20px; color: var(--sun); }

    .team { background: #fffdfa; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
    .team-member img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(14, 42, 43, .08); }
    .team-member h3 { margin: 0 0 5px; font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; }
    .team-member p { margin: 0; color: var(--sun-deep); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

    .footer { padding:37px 0 23px; background:var(--ink-deep); color:rgba(255,255,255,.7); }
    .footer__main { display:flex; justify-content:space-between; gap:30px; padding-bottom:27px; border-bottom:1px solid rgba(255,255,255,.14); }
    .footer .brand { color:#fff; }
    .footer .brand__tag { color:rgba(255,255,255,.48); }
    .footer .brand__mark { border-color:rgba(255,255,255,.18); }
    .footer__main p { max-width:310px; margin:5px 0 0; font-size:.78rem; }
    .footer-nav { display:flex; flex-wrap:wrap; align-content:flex-start; justify-content:flex-end; gap:10px 22px; max-width:320px; font-size:.79rem; font-weight:600; }
    .footer-nav a:hover { color:#ffbd86; }
    .footer__bottom { display:flex; justify-content:space-between; gap:20px; padding-top:17px; font-size:.67rem; }

    @media (max-width: 950px) {
      .story__grid { grid-template-columns: 1fr; gap: 40px; }
      .story-image { order: -1; }
    }
    @media (max-width: 760px) {
      .nav__links { display: none; } /* Add your mobile menu toggle logic here as in index.html */
      .values-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .footer__main, .footer__bottom { flex-direction:column; }
      .footer-nav { justify-content:flex-start; }
    }
    @media (max-width: 480px) {
      .team-grid { grid-template-columns: 1fr; }
    }

.honeypot {
  display: none !important;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Modal and Utility Classes */
.is-visible {
  display: block !important;
}

/* Custom Gallery Grid for Collaborations */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-item--wide {
  grid-column: 1 / -1; /* Spans full width on smaller screens */
}

@media (min-width: 768px) {
  .gallery-item--wide {
    grid-column: span 2; /* Spans two columns on larger screens */
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(9, 39, 43, 0.9));
  color: var(--white);
  padding: 30px 20px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* --- Modern Footer Styles --- */
.footer {
  padding: 60px 0 30px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-col .brand {
  color: #fff;
  margin-bottom: 15px;
}

.footer__mission {
  margin-top: 15px;
  max-width: 280px;
  line-height: 1.6;
}

.footer__heading {
  color: var(--sun);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.footer__nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-col a, .footer__contact-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__nav-col a:hover, .footer__contact-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__address p { margin: 0; }

.footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 0.75rem;
}

.footer__socials a:hover {
  background: var(--sun);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  font-size: 0.75rem;
}

.footer__approach {
  color: var(--sun-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 950px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; gap: 15px; text-align: center; }
}

p {
  max-width: 70ch; /* Optimal reading length */
  line-height: 1.65;
}