:root {
    --navy: #07112b;
    --navy-mid: #0e1e47;
    --gold: #f2b705;
    --gold-light: #ffd15c;
    --cream: #faf8f2;
    --white: #ffffff;
    --gray-soft: #f0eee8;
    --gray-text: #6b6860;
    --dark-text: #1a1814;
    --red-accent: #c0392b;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ───── NAV ───── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: rgba(7, 17, 43, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(242, 183, 5, 0.2);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: var(--gold);
  }
  .nav-logo span { color: var(--white); }
  .nav-links {
    display: flex; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 700 !important;
    color: var(--navy) !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

  /* ───── HERO ───── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(242,183,5,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(242,183,5,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(242,183,5,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }
  .hero-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,30,71,0.8) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 120px 5vw 80px;
    max-width: 900px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(242,183,5,0.1);
    border: 1px solid rgba(242,183,5,0.3);
    color: var(--gold);
    font-size: 12px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%; background: var(--gold);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 14vw, 160px);
    line-height: 0.88;
    color: var(--white);
    letter-spacing: 2px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title .gold { color: var(--gold); }
  .hero-title .outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
    color: transparent;
  }
  .hero-subtitle {
    margin-top: 28px;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 26px);
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    max-width: 520px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 14px 32px; border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white); }
  .hero-stats {
    position: absolute; bottom: -30px;
    display: flex; gap: 48px;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .hero-stat { text-align: right; }
  .hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; color: var(--gold); line-height: 1;
  }
  .hero-stat .label {
    font-size: 12px; color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: 4px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ───── SECTION LAYOUT ───── */
  section { padding: 100px 5vw; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 80px);
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: 1px;
  }
  .section-title.light { color: var(--white); }

  /* ───── MISSION ───── */
  #mission { background: var(--cream); }
  .mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .mission-text p {
    font-size: 17px; line-height: 1.75;
    color: #4a4740;
    margin-bottom: 20px;
  }
  .mission-text p strong { color: var(--navy); }
  .mission-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .pillar {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(7,17,43,0.1); }
  .pillar::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
  }
  .pillar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; line-height: 1;
    color: rgba(7,17,43,0.06);
    position: absolute; top: 8px; right: 16px;
  }
  .pillar-icon { font-size: 24px; margin-bottom: 12px; }
  .pillar h3 {
    font-size: 15px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
  }
  .pillar p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }

  /* ───── BOARD ───── */
  #board { background: var(--navy); }
  .board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
  }
  .board-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, background 0.2s;
  }
  .board-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
  }
  .board-avatar {
    height: 180px;
    background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(242,183,5,0.15) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; color: rgba(242,183,5,0.4);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
  }
  .board-avatar::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--navy-mid), transparent);
  }
  .board-info { padding: 16px; }
  .board-role {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .board-name {
    font-size: 16px; font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .board-grade {
    font-size: 12px; color: rgba(255,255,255,0.4);
  }

  /* ───── EVENTS ───── */
  #events { background: var(--white); }
  .events-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }
  .event-featured {
    background: var(--navy);
    border-radius: 12px;
    padding: 40px;
    position: relative; overflow: hidden;
  }
  .event-featured::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(242,183,5,0.15) 0%, transparent 70%);
  }
  .event-featured-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px; line-height: 0.9;
    color: rgba(242,183,5,0.15);
    position: absolute; top: 24px; right: 28px;
    letter-spacing: -2px;
  }
  .event-tag-pill {
    display: inline-block;
    background: rgba(242,183,5,0.15);
    color: var(--gold);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 16px;
  }
  .event-featured h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px; color: var(--white);
    letter-spacing: 1px; line-height: 1; margin-bottom: 12px;
  }
  .event-featured p {
    font-size: 14px; color: rgba(255,255,255,0.55);
    line-height: 1.6; margin-bottom: 24px;
    max-width: 360px;
  }
  .event-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .event-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: rgba(255,255,255,0.5);
  }
  .event-meta-item svg { opacity: 0.5; }
  .events-list { display: flex; flex-direction: column; gap: 16px; }
  .event-item {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--gray-soft);
    border-radius: 8px; padding: 20px;
    transition: transform 0.15s;
    cursor: pointer;
  }
  .event-item:hover { transform: translateX(4px); }
  .event-date-block {
    flex-shrink: 0;
    width: 52px;
    background: var(--navy);
    border-radius: 6px;
    text-align: center;
    padding: 8px 0;
  }
  .event-date-block .month {
    font-size: 9px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold);
  }
  .event-date-block .day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; line-height: 1;
    color: var(--white);
  }
  .event-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .event-info p { font-size: 13px; color: var(--gray-text); }

  /* ───── INITIATIVES ───── */

  #initiatives { background: var(--cream); }

  .initiatives-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 60px;

  }

  .initiative-card {

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.07);

    background: var(--white);

    transition: transform 0.2s, box-shadow 0.2s;

  }

  .initiative-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 60px rgba(7,17,43,0.1);

  }

  .initiative-top {

    height: 180px;

    display: flex; align-items: flex-end;

    padding: 20px;

    position: relative;

  }

  .initiative-top.t1 { background: linear-gradient(135deg, #0e1e47, #1a3a6b); }

  .initiative-top.t2 { background: linear-gradient(135deg, #1a0a00, #5c2a00); }

  .initiative-top.t3 { background: linear-gradient(135deg, #0a1f0a, #1a4a1a); }

  .initiative-top.t4 { background: linear-gradient(135deg, #1a0a1a, #4a1a6b); }

  .initiative-top.t5 { background: linear-gradient(135deg, #1a1500, #4a3b00); }

  .initiative-top.t6 { background: linear-gradient(135deg, #1a0a0a, #4a1a1a); }

  .initiative-top h3 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 26px; letter-spacing: 1px;

    color: var(--white); line-height: 1;

  }

  .initiative-body { padding: 20px; }

  .initiative-body p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }

  .initiative-progress {

    display: flex; align-items: center; gap: 10px;

    font-size: 12px;

  }

  .progress-bar {

    flex: 1; height: 4px;

    background: rgba(0,0,0,0.07); border-radius: 2px;

    overflow: hidden;

  }

  .progress-fill {

    height: 100%; background: var(--gold); border-radius: 2px;

  }

  .progress-pct { font-weight: 700; color: var(--navy); font-size: 13px; }

  /* ───── ANNOUNCEMENTS ───── */
  #announcements { background: var(--navy); }
  .announcements-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }
  .announcement-list { display: flex; flex-direction: column; gap: 0; }
  .announcement-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex; gap: 20px; align-items: flex-start;
    cursor: pointer; transition: padding-left 0.2s;
  }
  .announcement-item:hover { padding-left: 8px; }
  .announcement-item:first-child { padding-top: 0; }
  .ann-dot {
    width: 10px; height: 10px;
    border-radius: 50%; background: var(--gold);
    flex-shrink: 0; margin-top: 6px;
  }
  .ann-dot.gray { background: rgba(255,255,255,0.2); }
  .ann-date { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1px; margin-bottom: 4px; }
  .ann-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
  .ann-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
  .social-links { display: flex; flex-direction: column; gap: 16px; }
  .social-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 20px;
    display: flex; gap: 16px; align-items: center;
    text-decoration: none;
    transition: background 0.2s;
  }
  .social-card:hover { background: rgba(255,255,255,0.09); }
  .social-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .social-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
  .social-icon.tw { background: #000000; }
  .social-icon.yt { background: #ff0000; }
  .social-info .platform { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
  .social-info .handle { font-size: 12px; color: rgba(255,255,255,0.4); }
  .join-box {
    background: var(--gold);
    border-radius: 8px; padding: 28px;
    margin-top: 16px;
  }
  .join-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; color: var(--navy);
    letter-spacing: 1px; margin-bottom: 8px;
  }
  .join-box p { font-size: 13px; color: rgba(7,17,43,0.65); line-height: 1.5; margin-bottom: 16px; }
  .join-box .btn-navy {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 11px 24px; border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .join-box .btn-navy:hover { opacity: 0.85; }

  /* ───── SURVEY ───── */
  #survey { background: var(--cream); }
  .survey-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }
  .survey-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px; color: var(--navy);
    margin-bottom: 16px; line-height: 1.3;
  }
  .survey-info p { font-size: 15px; color: var(--gray-text); line-height: 1.7; margin-bottom: 32px; }
  .survey-form {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.07);
  }
  .form-question {
    margin-bottom: 24px;
  }
  .form-question label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .form-question .required {
    color: var(--red-accent);
  }
  .form-question input[type="radio"],
  .form-question input[type="checkbox"] {
    margin-right: 8px;
  }
  .form-question .option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .survey-submit {
    width: 100%;
    background: var(--navy); color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 28px; border-radius: 4px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .survey-submit:hover { background: var(--navy-mid); transform: translateY(-2px); }
  .survey-submit:disabled { opacity: 0.5; cursor: not-allowed; }

  /* ───── CONTACT ───── */
  #contact { background: var(--cream); }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }
  .contact-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px; color: var(--navy);
    margin-bottom: 16px; line-height: 1.3;
  }
  .contact-info p { font-size: 15px; color: var(--gray-text); line-height: 1.7; margin-bottom: 32px; }
  .contact-item {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 20px;
  }
  .contact-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 8px; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .contact-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
  .contact-item span { font-size: 13px; color: var(--gray-text); }
  .contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.07);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--dark-text);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    background: var(--navy); color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 28px; border-radius: 4px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: var(--navy-mid); transform: translateY(-2px); }

  /* ───── FOOTER ───── */
  footer {
    background: #040c1e;
    padding: 60px 5vw 32px;
    border-top: 1px solid rgba(242,183,5,0.15);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 12px;
  }
  .footer-logo span { color: var(--white); }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

  /* ───── SCROLL REVEAL ───── */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ───── RESPONSIVE ───── */
  @media (max-width: 900px) {
    .mission-layout, .events-layout, .announcements-layout,
    .contact-layout, .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .initiatives-grid { grid-template-columns: 1fr 1fr; }
    .board-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .hero-stats { position: static; display: flex; gap: 32px; margin-top: 48px; }
    .hero-stat { text-align: left; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .initiatives-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .mission-pillars { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ───── MOBILE MENU ───── */
  #mobile-menu {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(242,183,5,0.2);
    padding: 20px 5vw;
    z-index: 99;
    flex-direction: column; gap: 0;
  }
  #mobile-menu.open { display: flex; }
  #mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 15px; font-weight: 500;
    transition: color 0.2s;
  }
  #mobile-menu a:hover { color: var(--gold); }
  /* ───── SURVEY NOTIFICATION ───── */
  .survey-notification {
    position: fixed;
    top: 85px; /* Sits just below the nav bar */
    right: -400px; /* Hidden off-screen initially */
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(7, 17, 43, 0.15);
    z-index: 1000;
    width: 320px;
    transition: right 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .survey-notification.show {
    right: 20px;
  }
  .notification-content {
    position: relative;
  }
  .notification-content .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    font-size: 22px;
    color: var(--gray-text);
    line-height: 1;
    transition: color 0.2s;
  }
  .notification-content .close-btn:hover {
    color: var(--red-accent);
  }
  .notification-content p {
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .btn-sm {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* GOOGLE FORM VIGNETTE */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: min(90%, 500px);
  background: white;
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  position: relative;
  animation: popupScale 0.3s ease;
}

.popup-card h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.popup-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.popup-btn {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
}

.popup-btn.secondary {
  background: #eee;
  border: none;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

@keyframes popupScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ==========================================================================
   STUCO REGISTRATIONS PANEL STYLES
   ========================================================================== */

/* The card wrapper holding the data board */
.registrations-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
}

/* Aligning the filter menu and action controls at the top */
.reg-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

/* The administrative filtering selection dropdown menu */
.reg-filter-select {
  background: #0a192f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Mobile responsive horizontal scroll engine for larger data sets */
.table-responsive {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Main presentation layout structural spreadsheet matrix */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

/* Header structural column controls */
.admin-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Individual data entry coordinate cell boxes */
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

/* Hover tracker tracking highlights */
.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Minimal detailed modal workbench selector link configuration */
.btn-mini-view {
  background: #f5c75d; /* Falling back to your theme gold configuration */
  color: #0a192f;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-mini-view:hover {
  opacity: 0.9;
}

