
    /* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-ui);
      color: var(--white);
      background: var(--white);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ─── DESIGN TOKENS ─── */
    :root {
      --white:     #FFFFFF;
      --primary:   #354D3F;
      --secondary: #1F4F4A;
      --gold:      #C6A86B;
      --gold-dark: #b29357;
      --nav-bg:    rgba(31, 42, 38, 0.85);
      --font-h:    'Montserrat', sans-serif;
      --font-ui:   'Inter', sans-serif;
      --pad:       144px;
      --nav-h:     125px;
    }

    /* ─────────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────────── */
    /* ─── NAVBAR ─── */
    .admin-bar nav.navbar { top: 32px; }

    nav.navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--nav-bg);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 141px;
      height: 125px;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    nav.navbar .nav-logo img {
      height: 75px;
      width: auto;
      max-width: 260px;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      padding: 16px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(255,255,255,0.50);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--gold); }

    .btn-contact-nav {
      background: var(--gold);
      color: var(--white) !important;
      padding: 0 28px !important;
      height: 55px;
      line-height: 55px;
      border-radius: 999px;
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 400 !important;
      font-size: 14px !important;
      letter-spacing: 0.4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.25s, border-color 0.25s, color 0.25s !important;
    }
    .btn-contact-nav:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 125px;
      left: 0; right: 0;
      background: rgba(31, 46, 39, 0.98);
      backdrop-filter: blur(12px);
      z-index: 99;
      padding: 20px 24px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-direction: column;
      gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block;
      padding: 16px 0;
      font-size: 15px;
      color: rgba(255,255,255,0.80);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-menu a.active { color: var(--gold); }
    .mobile-menu .btn-contact-mobile {
      margin-top: 16px;
      display: inline-block;
      background: var(--gold);
      color: var(--white) !important;
      border: none;
      padding: 12px 24px;
      border-radius: 999px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-align: center;
      border-bottom: none !important;
    }

    /* ─────────────────────────────────────────────
       SECTION 1 — HERO
    ───────────────────────────────────────────── */
    .sec-hero {
      background: var(--primary);
      position: relative;
      min-height: auto;
      overflow: hidden;
    }

    /* Background image with triangular notch at bottom center */
    .sec-hero__bg {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 479px;
      pointer-events: none;
    }
    .sec-hero__bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      clip-path: polygon(
        0%    0%,
        100%  0%,
        100%  84.5%,
        54.5% 84.5%,
        50%   100%,
        45.5% 84.5%,
        0%    84.5%
      );
    }

    /* "PHILANTHROPY" — right-aligned, overlaid on image */
    .sec-hero__label {
      position: absolute;
      top: 299px;
      left: var(--pad);
      right: var(--pad);
      font-family: var(--font-h);
      font-size: 60px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      text-align: right;
      color: var(--white);
      z-index: 2;
      pointer-events: none;
    }

    /* Two-column content below image */
    .sec-hero__content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 466px 1fr;
      gap: 25px;
      padding: 537px var(--pad) 100px;
      align-items: start;
    }

    .sec-hero__subtitle {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
    }

    .sec-hero__right {
      display: flex;
      flex-direction: column;
      padding: 8px 0 0 24px;
    }

    .sec-hero__body {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
      text-align: left;
    }
    .sec-hero__body p + p { margin-top: 20px; }

    .btn-openings {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 55px;
      padding: 0 28px;
      border-radius: 999px;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      width: fit-content;
      margin-top: 48px;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
      cursor: pointer;
    }
    .btn-openings:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
    }

    /* ─────────────────────────────────────────────
       SECTION 2 — SUPPORTING MEANINGFUL INITIATIVES
    ───────────────────────────────────────────── */
    .sec-support {
      background: var(--secondary);
      padding: 100px var(--pad) 100px;
    }

    .sec-support__top {
      display: grid;
      grid-template-columns: 466px 1fr;
      gap: 25px;
      padding-top: 0;
      align-items: end;
    }

    .sec-support__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
    }

    .sec-support__body {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
      padding-top: 38px;
    }
    .sec-support__body p + p { margin-top: 20px; }

    .sec-support__images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 89px;
      padding-bottom: 0;
    }

    .sec-support__img {
      height: 256px;
      border-radius: 10px;
      overflow: hidden;
    }
    .sec-support__img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* ─────────────────────────────────────────────
       SECTION 3 — INVESTING WITH IMPACT
    ───────────────────────────────────────────── */
    .sec-impact {
      position: relative;
      min-height: 808px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sec-impact__bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .sec-impact__bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .sec-impact__overlay {
      position: absolute;
      inset: 0;
      background: rgba(31, 42, 38, 0.72);
    }

    .sec-impact__content {
      position: relative;
      z-index: 1;
      width: 956px;
      max-width: 100%;
      text-align: center;
      padding: 80px var(--pad);
    }

    .sec-impact__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 35px;
    }

    .sec-impact__body {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.4em;
      color: var(--white);
      opacity: 0.5;
      max-width: 780px;
      margin: 0 auto;
    }
    .sec-impact__body p + p { margin-top: 24px; }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    .site-footer {
      background: var(--primary);
      padding: 28px var(--pad) 22px;
      border-top: 1px dotted rgba(255,255,255,0.08);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 18px;
    }

    .footer-logo img { height: 75px; width: auto; object-fit: contain; }

    .footer-nav {
      display: flex;
      align-items: center;
      list-style: none;
    }
    .footer-nav a {
      display: flex;
      align-items: center;
      padding: 16px;
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.50);
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--white); }
    .footer-nav a.active { color: var(--gold); }

    .footer-divider {
      height: 0;
      border-top: 1px dotted rgba(255,255,255,0.12);
      margin-bottom: 16px;
    }

    .footer-copy {
      text-align: center;
      font-family: var(--font-h);
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.3px;
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE — TABLET (≤960px)
    ───────────────────────────────────────────── */
    @media (max-width: 1280px) {
      :root { --pad: 80px; }
      nav.navbar { padding: 0 60px; }
      .nav-links a { padding: 12px 10px; font-size: 14px; }
      .sec-hero__label   { font-size: clamp(32px, 5vw, 56px); }
      .sec-hero__subtitle,
      .sec-support__heading,
      .sec-impact__heading { font-size: clamp(28px, 4vw, 46px); }
    }

    @media (max-width: 960px) {
      :root { --pad: 40px; }

      nav.navbar { padding: 0 40px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .sec-hero { min-height: auto; }
      .sec-hero__bg { height: 320px; }
      .sec-hero__bg img {
        clip-path: polygon(0% 0%, 100% 0%, 100% 82%, 55% 82%, 50% 100%, 45% 82%, 0% 82%);
      }
      .sec-hero__label { font-size: clamp(32px, 5vw, 50px); top: 180px; }
      .sec-hero__content {
        grid-template-columns: 1fr;
        padding: 360px var(--pad) 64px;
        gap: 32px;
      }
      .sec-hero__subtitle { font-size: clamp(28px, 4.5vw, 40px); }
      .sec-hero__right { padding: 0; }
      .sec-hero__body { font-size: 16px; }
      .btn-openings { margin-top: 32px; }

      /* Section 2 */
      .sec-support__top { grid-template-columns: 1fr; gap: 24px; padding-top: 0; }
      .sec-support__body { padding-top: 0; font-size: 16px; }
      .sec-support__images { margin-top: 48px; padding-bottom: 0; }
      .sec-support__heading { font-size: clamp(24px, 4vw, 40px); }

      /* Section 3 */
      .sec-impact { min-height: auto; }
      .sec-impact__content { width: 100%; padding: 80px var(--pad); }
      .sec-impact__heading { font-size: clamp(28px, 4.5vw, 40px); }
      .sec-impact__body { font-size: 24px; }

      /* Footer */
      .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
      .footer-nav { flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; }
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE — MOBILE (≤600px)
    ───────────────────────────────────────────── */
    @media (max-width: 810px) {
      .sec-impact__body { font-size: 16px; }
    }

    @media (max-width: 600px) {
      :root { --pad: 20px; --nav-h: 90px; }

      nav.navbar { height: 90px; padding: 0 20px; }
      .mobile-menu { top: 90px; }
      nav.navbar .nav-logo img { height: 54px; }

      /* Hero */
      .sec-hero__bg { height: 220px; }
      .sec-hero__bg img {
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 56% 80%, 50% 100%, 44% 80%, 0% 80%);
      }
      .sec-hero__label { font-size: clamp(22px, 7vw, 36px); top: 110px; }
      .sec-hero__content { padding-top: 260px; padding-bottom: 48px; gap: 24px; }
      .sec-hero__subtitle { font-size: clamp(22px, 6vw, 30px); }
      .sec-hero__right { padding: 0; }
      .sec-hero__body { font-size: 16px; }
      .btn-openings { height: 48px; font-size: 14px; margin-top: 24px; }

      /* Support */
      .sec-support { min-height: auto; padding: 100px 20px 100px; }
      .sec-support__top { padding-top: 0; grid-template-columns: 1fr; gap: 20px; }
      .sec-support__heading { font-size: clamp(22px, 6vw, 32px); }
      .sec-support__body { font-size: 16px; padding-top: 0; }
      .sec-support__images { grid-template-columns: 1fr; padding-bottom: 0; margin-top: 40px; }
      .sec-support__img { height: 200px; }

      /* Impact */
      .sec-impact { min-height: auto; }
      .sec-impact__content { padding: 48px 20px 60px; }
      .sec-impact__heading { font-size: clamp(22px, 6vw, 32px); }
      .sec-impact__body { font-size: 14px; max-width: 100%; }

      /* Footer */
      .site-footer { padding: 28px 20px 20px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-logo img { height: 54px; }
      .footer-nav { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; font-size: 14px; padding: 6px 12px; }
      .footer-copy { font-size: 12px; }
    }

    /* ─── SHORT SCREENS (max-height 810px, e.g. 1366x768) ─── */
    @media (min-width: 1440px) {
      .sec-support__img { height: clamp(256px, 22vw, 380px); }
    }

    @media (max-height: 810px) and (min-width: 961px) {
      .sec-support { min-height: auto; }
      .sec-support__top { padding-top: 0; }
      .sec-support__images { padding-bottom: 0; margin-top: clamp(40px, 5vh, 60px); }
      .sec-impact { min-height: auto; }
      .sec-impact__content { padding: clamp(48px, 6vh, 80px) var(--pad); }
    }

    /* ─── Accessibility ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
