/* ===========================================================================
   site.css — single shared stylesheet for poinsettiapta.org
   Tokens + chrome (top zone, nav, drawer, footer) + shared page sections
   (hero, stats, filter, card grid, CTA). Extracted verbatim from the
   original inline styles. Edit here once; every built page picks it up.
   =========================================================================== */

  :root {
    --blue: #1F4E9B; --blue-deep: #163A75; --blue-mid: #2A6BB5;
    --wave-1: #B8D8EF; --wave-2: #7BB6E0;
    --orange: #E27328; --orange-deep: #C25B17; --orange-soft: #FFE9D6;
    --sand: #F5DCA5; --sand-light: #FCF1DD; --sand-deep: #E8C275;
    --panther: #1A1A1F; --green: #28a745; --green-soft: #e7f7ec;
    --bg: #FFFFFF; --bg-warm: #FFFAF0;
    --ink: #1A1A1F; --ink-soft: #4A4A55; --ink-mute: #7A7A85;
    --line: rgba(26, 26, 31, 0.1);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg); color: var(--ink); line-height: 1.6;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }

  /* ===== TOP ZONE ===== */
  .top-zone { background: white; }
  .utility {
    background: transparent; color: var(--ink-soft);
    padding: 10px 28px; font-size: 12px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
    border-bottom: 1px solid rgba(26, 26, 31, 0.06);
  }
  .utility-left { display: flex; align-items: center; gap: 22px; }
  .utility-left span { display: flex; align-items: center; gap: 6px; }
  .utility-left a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
  .utility-left a:hover { color: var(--blue); }
  .utility-icon { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
  .utility-right { display: flex; gap: 16px; align-items: center; }
  .utility-right a {
    color: var(--ink-soft); text-decoration: none; font-weight: 600;
    transition: color 0.2s;
  }
  .utility-right a:hover { color: var(--blue); }
  .utility-right .login-btn {
    background: var(--orange); color: white; padding: 6px 16px;
    border-radius: 8px; font-weight: 700;
    box-shadow: 0 3px 10px rgba(226, 115, 40, 0.3);
  }
  .utility-right .login-btn:hover {
    background: var(--orange-deep); color: white; transform: translateY(-1px);
  }
  /* LOGIN DROPDOWN */
  .login-dropdown { position: relative; display: inline-block; }
  .login-dropdown .login-btn { display: inline-flex !important; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
  .login-dropdown .login-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
  .login-dropdown.is-open .login-btn svg, .login-dropdown:hover .login-btn svg { transform: rotate(180deg); }
  .login-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 260px; background: white; border-radius: 14px; box-shadow: 0 16px 40px -10px rgba(31,78,155,0.28), 0 4px 12px -4px rgba(0,0,0,0.1); border: 1px solid rgba(26,26,31,0.08); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 250; overflow: hidden; padding: 6px; }
  .login-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
  .login-dropdown:hover .login-menu, .login-dropdown:focus-within .login-menu, .login-dropdown.is-open .login-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .login-menu-header { padding: 10px 14px 8px; font-size: 10.5px; font-weight: 800; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
  .login-menu a { display: flex !important; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--ink) !important; transition: background 0.15s; font-weight: 700; }
  .login-menu a:hover { background: var(--bg-warm); color: var(--ink) !important; }
  .login-menu-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; color: white; }
  .login-menu a.parent .login-menu-icon { background: var(--orange); box-shadow: 0 4px 10px rgba(226,115,40,0.3); }
  .login-menu a.staff .login-menu-icon { background: var(--blue); box-shadow: 0 4px 10px rgba(31,78,155,0.3); }
  .login-menu-icon svg { width: 20px; height: 20px; }
  .login-menu-title { font-weight: 800; font-size: 14px; line-height: 1.2; color: var(--ink); }
  .login-menu-sub { font-size: 11.5px; color: var(--ink-mute); font-weight: 600; margin-top: 2px; line-height: 1.3; }
  .login-menu-arrow { color: var(--ink-mute); font-size: 14px; margin-left: auto; transition: transform 0.2s, color 0.2s; }
  .login-menu a:hover .login-menu-arrow { transform: translateX(3px); color: var(--blue); }

  .banner { width: 100%; background: transparent; display: block; line-height: 0; }
  .banner img {
    width: 100%; height: auto; display: block;
    max-height: 240px; object-fit: contain; object-position: center;
  }
  @media (max-width: 768px) { .banner img { max-height: 160px; } }
  @media (max-width: 540px) { .banner img { max-height: 120px; } }

  /* ===== NAV ===== */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 2px solid rgba(31, 78, 155, 0.15);
    border-bottom: 1px solid rgba(26, 26, 31, 0.08);
    box-shadow: 0 4px 20px -10px rgba(31, 78, 155, 0);
    transition: box-shadow 0.25s, background 0.25s;
    transform: translateZ(0);
  }
  .nav.has-shadow {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px -8px rgba(31, 78, 155, 0.18);
  }
  .nav-inner {
    max-width: 1340px; margin: 0 auto; padding: 14px 28px;
    display: flex; align-items: center; justify-content: center;
    gap: 4px; flex-wrap: wrap; position: relative;
  }
  .nav-brand {
    position: absolute; left: 28px; top: 50%;
    transform: translateY(-50%) translateX(-10px);
    display: flex; align-items: center; gap: 10px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s; text-decoration: none;
  }
  .nav.has-shadow .nav-brand {
    opacity: 1; pointer-events: auto;
    transform: translateY(-50%) translateX(0);
  }
  .nav-brand-mark {
    width: 36px; height: 36px; border-radius: 10px; background: var(--blue);
    display: grid; place-items: center;
    box-shadow: 0 3px 10px rgba(31, 78, 155, 0.3); flex-shrink: 0;
  }
  .nav-brand-mark svg { width: 22px; height: 22px; fill: white; }
  .nav-brand-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 15px; color: var(--ink);
    line-height: 1; white-space: nowrap;
  }
  .nav-brand-text small {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px; font-weight: 600; color: var(--orange);
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
  }
  .nav-inner > a {
    color: var(--ink); text-decoration: none; font-weight: 700;
    font-size: 14.5px; padding: 10px 18px; border-radius: 10px;
    transition: all 0.2s; letter-spacing: 0.01em;
  }
  .nav-inner > a:hover { background: var(--orange-soft); color: var(--orange-deep); }
  .nav-inner > a.active { background: var(--blue); color: white; }
  .nav-inner > a.active:hover { background: var(--blue-deep); color: white; }
  .nav-inner > a.donate {
    background: var(--orange); color: white;
    box-shadow: 0 6px 16px rgba(226, 115, 40, 0.35); margin-left: 8px;
  }
  .nav-inner > a.donate:hover {
    background: var(--orange-deep); color: white; transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(226, 115, 40, 0.45);
  }

  /* ===== HAMBURGER + DRAWER ===== */
  .menu-btn {
    display: none; background: white;
    border: 1.5px solid var(--line); width: 44px; height: 44px;
    border-radius: 12px; cursor: pointer;
    align-items: center; justify-content: center; padding: 0;
    box-shadow: 0 2px 8px rgba(31, 78, 155, 0.08); transition: all 0.2s;
  }
  .menu-btn:hover { border-color: var(--blue); background: var(--bg-warm); }
  .menu-btn-icon { width: 22px; height: 16px; position: relative; }
  .menu-btn-icon span {
    position: absolute; left: 0; right: 0; height: 2.5px;
    background: var(--ink); border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s, top 0.3s;
  }
  .menu-btn-icon span:nth-child(1) { top: 0; }
  .menu-btn-icon span:nth-child(2) { top: 6.75px; }
  .menu-btn-icon span:nth-child(3) { top: 13.5px; }
  .menu-btn[aria-expanded="true"] .menu-btn-icon span:nth-child(1) { top: 6.75px; transform: rotate(45deg); }
  .menu-btn[aria-expanded="true"] .menu-btn-icon span:nth-child(2) { opacity: 0; }
  .menu-btn[aria-expanded="true"] .menu-btn-icon span:nth-child(3) { top: 6.75px; transform: rotate(-45deg); }

  .mobile-drawer-backdrop {
    position: fixed; inset: 0; background: rgba(26, 26, 31, 0.5);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 199;
  }
  .mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw); background: white;
    box-shadow: -20px 0 60px -20px rgba(26, 26, 31, 0.3);
    z-index: 200; transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: white;
  }
  .mobile-drawer-brand { display: flex; align-items: center; gap: 12px; }
  .mobile-drawer-brand-mark {
    width: 40px; height: 40px; background: white;
    border-radius: 11px; display: grid; place-items: center;
  }
  .mobile-drawer-brand-mark svg { width: 24px; height: 24px; fill: var(--blue); }
  .mobile-drawer-brand-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 16px; line-height: 1.1; color: white;
  }
  .mobile-drawer-brand-name small {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600; font-size: 10px; color: var(--sand);
    letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px;
  }
  .mobile-drawer-close {
    background: rgba(255,255,255,0.15); border: none;
    width: 36px; height: 36px; border-radius: 10px; color: white;
    cursor: pointer; display: grid; place-items: center;
    font-size: 20px; line-height: 1; transition: background 0.2s;
  }
  .mobile-drawer-close:hover { background: rgba(255,255,255,0.25); }
  .mobile-drawer-nav { padding: 20px 16px; display: flex; flex-direction: column; gap: 4px; }
  .mobile-drawer-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; color: var(--ink); text-decoration: none;
    font-weight: 600; font-size: 16px; border-radius: 12px;
    transition: all 0.2s; min-height: 48px;
  }
  .mobile-drawer-nav a.active { background: var(--blue); color: white; }
  .mobile-drawer-nav a:hover { background: var(--bg-warm); color: var(--orange-deep); }
  .mobile-drawer-nav a.active:hover { background: var(--blue-deep); color: white; }
  .mobile-drawer-nav .drawer-icon { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
  .mobile-drawer-nav a.active .drawer-icon { color: white; }
  .mobile-drawer-nav a:hover .drawer-icon { color: var(--orange); }
  .mobile-drawer-nav a.active:hover .drawer-icon { color: white; }
  .mobile-drawer-footer {
    margin-top: auto; padding: 20px 20px 28px;
    border-top: 1px solid var(--line); background: var(--bg-warm);
  }
  .mobile-drawer-donate {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--orange); color: white; text-decoration: none;
    padding: 16px 20px; border-radius: 14px;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 8px 20px rgba(226, 115, 40, 0.35);
    margin-bottom: 14px; min-height: 52px;
  }
  .mobile-drawer-donate:hover { background: var(--orange-deep); color: white; }
  .mobile-drawer-account { display: flex; gap: 8px; }
  .mobile-drawer-account a {
    flex: 1; text-align: center; padding: 12px;
    color: var(--ink-soft); text-decoration: none;
    font-weight: 600; font-size: 13px; background: white;
    border-radius: 10px; border: 1px solid var(--line);
    min-height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .mobile-drawer-account a:hover { border-color: var(--blue); color: var(--blue); }
  /* Mobile drawer dual login */
  .mobile-drawer-logins { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
  .mobile-drawer-login { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 14px; min-height: 50px; transition: transform 0.2s; }
  .mobile-drawer-login.parent { background: var(--orange); color: white; box-shadow: 0 4px 12px rgba(226,115,40,0.3); }
  .mobile-drawer-login.staff { background: var(--blue); color: white; box-shadow: 0 4px 12px rgba(31,78,155,0.3); }
  .mobile-drawer-login:hover { transform: translateY(-1px); color: white; }
  .mobile-drawer-login svg { width: 18px; height: 18px; }

  @media (max-width: 880px) {
    .nav-inner { padding: 10px 16px; justify-content: space-between; }
    .nav-inner > a { display: none; }
    .nav-brand { position: static; transform: none; opacity: 1; pointer-events: auto; }
    .nav.has-shadow .nav-brand { transform: none; }
    .menu-btn { display: flex; }
  }
  @media (max-width: 540px) {
    .nav-brand-text { font-size: 14px; }
    .nav-brand-text small { font-size: 8.5px; }
    .nav-brand-mark { width: 32px; height: 32px; }
    .nav-brand-mark svg { width: 19px; height: 19px; }
  }

  /* ===== PAGE HERO ===== */
  .page-hero {
    position: relative;
    padding: clamp(50px, 7vw, 90px) 28px clamp(40px, 5vw, 60px);
    background:
      radial-gradient(ellipse at 80% 20%, rgba(245, 220, 165, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 10% 90%, rgba(184, 216, 239, 0.4) 0%, transparent 55%),
      linear-gradient(180deg, var(--sand-light) 0%, var(--bg-warm) 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -60px;
    width: 280px; height: 280px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='%231F4E9B' opacity='0.08'><ellipse cx='40' cy='50' rx='14' ry='11'/><ellipse cx='22' cy='28' rx='6' ry='8'/><ellipse cx='58' cy='28' rx='6' ry='8'/><ellipse cx='10' cy='40' rx='5' ry='7'/><ellipse cx='70' cy='40' rx='5' ry='7'/></g></svg>");
    background-size: contain; background-repeat: no-repeat;
    transform: rotate(20deg); pointer-events: none;
  }
  .page-hero-inner { max-width: 1340px; margin: 0 auto; position: relative; z-index: 2; }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--ink-mute);
    margin-bottom: 22px; font-weight: 600;
  }
  .breadcrumb a { color: var(--ink-mute); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--blue); }
  .breadcrumb .crumb-sep { opacity: 0.4; }
  .breadcrumb .current { color: var(--orange-deep); }
  .page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; padding: 8px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 700; color: var(--blue);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 4px 12px rgba(31, 78, 155, 0.1);
    border: 1.5px solid var(--wave-1);
  }
  .page-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 18px; color: var(--ink); max-width: 900px;
  }
  .page-hero h1 .accent { color: var(--blue); }
  .page-hero h1 .accent-orange { color: var(--orange); }
  .page-hero p {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--ink-soft); line-height: 1.55; max-width: 720px;
  }

  /* ===== STATS STRIP (after hero) ===== */
  .stats-strip {
    background: var(--blue);
    color: white;
    padding: 36px 28px;
    border-bottom: 1px solid var(--blue-deep);
  }
  .stats-strip-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: center;
  }
  @media (max-width: 760px) {
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  }
  .strip-stat {
    text-align: center;
  }
  .strip-stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--sand);
    line-height: 1;
    margin-bottom: 4px;
  }
  .strip-stat-num.orange { color: var(--orange); }
  .strip-stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ===== FILTER BAR ===== */
  .filter-section {
    padding: 50px 28px 0;
    background: white;
  }
  .filter-inner {
    max-width: 1340px; margin: 0 auto;
  }
  .filter-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
  }
  .filter-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-warm); padding: 8px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 700; color: var(--orange-deep);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 18px;
    border: 1.5px solid var(--orange-soft);
  }
  .filter-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 14px; color: var(--ink);
  }
  .filter-title em { color: var(--orange); font-style: normal; }
  .filter-title .accent { color: var(--blue); }
  .filter-lede {
    font-size: 16px; color: var(--ink-soft); line-height: 1.55;
    max-width: 620px; margin: 0 auto 30px;
  }
  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
  }
  .filter-btn {
    background: white;
    border: 1.5px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-1px);
  }
  .filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    box-shadow: 0 6px 16px rgba(31, 78, 155, 0.25);
  }
  .filter-btn-count {
    background: var(--orange-soft);
    color: var(--orange-deep);
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
  }
  .filter-btn.active .filter-btn-count {
    background: rgba(255,255,255,0.2);
    color: white;
  }

  /* ===== PROGRAMS GRID ===== */
  .programs-section {
    padding: 36px 28px clamp(60px, 8vw, 100px);
    background: white;
  }
  .programs-inner { max-width: 1340px; margin: 0 auto; }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 1100px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .programs-grid { grid-template-columns: 1fr; gap: 18px; } }

  .program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 14px rgba(26, 26, 31, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .program-card.hidden { display: none; }
  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px -12px rgba(31, 78, 155, 0.22);
    border-color: var(--orange);
  }
  .program-image-wrap {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--wave-1) 100%);
    overflow: hidden;
    position: relative;
  }
  .program-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
  }
  .program-card:hover .program-image-wrap img { transform: scale(1.07); }
  /* Image fallback */
  .program-image-wrap.has-broken {
    background:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='%231F4E9B' opacity='0.18'><ellipse cx='40' cy='50' rx='14' ry='11'/><ellipse cx='22' cy='28' rx='6' ry='8'/><ellipse cx='58' cy='28' rx='6' ry='8'/><ellipse cx='10' cy='40' rx='5' ry='7'/><ellipse cx='70' cy='40' rx='5' ry='7'/></g></svg>") center / 40% no-repeat,
      linear-gradient(135deg, var(--sand-light) 0%, var(--wave-1) 100%);
  }
  .program-image-wrap.has-broken img { display: none; }

  /* Category pill overlay */
  .program-category {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: var(--blue);
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
  }
  .program-category.fundraiser { background: var(--orange); color: white; }
  .program-category.signature { background: var(--blue); color: white; }
  .program-category.community { background: var(--green); color: white; }
  .program-category.academic { background: var(--panther); color: var(--sand); }

  .program-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .program-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .program-desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
  }
  .program-chair {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .program-chair-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: grid; place-items: center;
    color: var(--blue);
    flex-shrink: 0;
  }
  .program-chair-icon svg { width: 16px; height: 16px; }
  .program-chair.open .program-chair-icon { background: var(--orange-soft); color: var(--orange-deep); }
  .program-chair-info { flex: 1; min-width: 0; }
  .program-chair-label {
    font-size: 10.5px;
    color: var(--ink-mute);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .program-chair-name {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
  }
  .program-chair.open .program-chair-name { color: var(--orange-deep); }
  .program-chair-action {
    background: var(--bg-warm);
    color: var(--blue);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .program-chair-action:hover {
    background: var(--blue);
    color: white;
  }
  .program-chair.open .program-chair-action {
    background: var(--orange);
    color: white;
  }
  .program-chair.open .program-chair-action:hover {
    background: var(--orange-deep);
  }

  /* Empty state */
  .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--ink-mute);
    display: none;
  }
  .empty-state.show { display: block; }
  .empty-state-emoji { font-size: 48px; margin-bottom: 12px; }
  .empty-state-text { font-size: 16px; font-weight: 600; color: var(--ink-soft); }

  /* ===== CTA SECTION ===== */
  .cta-section {
    padding: clamp(60px, 8vw, 100px) 28px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: white; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--sand) 0%, transparent 60%);
    opacity: 0.3;
  }
  .cta-section::after {
    content: '';
    position: absolute; top: 20px; left: 30px;
    width: 100px; height: 100px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='white' opacity='0.15'><ellipse cx='40' cy='50' rx='14' ry='11'/><ellipse cx='22' cy='28' rx='6' ry='8'/><ellipse cx='58' cy='28' rx='6' ry='8'/><ellipse cx='10' cy='40' rx='5' ry='7'/><ellipse cx='70' cy='40' rx='5' ry='7'/></g></svg>");
    background-size: contain; background-repeat: no-repeat;
  }
  .cta-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
  }
  .cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 16px;
  }
  .cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.92);
    line-height: 1.55; margin-bottom: 30px;
    max-width: 600px; margin-left: auto; margin-right: auto;
  }
  .cta-actions {
    display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px; border-radius: 12px; text-decoration: none;
    font-weight: 700; font-size: 15px; transition: all 0.25s;
    min-height: 50px;
  }
  .cta-btn-white {
    background: white; color: var(--orange-deep);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  }
  .cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  }
  .cta-btn-dark {
    background: var(--blue); color: white;
    box-shadow: 0 8px 22px rgba(31, 78, 155, 0.4);
  }
  .cta-btn-dark:hover {
    background: var(--blue-deep); transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(31, 78, 155, 0.5);
  }
  .cta-btn-arrow { transition: transform 0.25s; }
  .cta-btn:hover .cta-btn-arrow { transform: translateX(4px); }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--panther); color: rgba(255,255,255,0.8);
    padding: clamp(60px, 8vw, 90px) 28px 28px;
  }
  .footer-inner { max-width: 1340px; margin: 0 auto; }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  }
  .footer-mark {
    width: 56px; height: 56px; background: var(--blue);
    border-radius: 16px; display: grid; place-items: center;
    border: 2px solid var(--orange);
  }
  .footer-mark svg { width: 30px; height: 30px; fill: white; }
  .footer-brand-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 20px; color: white; line-height: 1.1;
  }
  .footer-brand-name small {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600; font-size: 11px; color: var(--sand);
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
  }
  .footer-info {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.65); margin-bottom: 16px;
  }
  .footer-info strong { color: white; font-weight: 600; }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08); border-radius: 12px;
    display: grid; place-items: center; color: white;
    text-decoration: none; font-size: 14px; font-weight: 700;
    transition: background 0.2s;
  }
  .footer-socials a:hover { background: var(--orange); }
  .footer-col-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 14px; color: var(--sand);
    margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .footer-list { list-style: none; }
  .footer-list li { margin-bottom: 10px; }
  .footer-list a {
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 14px; transition: color 0.2s;
  }
  .footer-list a:hover { color: white; }
  .footer-bottom {
    padding-top: 28px; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; font-size: 12px;
    color: rgba(255,255,255,0.45);
  }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* Mobile padding */
  @media (max-width: 640px) {
    .filter-section, .programs-section, .cta-section { padding-left: 18px; padding-right: 18px; }
    .programs-section { padding-top: 28px; padding-bottom: 56px; }
    .filter-section { padding-top: 36px; }
    .page-hero { padding: 32px 18px 28px; }
    .stats-strip { padding: 24px 18px; }
    .footer { padding: 50px 18px 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-btn { width: 100%; justify-content: center; }
    .filter-btn { font-size: 12.5px; padding: 8px 14px; }
    .program-body { padding: 18px 20px 20px; }
    .program-title { font-size: 1.2rem; }
  }
  body.drawer-open { overflow: hidden; }
/* MOBILE-UTILITY-FIX-START */
@media (max-width: 880px) {
  .utility-left span:nth-child(2), .utility-left span:nth-child(3) { display: none; }
  .utility-left { gap: 14px; }
}
/* MOBILE-UTILITY-FIX-END */
