:root {
    --navy: #0e1f3d;
    --navy-mid: #1a3260;
    --navy-light: #2a4a8a;
    --gold: #b8933e;
    --gold-light: #d4a94e;
    --gold-pale: #f5ead8;
    --cream: #faf8f4;
    --white: #ffffff;
    --text-dark: #0e1f3d;
    --text-mid: #3d4f6e;
    --text-muted: #7a8ba3;
    --border: rgba(14,31,61,0.1);
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 5vw;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo-mark {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-mark span {
    color: var(--gold-light); font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  }
  .nav-logo-text {
    display: flex; flex-direction: column; line-height: 1.2;
  }
  .nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 600;
    color: var(--navy); letter-spacing: 0.03em;
  }
  .nav-logo-tag {
    font-size: 10px; font-weight: 300; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
  }

  .nav-links {
    display: flex; align-items: center; gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none; font-size: 13px; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-mid); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    padding: 0.55rem 1.4rem;
    background: var(--navy); color: var(--cream) !important;
    border-radius: 2px; font-size: 12px !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--navy-mid) !important; color: var(--cream) !important; }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--navy); transition: var(--transition);
  }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8vh 5vw 8vh 8vw;
  }

  .hero-tag {
    font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-tag::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }
  .hero-headline em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 1rem; font-weight: 300; line-height: 1.75;
    color: var(--text-mid); max-width: 440px;
    margin-bottom: 3rem;
  }

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

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.85rem 2rem;
    background: var(--navy); color: var(--cream);
    text-decoration: none; font-size: 13px; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 2px; transition: var(--transition);
    border: 1.5px solid var(--navy);
  }
  .btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.85rem 2rem;
    background: transparent; color: var(--navy);
    text-decoration: none; font-size: 13px; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 2px; border: 1.5px solid var(--navy);
    transition: var(--transition);
  }
  .btn-secondary:hover { background: var(--navy); color: var(--cream); }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--navy);
  }

  .hero-right-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 4rem;
  }

  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(14,31,61,0.5) 0%, rgba(14,31,61,0.85) 100%);
    z-index: 1;
  }

  .hero-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(184,147,62,0.06) 0px, rgba(184,147,62,0.06) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(-45deg, rgba(184,147,62,0.06) 0px, rgba(184,147,62,0.06) 1px, transparent 1px, transparent 40px);
  }

  .hero-quote {
    position: relative; z-index: 2;
  }
  .hero-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; line-height: 0.5;
    color: var(--gold); opacity: 0.4;
    margin-bottom: 0.5rem; display: block;
  }
  .hero-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 300; font-style: italic; line-height: 1.3;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .hero-quote-attr {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light); font-weight: 400;
  }
  .hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 3rem; margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184,147,62,0.3);
  }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300; line-height: 1;
    color: var(--gold-light);
  }
  .hero-stat-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-top: 4px;
  }

  /* ─── SECTIONS COMMON ─── */
  section { padding: 7rem 8vw; }

  .section-tag {
    font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 1.2rem;
  }
  .section-tag::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    font-weight: 300; line-height: 1.15;
    color: var(--navy); margin-bottom: 1.5rem;
  }
  .section-heading em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 1.05rem; font-weight: 300; line-height: 1.8;
    color: var(--text-mid); max-width: 640px;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }
  .about-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--navy);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .about-frame-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(184,147,62,0.08) 0px, rgba(184,147,62,0.08) 1px, transparent 1px, transparent 60px),
      repeating-linear-gradient(90deg, rgba(184,147,62,0.08) 0px, rgba(184,147,62,0.08) 1px, transparent 1px, transparent 60px);
  }
  .about-frame-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 3rem;
  }
  .about-frame-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem; font-weight: 300;
    color: rgba(184,147,62,0.25); line-height: 1;
    margin-bottom: 1rem;
  }
  .about-frame-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--white); letter-spacing: 0.05em;
  }
  .about-frame-years {
    font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold-light);
    margin-top: 0.5rem;
  }

  .about-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 2px solid var(--gold);
    border-radius: 2px; z-index: -1;
  }

  .about-content { padding: 1rem 0; }

  .about-pull {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-style: italic; font-weight: 300;
    color: var(--navy); line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
  }

  .about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2.5rem;
  }
  .about-value {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    border-top: 2px solid var(--gold);
  }
  .about-value-title {
    font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
    color: var(--navy); margin-bottom: 0.4rem;
  }
  .about-value-text {
    font-size: 13px; font-weight: 300; line-height: 1.6;
    color: var(--text-muted);
  }

  /* ─── PILLARS ─── */
  #pillars {
    background: var(--navy);
  }
  #pillars .section-heading { color: var(--white); }
  #pillars .section-body { color: rgba(255,255,255,0.6); }
  #pillars .section-tag { color: var(--gold-light); }
  #pillars .section-tag::before { background: var(--gold-light); }

  .pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; margin-top: 4rem;
    background: rgba(184,147,62,0.2);
    border: 1px solid rgba(184,147,62,0.2);
  }

  .pillar-card {
    background: var(--navy);
    padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    transition: background var(--transition);
  }
  .pillar-card:hover { background: var(--navy-mid); }

  .pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 300; line-height: 1;
    color: rgba(184,147,62,0.15);
    position: absolute; top: 1.5rem; right: 1.5rem;
  }

  .pillar-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(184,147,62,0.4);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    font-size: 20px;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--white); margin-bottom: 0.75rem;
  }

  .pillar-text {
    font-size: 0.9rem; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.55);
  }

  .pillar-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 1.5rem; font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold-light);
    text-decoration: none; transition: gap 0.2s;
  }
  .pillar-link:hover { gap: 10px; }
  .pillar-link-arrow { font-size: 14px; }

  /* ─── EVENTS ─── */
  #events { background: var(--cream); }

  .events-layout {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 5rem; margin-top: 3rem; align-items: start;
  }

  .events-aside .section-heading {
    font-size: clamp(2rem, 2.5vw, 3rem);
  }

  .event-list { display: flex; flex-direction: column; gap: 1px; }

  .event-card {
    background: var(--white);
    padding: 2rem 2.5rem;
    display: grid; grid-template-columns: 70px 1fr auto;
    gap: 2rem; align-items: center;
    border-left: 3px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer; text-decoration: none;
  }
  .event-card:hover {
    border-left-color: var(--gold);
    box-shadow: 0 4px 24px rgba(14,31,61,0.06);
  }

  .event-date-block {
    text-align: center;
    padding: 0.75rem;
    background: var(--gold-pale);
    border-radius: 2px;
  }
  .event-month {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
  }
  .event-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; line-height: 1;
    color: var(--navy);
  }

  .event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .event-detail {
    font-size: 12px; color: var(--text-muted); font-weight: 300;
    letter-spacing: 0.03em;
  }

  .event-rsvp-badge {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--navy); color: var(--navy);
    border-radius: 2px; white-space: nowrap;
    transition: var(--transition);
  }
  .event-card:hover .event-rsvp-badge {
    background: var(--navy); color: var(--cream);
  }

  /* ─── RSVP MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(14,31,61,0.7); backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--white);
    width: min(560px, 92vw);
    border-radius: 2px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .modal-header {
    background: var(--navy);
    padding: 2rem 2.5rem;
    display: flex; justify-content: space-between; align-items: start;
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300; color: var(--white);
  }
  .modal-event-name {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light); margin-top: 4px;
  }
  .modal-close {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5); font-size: 1.4rem; line-height: 1;
    transition: color 0.2s; padding: 0; margin-top: 2px;
  }
  .modal-close:hover { color: var(--white); }

  .modal-body { padding: 2rem 2.5rem; }

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

  .form-group { margin-bottom: 1.25rem; }
  .form-label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.5rem;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--navy);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--navy);
  }
  .form-textarea { resize: vertical; min-height: 80px; }

  .form-submit {
    width: 100%; padding: 1rem;
    background: var(--navy); color: var(--cream);
    border: none; font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--navy-mid); }

  .form-success {
    display: none; text-align: center; padding: 2rem 0;
  }
  .form-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem; color: var(--gold);
  }
  .form-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--navy);
  }
  .form-success-text {
    font-size: 14px; color: var(--text-muted); margin-top: 0.5rem;
  }

  /* ─── IMPACT / ANNUAL REPORTS ─── */
  #reports {
    background: var(--white);
  }

  .reports-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; margin-top: 3rem; align-items: start;
  }

  .reports-intro .section-body { margin-bottom: 2.5rem; }

  .impact-numbers {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2rem;
  }
  .impact-num-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    border-bottom: 2px solid var(--gold);
  }
  .impact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; line-height: 1;
    color: var(--navy);
  }
  .impact-num-label {
    font-size: 12px; color: var(--text-muted); font-weight: 300;
    margin-top: 0.5rem; letter-spacing: 0.05em;
  }

  .reports-list { display: flex; flex-direction: column; gap: 1rem; }

  .report-card {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    text-decoration: none; color: inherit;
    transition: border-color 0.2s, transform 0.2s;
  }
  .report-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
  }
  .report-year-badge {
    flex-shrink: 0;
    width: 64px; height: 64px;
    background: var(--gold-pale);
    border-radius: 2px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .report-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 300; color: var(--navy); line-height: 1;
  }
  .report-label {
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
  }
  .report-info { flex: 1; }
  .report-title {
    font-weight: 500; font-size: 14px; color: var(--navy);
  }
  .report-desc {
    font-size: 13px; color: var(--text-muted); font-weight: 300; margin-top: 2px;
  }
  .report-dl {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted); transition: color 0.2s;
    display: flex; align-items: center; gap: 4px;
  }
  .report-card:hover .report-dl { color: var(--navy); }

  .reports-note {
    margin-top: 1rem;
    font-size: 12px; color: var(--text-muted); font-style: italic;
    line-height: 1.6;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--navy);
  }
  #contact .section-tag { color: var(--gold-light); }
  #contact .section-tag::before { background: var(--gold-light); }
  #contact .section-heading { color: var(--white); }
  #contact .section-body { color: rgba(255,255,255,0.6); }

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

  .contact-form .form-input,
  .contact-form .form-select,
  .contact-form .form-textarea {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
  }
  .contact-form .form-input:focus,
  .contact-form .form-select:focus,
  .contact-form .form-textarea:focus {
    border-color: var(--gold);
  }
  .contact-form .form-input::placeholder,
  .contact-form .form-textarea::placeholder {
    color: rgba(255,255,255,0.3);
  }
  .contact-form .form-label { color: rgba(255,255,255,0.5); }
  .contact-form .form-select option { background: var(--navy); }

  .contact-form .form-submit {
    background: var(--gold);
    color: var(--navy);
  }
  .contact-form .form-submit:hover { background: var(--gold-light); }

  .contact-info-list {
    display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem;
  }
  .contact-info-item { display: flex; gap: 1.25rem; align-items: start; }
  .contact-info-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 1px solid rgba(184,147,62,0.4);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 16px;
  }
  .contact-info-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 4px;
  }
  .contact-info-value {
    font-size: 15px; color: var(--white); font-weight: 300;
  }

  .social-row {
    display: flex; gap: 1rem; margin-top: 3rem;
  }
  .social-btn {
    width: 40px; height: 40px;
    border: 1px solid rgba(184,147,62,0.3);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
  }
  .social-btn:hover {
    border-color: var(--gold); color: var(--gold-light);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #080e1e;
    padding: 3rem 8vw;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-copy {
    font-size: 12px; color: rgba(255,255,255,0.3);
    font-weight: 300; letter-spacing: 0.05em;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; font-style: italic;
    color: var(--gold); opacity: 0.7;
  }

  /* ─── BOARD ─── */
  #board { background: var(--cream); }
  .board-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .board-card {
    text-align: center; padding: 2rem 1rem;
    border: 1px solid var(--border); border-radius: 2px;
    border-top: 2px solid var(--gold);
    transition: box-shadow 0.2s;
  }
  .board-card:hover { box-shadow: 0 4px 20px rgba(14,31,61,0.08); }
  .board-initial {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .board-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .board-role {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted); font-weight: 400;
  }
  .committee-row { margin-top: 1rem; }
  .committee-names {
    display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem;
  }
  .committee-names span {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border); border-radius: 2px;
    font-size: 13px; color: var(--text-mid); font-weight: 300;
  }

  /* ─── SPONSORS ─── */
  #sponsors { background: var(--white); }
  .sponsor-tiers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .sponsor-tier {
    padding: 1.75rem;
    border: 1px solid var(--border); border-radius: 2px;
    text-align: center;
  }
  .sponsor-tier-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 0.75rem;
  }
  .sponsor-tier-label.diamond { color: #5b8dd9; }
  .sponsor-tier-label.gold { color: var(--gold); }
  .sponsor-tier-label.corporate { color: var(--navy-mid); }
  .sponsor-tier-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 500; color: var(--navy); line-height: 1.4;
  }
  .sponsor-tier-names.large { font-size: 1.5rem; }

  .hole-sponsors {
    margin-top: 3rem; padding: 2.5rem;
    border: 1px solid var(--border); border-radius: 2px;
    border-top: 2px solid var(--gold);
  }
  .sponsor-name-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
  }
  .sponsor-name-grid span {
    font-size: 13px; color: var(--text-mid); font-weight: 300;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
  }

  .donor-section { margin-top: 1rem; }
  .donor-name-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
  }
  .donor-name-grid span {
    font-size: 12px; color: var(--text-muted); font-weight: 300;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(14,31,61,0.05);
  }

  @media (max-width: 1024px) {
    .board-grid { grid-template-columns: repeat(3, 1fr); }
    .sponsor-tiers { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .board-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsor-tiers { grid-template-columns: 1fr; }
    .sponsor-name-grid { grid-template-columns: 1fr 1fr; }
    .donor-name-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1; transform: translateY(0);
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 480px; }
    .hero-left { padding: 5rem 6vw 3rem; }
    #about { grid-template-columns: 1fr; }
    .about-visual { max-width: 380px; }
    .pillars-grid { grid-template-columns: 1fr; gap: 1px; }
    .events-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .reports-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
    section { padding: 4.5rem 6vw; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .event-card { grid-template-columns: 60px 1fr; }
    .event-rsvp-badge { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .impact-numbers { grid-template-columns: 1fr; }
    footer { flex-direction: column; align-items: start; }
  }

  .event-year {
    font-size: 10px; letter-spacing: 0.08em;
    color: var(--text-muted); font-weight: 400; margin-top: 2px;
  }

  /* ─── MOBILE & APPLE DEVICE FIXES ─── */

  /* Prevent iOS font size inflation */
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

  /* iOS tap highlight removal */
  * { -webkit-tap-highlight-color: transparent; }

  /* Smooth scrolling on iOS */
  html { -webkit-overflow-scrolling: touch; }

  /* Fix iOS button appearance */
  button, input[type="submit"] { -webkit-appearance: none; appearance: none; }

  /* Fix iOS input styling */
  input, select, textarea {
    -webkit-appearance: none; appearance: none;
    border-radius: 2px;
  }

  /* Fix position:fixed on iOS Safari */
  nav { -webkit-transform: translateZ(0); transform: translateZ(0); }

  /* Safe area insets for iPhone notch / Dynamic Island */
  nav {
    padding-left: max(5vw, env(safe-area-inset-left));
    padding-right: max(5vw, env(safe-area-inset-right));
  }
  footer {
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
    padding-left: max(8vw, env(safe-area-inset-left));
    padding-right: max(8vw, env(safe-area-inset-right));
  }

  /* Fix backdrop-filter on older Safari */
  @supports not (backdrop-filter: blur(12px)) {
    nav { background: rgba(250,248,244,0.98); }
  }

  /* Touch-friendly tap targets (min 44px per Apple HIG) */
  .nav-links a { padding: 0.5rem 0; min-height: 44px; display: inline-flex; align-items: center; }
  .nav-links a.nav-cta { min-height: unset; padding: 0.55rem 1.4rem; align-self: center; }
  .nav-hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .modal-close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .event-card { min-height: 44px; }

  /* Tablet (768px - 1024px) */
  @media (max-width: 768px) {
    .hero-headline { font-size: clamp(2.4rem, 7vw, 3.5rem); }
    .events-layout { grid-template-columns: 1fr; }
    .reports-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
  }

  /* Mobile (max 480px) */
  @media (max-width: 480px) {
    section { padding: 3.5rem 5vw; }
    .hero-left { padding: 4rem 5vw 2.5rem; }
    .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-right { height: 360px; }
    .hero-right-inner { padding: 2rem; }
    .hero-quote-text { font-size: 1.4rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .section-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .about-values { grid-template-columns: 1fr; }
    .pillar-card { padding: 2rem 1.5rem; }
    .event-card { padding: 1.25rem; gap: 1rem; }
    .modal-body { padding: 1.5rem; }
    .modal-header { padding: 1.5rem; }
    .contact-layout { gap: 3rem; }
    .impact-numbers { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* Small phones (max 375px - iPhone SE etc) */
  @media (max-width: 375px) {
    .hero-headline { font-size: 1.9rem; }
    .nav-logo-name { font-size: 12px; }
    .nav-logo-tag { display: none; }
  }
  .mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 90;
    background: var(--cream); padding: 100px 6vw 4rem;
    flex-direction: column; gap: 2rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--navy);
    text-decoration: none; border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }