    /* =========================================
       CSS CUSTOM PROPERTIES — BRAND SYSTEM
       ========================================= */
    :root {
      /* Brand Colors — derived from PMS 3165 + PMS 123 */
      --peaslee-teal: #004750;
      --peaslee-teal-dark: #00333a;
      --peaslee-teal-deep: #001f24;
      --peaslee-teal-light: #006878;
      --peaslee-gold: #FEC52E;
      --peaslee-gold-light: #FFD966;
      --peaslee-gold-pale: #FFF4D4;

      /* Neutrals */
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-400: #94a3b8;
      --slate-500: #64748b;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-800: #1e293b;
      --slate-900: #0f172a;

      /* Typography */
      --font-display: 'Syne', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;

      /* Spacing */
      --section-pad: clamp(4rem, 8vw, 8rem);
      --container-max: 1280px;
      --container-pad: clamp(1.25rem, 4vw, 3rem);

      /* Transitions */
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* =========================================
       RESET & BASE
       ========================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--slate-800);
      background: var(--slate-50);
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-pad);
    }

    /* =========================================
       UTILITY CLASSES
       ========================================= */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* =========================================
       BUTTONS
       ========================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: all 0.35s var(--ease-out-expo);
      letter-spacing: 0.01em;
    }

    .btn-primary {
      background: var(--peaslee-gold);
      color: var(--peaslee-teal-deep);
      box-shadow: 0 2px 12px rgba(254, 197, 46, 0.3);
    }
    .btn-primary:hover {
      background: #ffce4a;
      box-shadow: 0 6px 24px rgba(254, 197, 46, 0.45);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.35);
    }
    .btn-secondary:hover {
      border-color: var(--peaslee-gold);
      color: var(--peaslee-gold);
      transform: translateY(-2px);
    }

    .btn-outline-teal {
      background: transparent;
      color: var(--peaslee-teal);
      border: 2px solid var(--peaslee-teal);
    }
    .btn-outline-teal:hover {
      background: var(--peaslee-teal);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-arrow::after {
      content: '→';
      transition: transform 0.3s var(--ease-out-expo);
    }
    .btn-arrow:hover::after {
      transform: translateX(4px);
    }

    /* =========================================
       HEADER / NAVIGATION
       ========================================= */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.4s var(--ease-out-expo);
    }
    .site-header.scrolled {
      background: rgba(0, 71, 80, 0.97);
      backdrop-filter: blur(12px);
      padding: 0.625rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .logo-icon {
      width: 44px;
      height: auto;
      transition: transform 0.3s var(--ease-out-expo);
    }
    .logo-link:hover .logo-icon { transform: scale(1.05); }
    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: #fff;
      letter-spacing: 0.08em;
      line-height: 1.1;
    }
    .logo-text span {
      display: block;
      font-size: 0.65em;
      font-weight: 500;
      opacity: 0.7;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Desktop Nav */
    .main-nav { display: flex; align-items: center; gap: 0.25rem; }
    .main-nav > a, .nav-dropdown > .nav-trigger {
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.25s ease;
      position: relative;
      text-decoration: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      font-family: inherit;
    }
    .main-nav > a:hover, .nav-dropdown > .nav-trigger:hover,
    .nav-dropdown:hover > .nav-trigger { color: #fff; background: rgba(255,255,255,0.1); }
    .main-nav > a.active { color: var(--peaslee-gold); }

    /* Dropdown menus */
    .nav-dropdown { position: relative; }
    .nav-trigger .chevron { transition: transform 0.2s; font-size: 0.6rem; opacity: 0.5; }
    .nav-dropdown:hover .nav-trigger .chevron { transform: rotate(180deg); opacity: 0.8; }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 2px); left: 50%; transform: translateX(-50%) translateY(6px);
      background: #fff; border-radius: 12px; padding: 0.5rem;
      min-width: 260px; opacity: 0; visibility: hidden;
      transition: all 0.2s ease; pointer-events: none;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
      z-index: 100;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
    }
    .nav-dropdown-menu::before {
      content: ''; position: absolute; top: -5px; left: 50%;
      width: 10px; height: 10px; background: #fff;
      transform: translateX(-50%) rotate(45deg); border-radius: 2px;
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 0.5rem 0.75rem; border-radius: 8px;
      text-decoration: none; color: var(--slate-700);
      font-size: 0.8125rem; font-weight: 500;
      transition: all 0.15s ease; line-height: 1.35;
    }
    .nav-dropdown-menu a:hover { background: var(--peaslee-gold-pale); color: var(--peaslee-teal); }
    .dd-icon { width: 30px; height: 30px; border-radius: 7px;
      background: var(--slate-50); display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; flex-shrink: 0; transition: background 0.15s; }
    .nav-dropdown-menu a:hover .dd-icon { background: rgba(254,197,46,0.2); }
    .dd-label small { display: block; font-size: 0.6875rem; font-weight: 400; color: var(--slate-400); margin-top: 1px; }
    .dd-divider { height: 1px; background: var(--slate-100); margin: 0.375rem 0.5rem; }

    .nav-cta {
      margin-left: 0.75rem;
      background: var(--peaslee-gold) !important;
      color: var(--peaslee-teal-deep) !important;
      font-weight: 700 !important;
      padding: 0.5rem 1.5rem !important;
    }
    .nav-cta:hover { background: #ffce4a !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s var(--ease-out-expo);
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile Nav Overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: var(--peaslee-teal-deep);
      z-index: 999;
      padding: 6rem 2rem 4rem;
      flex-direction: column;
      gap: 0.25rem;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: rgba(255,255,255,0.85);
      font-size: 1.25rem;
      font-weight: 500;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s ease;
    }
    .mobile-nav a:hover { color: var(--peaslee-gold); }
    .mobile-nav .btn {
      margin-top: 1.5rem;
      text-align: center;
      justify-content: center;
    }

    /* =========================================
       HERO SECTION
       ========================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--peaslee-teal-deep);
      overflow: hidden;
    }

    /* Animated geometric background */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,103,120,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(254,197,46,0.08) 0%, transparent 60%);
    }

    .hero-grid-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    /* Decorative hexagon nod to logo */
    .hero-hex {
      position: absolute;
      right: -5%;
      top: 10%;
      width: 500px;
      height: 500px;
      opacity: 0.06;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: var(--peaslee-gold);
    }
    .hero-hex-2 {
      position: absolute;
      left: -8%;
      bottom: -10%;
      width: 350px;
      height: 350px;
      opacity: 0.04;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: var(--peaslee-gold);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      padding: var(--section-pad) 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(254, 197, 46, 0.12);
      border: 1px solid rgba(254, 197, 46, 0.25);
      color: var(--peaslee-gold);
      font-size: 0.8125rem;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--peaslee-gold);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6vw, 5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero h1 .gold { color: var(--peaslee-gold); }

    .hero-sub {
      font-size: clamp(1.0625rem, 2vw, 1.25rem);
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--peaslee-gold);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.375rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 500;
    }

    /* =========================================
       SECTION: ABOUT
       ========================================= */
    .about {
      padding: var(--section-pad) 0;
      background: #fff;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--peaslee-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }
    .section-label::before {
      content: '';
      width: 28px;
      height: 3px;
      background: var(--peaslee-gold);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--peaslee-teal-deep);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }

    .about-text p {
      color: var(--slate-600);
      margin-bottom: 1.25rem;
      font-size: 1.0625rem;
    }

    .about-visual {
      position: relative;
    }
    .about-image-placeholder {
      aspect-ratio: 4/3;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 30px rgba(0,71,80,0.15);
    }
    .about-image-placeholder img {
      width: 100%; height: 100%; object-fit: cover;
    }

    .about-card-float {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: #fff;
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      z-index: 2;
    }
    .about-card-float .number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.75rem;
      color: var(--peaslee-teal);
      line-height: 1;
    }
    .about-card-float .label {
      font-size: 0.8125rem;
      color: var(--slate-500);
      font-weight: 500;
      margin-top: 0.25rem;
    }

    /* =========================================
       SECTION: PROGRAMS
       ========================================= */
    .programs {
      padding: var(--section-pad) 0;
      background: var(--slate-50);
    }

    .programs-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 3.5rem;
    }
    .programs-header .section-label { justify-content: center; }
    .programs-header .section-title { margin-bottom: 1rem; }
    .programs-header p {
      color: var(--slate-500);
      font-size: 1.0625rem;
    }
    .debt-free-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--peaslee-gold-pale, #FFF4D4); border: 1px solid var(--peaslee-gold);
      border-radius: 100px; padding: 0.5rem 1.25rem; margin-top: 1.25rem;
      font-size: 0.875rem; font-weight: 600; color: var(--peaslee-teal-deep);
    }
    .debt-free-badge .badge-icon { font-size: 1rem; }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
    }

    .program-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid var(--slate-200);
      transition: all 0.4s var(--ease-out-expo);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .program-card:hover {
      border-color: transparent;
      box-shadow: 0 16px 48px rgba(0,71,80,0.12);
      transform: translateY(-4px);
    }

    .program-card-img {
      height: 220px; overflow: hidden; position: relative;
    }
    .program-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s var(--ease-out-expo);
    }
    .program-card:hover .program-card-img img { transform: scale(1.05); }
    .program-card-img .card-category {
      position: absolute; top: 1rem; left: 1rem;
      background: rgba(0,31,36,0.85); backdrop-filter: blur(8px);
      color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; padding: 0.375rem 0.875rem; border-radius: 6px;
    }
    .program-card-img .card-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--peaslee-teal) 0%, var(--peaslee-teal-light) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
    }

    .program-card-body {
      padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1;
    }
    .program-card-body h3 {
      font-family: var(--font-display);
      font-size: 1.375rem; font-weight: 700; color: var(--peaslee-teal-deep);
      margin-bottom: 0.5rem; line-height: 1.3;
    }
    .program-card-body .card-tagline {
      font-size: 1rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 1.25rem;
    }

    .career-outcomes {
      display: flex; flex-direction: column; gap: 0.75rem;
      margin-bottom: 1.5rem; flex: 1;
    }
    .career-outcome {
      display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .career-outcome .co-icon {
      width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
      background: rgba(0,71,80,0.06); display: flex; align-items: center;
      justify-content: center; font-size: 0.875rem; margin-top: 1px;
    }
    .career-outcome .co-label {
      font-size: 0.8125rem; color: var(--slate-400); font-weight: 500;
    }
    .career-outcome .co-value {
      font-size: 0.9375rem; color: var(--slate-700); font-weight: 600;
    }

    .program-card .card-link {
      display: inline-flex; align-items: center; gap: 0.375rem;
      font-size: 0.9375rem; font-weight: 600; color: #fff;
      background: var(--peaslee-teal); padding: 0.75rem 1.5rem;
      border-radius: 8px; text-decoration: none;
      transition: all 0.3s var(--ease-out-expo);
    }
    .program-card .card-link:hover {
      background: var(--peaslee-teal-dark); gap: 0.625rem;
    }
    .card-link .arrow { transition: transform 0.2s; }
    .card-link:hover .arrow { transform: translateX(3px); }

    /* =========================================
       SECTION: WHY PEASLEE (Features)
       ========================================= */
    .why-peaslee {
      padding: var(--section-pad) 0;
      background: var(--peaslee-teal-deep);
      position: relative;
      overflow: hidden;
    }
    .why-peaslee::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,103,120,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(254,197,46,0.06) 0%, transparent 60%);
    }

    .why-header {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 680px;
      margin: 0 auto 3.5rem;
    }
    .why-header .section-label { color: var(--peaslee-gold); justify-content: center; }
    .why-header .section-title { color: #fff; }
    .why-header p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; }

    .why-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 2rem;
      backdrop-filter: blur(8px);
      transition: all 0.35s var(--ease-out-expo);
    }
    .why-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(254,197,46,0.2);
      transform: translateY(-4px);
    }

    .why-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(254,197,46,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .why-card h3 {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
    }

    .why-card p {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    /* =========================================
       SECTION: MISSION / VISION / VALUES
       ========================================= */
    .mvv-section {
      padding: 5rem 0;
      background: var(--slate-50);
      position: relative;
    }
    .mvv-section::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 80px; height: 4px;
      background: var(--peaslee-gold);
      border-radius: 2px;
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .mvv-card {
      text-align: center;
      padding: 2.5rem 2rem;
    }
    .mvv-icon {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem; font-size: 1.5rem;
    }
    .mvv-card.mission .mvv-icon { background: rgba(0,71,80,0.08); }
    .mvv-card.vision .mvv-icon { background: rgba(254,197,46,0.15); }
    .mvv-card.values .mvv-icon { background: rgba(0,71,80,0.08); }
    .mvv-card h3 {
      font-family: var(--font-display);
      font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--peaslee-teal);
      margin-bottom: 1rem;
    }
    .mvv-card p {
      font-size: 1.0625rem; line-height: 1.7;
      color: var(--slate-600);
    }
    .mvv-card .values-list {
      display: flex; flex-direction: column; gap: 0.75rem;
      text-align: left; max-width: 280px; margin: 0 auto;
    }
    .mvv-card .values-list .value-item {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 1rem; color: var(--slate-600);
    }
    .mvv-card .values-list .value-dot {
      width: 8px; height: 8px; min-width: 8px;
      border-radius: 50%; background: var(--peaslee-gold);
    }

    /* =========================================
       SECTION: FINANCIAL AID
       ========================================= */
    .financial-aid {
      padding: var(--section-pad) 0;
      background: #fff;
    }

    .aid-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: center;
    }

    .aid-options {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .aid-card {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 1.5rem;
      border-radius: 12px;
      border: 1px solid var(--slate-200);
      transition: all 0.3s var(--ease-out-expo);
      cursor: pointer;
    }
    .aid-card:hover {
      border-color: var(--peaslee-gold);
      box-shadow: 0 4px 20px rgba(254,197,46,0.12);
    }

    .aid-card-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--peaslee-gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .aid-card h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.0625rem;
      color: var(--peaslee-teal-deep);
      margin-bottom: 0.25rem;
    }
    .aid-card p {
      font-size: 0.875rem;
      color: var(--slate-500);
      line-height: 1.55;
    }

    /* =========================================
       SECTION: CTA BANNER
       ========================================= */
    .cta-banner {
      padding: var(--section-pad) 0;
      background: var(--peaslee-teal);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      right: -5%;
      top: -30%;
      width: 450px;
      height: 450px;
      opacity: 0.08;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: var(--peaslee-gold);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .cta-inner p {
      color: rgba(255,255,255,0.7);
      font-size: 1.125rem;
      margin-bottom: 2rem;
    }
    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* =========================================
       SECTION: CONTACT / LOCATION
       ========================================= */
    .contact {
      padding: var(--section-pad) 0;
      background: var(--slate-50);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .contact-info h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--peaslee-teal-deep);
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-item-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--peaslee-teal);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .contact-item-text strong {
      display: block;
      font-size: 0.9375rem;
      color: var(--slate-800);
      margin-bottom: 0.125rem;
    }
    .contact-item-text span, .contact-item-text a {
      font-size: 0.9375rem;
      color: var(--slate-500);
    }
    .contact-item-text a:hover { color: var(--peaslee-teal); }

    .map-placeholder {
      border-radius: 16px;
      overflow: hidden;
      background: var(--slate-200);
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--slate-400);
      font-size: 0.875rem;
      font-weight: 500;
      position: relative;
    }
    .map-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    /* =========================================
       GIVING / PEASLEE PROMISE
       ========================================= */
    .giving-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, #f0faf8 0%, #e8f5f0 50%, #fdf8ec 100%);
      position: relative;
      overflow: hidden;
    }
    .giving-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--peaslee-teal), var(--peaslee-gold));
    }
    .giving-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3.5rem;
    }
    .giving-header .section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--peaslee-gold-dark, #b8860b);
      margin-bottom: 0.75rem;
    }
    .giving-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--peaslee-teal-deep);
      margin: 0 0 1rem;
      line-height: 1.2;
    }
    .giving-header p {
      font-size: 1.1rem;
      color: #4a5568;
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto;
    }
    .giving-campaign-box {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,71,80,0.08);
      overflow: hidden;
      max-width: 960px;
      margin: 0 auto 3rem;
    }
    .campaign-top {
      background: var(--peaslee-teal-deep);
      color: #fff;
      padding: 2.5rem 2.5rem 2rem;
      text-align: center;
    }
    .campaign-top h3 {
      font-size: 1.75rem;
      margin: 0 0 0.5rem;
      font-weight: 800;
    }
    .campaign-top .campaign-goal {
      font-size: 3rem;
      font-weight: 800;
      color: var(--peaslee-gold);
      margin: 0.75rem 0;
      letter-spacing: -0.02em;
    }
    .campaign-top p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .campaign-body {
      padding: 2.5rem;
    }
    .campaign-quote {
      background: #f7faf9;
      border-left: 4px solid var(--peaslee-gold);
      padding: 1.25rem 1.5rem;
      margin: 0 0 2rem;
      border-radius: 0 8px 8px 0;
    }
    .campaign-quote p {
      font-style: italic;
      color: #4a5568;
      margin: 0 0 0.5rem;
      line-height: 1.6;
    }
    .campaign-quote cite {
      font-style: normal;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--peaslee-teal-deep);
    }
    .giving-ways {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .giving-way {
      text-align: center;
      padding: 1.5rem 1rem;
      border-radius: 12px;
      background: #f7faf9;
      border: 1px solid rgba(0,71,80,0.08);
      transition: all 0.25s ease;
    }
    .giving-way:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0,71,80,0.1);
    }
    .giving-way .way-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }
    .giving-way h4 {
      font-size: 1rem;
      color: var(--peaslee-teal-deep);
      margin: 0 0 0.5rem;
    }
    .giving-way p {
      font-size: 0.85rem;
      color: #64748b;
      margin: 0 0 0.75rem;
      line-height: 1.5;
    }
    .giving-way a {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--peaslee-teal);
      text-decoration: none;
    }
    .giving-way a:hover { text-decoration: underline; }
    .giving-contact {
      text-align: center;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,71,80,0.1);
    }
    .giving-contact p {
      color: #4a5568;
      margin: 0 0 0.5rem;
      font-size: 0.95rem;
    }
    .giving-contact a {
      color: var(--peaslee-teal);
      font-weight: 600;
      text-decoration: none;
    }
    .giving-contact a:hover { text-decoration: underline; }
    .giving-managed {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: #94a3b8;
    }

    /* =========================================
       FOOTER
       ========================================= */
    .site-footer {
      background: var(--peaslee-teal-deep);
      padding: 4rem 0 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand p {
      color: rgba(255,255,255,0.65);
      font-size: 0.875rem;
      line-height: 1.65;
      margin-top: 1rem;
      max-width: 300px;
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 1.25rem;
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.65);
      font-size: 0.875rem;
      padding: 0.3rem 0;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--peaslee-gold); }

    .social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
    .social-links a {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
      transition: all 0.25s ease;
    }
    .social-links a:hover { background: var(--peaslee-gold); color: var(--peaslee-teal-deep); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p,
    .footer-bottom span {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
    }
    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }
    .footer-bottom-links a,
    .footer-bottom span a {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s ease;
    }
    .footer-bottom-links a:hover,
    .footer-bottom span a:hover { color: rgba(255,255,255,0.9); }

    /* =========================================
       RESPONSIVE
       ========================================= */
    @media (max-width: 1024px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .main-nav { display: none; }
      .hamburger { display: flex; }

      .about-grid,
      .aid-layout,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .programs-grid { grid-template-columns: 1fr; }
      #tourFormHome div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
      .why-grid { grid-template-columns: 1fr; }
      .mvv-grid { grid-template-columns: 1fr; }

      .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero h1 { font-size: clamp(2.25rem, 8vw, 3.25rem); }
    }

    /* =========================================
       SKIP TO CONTENT (Accessibility)
       ========================================= */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--peaslee-gold);
      color: var(--peaslee-teal-deep);
      padding: 0.75rem 1.5rem;
      border-radius: 0 0 8px 8px;
      font-weight: 600;
      z-index: 9999;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 0; }
