:root {
            --na-navy-dark: #0a2060;   /* was #001a4d */
            --na-navy:      #0d2d78;   /* was #002b66 */
            --na-navy-mid:  #1040a0;   /* was #003d82 */
            --na-blue:        #007bff;
            --na-gold:        #f9a826;
            --na-gold-dark:   #c97c00;
            --na-white:       #ffffff;
            --na-light:       #f8f9fa;
            --na-text:        #212529;
            --na-muted:       #6c757d;
            --na-shadow-gold: 0 4px 18px rgba(249,168,38,0.35);
            --na-shadow-navy: 0 8px 24px rgba(0,43,102,0.18);
            --na-transition:  all 0.3s ease;
        }

    body {
    padding-top: env(safe-area-inset-top);
    }

    /* On devices with notches/dynamic islands */
    @supports (padding-top: env(safe-area-inset-top)) {
    .header-wrapper {
        padding-top: env(safe-area-inset-top);
        background-color: #0a2060; /* matches your navbar so it fills cleanly */
    }
    body {
        padding-top: 0; /* header handles it */
    }
    }

        html, body {
            height: 100%;
            font-family: 'DM Sans', 'Poppins', sans-serif;
            background-color: var(--na-light);
            color: var(--na-text);
        }

        /* ── TOP INFO BAR ── */
        .top-header {
            background-color: #0a2060;
            border-bottom: 1px solid rgba(249,168,38,0.25);
            color: rgba(255,255,255,0.75);
            padding: 8px 0;
            font-size: 0.82rem;
            animation: naSlideDown 0.6s ease both;
        }

        .top-header a {
            color: var(--na-gold);
            text-decoration: none;
            transition: var(--na-transition);
        }
        .top-header a:hover { opacity: 0.8; }

        .top-header .btn-outline-primary {
            color: var(--na-gold);
            border-color: rgba(249,168,38,0.55);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 4px 13px;
            transition: var(--na-transition);
            background: transparent;
        }
        .top-header .btn-outline-primary:hover {
            background-color: var(--na-gold);
            color: var(--na-navy-dark);
            border-color: var(--na-gold);
        }

        /* ── HEADER WRAPPER ── */
        .header-wrapper {
            z-index: 1020;
        }
        @media (min-width: 992px) {
            .header-wrapper.sticky-lg-top {
                position: sticky;
                top: 0;
            }
        }
        @media (max-width: 991.98px) {
            .header-wrapper {
                position: static !important;
                top: auto !important;
            }
        }

        /* ── NAVBAR ── */
        .navbar {
            background-color: #0d2d78;
            padding: 0 1rem;
            position: relative;
            animation: naSlideDown 0.7s 0.08s ease both;
        }

        /* Gold underline accent on navbar */
        .navbar::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--na-gold) 50%, transparent 100%);
            opacity: 0.6;
        }

        /* Brand: logo + name */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 8px 0;
            text-decoration: none;
        }
        .navbar-logo {
            height: 46px;
            width: auto;
            border-radius: 10px;
            /* Golden glow on logo */
            filter: drop-shadow(0 0 8px rgba(249,168,38,0.4));
            animation: naGlowLogo 3s ease-in-out infinite;
        }
        @keyframes naGlowLogo {
            0%,100% { filter: drop-shadow(0 0 8px rgba(249,168,38,0.4)); }
            50%      { filter: drop-shadow(0 0 14px rgba(249,168,38,0.75)); }
        }
        .navbar-brand-text {
            display: flex;
            flex-direction: column;
        }
        .navbar-brand-name {
            font-family: 'Playfair Display', serif;
            color: #ffffff;
            font-size: 15px;
            line-height: 1.15;
        }
        .navbar-brand-sub {
            font-size: 10px;
            color: var(--na-gold);
            text-transform: uppercase;
            letter-spacing: 1.1px;
            font-weight: 500;
            margin-top: 2px;
        }

        /* Nav links */
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255,255,255,0.82) !important;
            font-weight: 500;
            font-size: 13.5px;
            padding: 8px 11px;
            border-radius: 7px;
            transition: var(--na-transition);
            letter-spacing: 0.15px;
        }
        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link:focus {
            color: var(--na-gold) !important;
            background: rgba(249,168,38,0.08);
        }
        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--na-gold) !important;
        }

        /* REGISTER button in nav — golden pill */
        .nav-register-btn {
            background: linear-gradient(135deg, var(--na-gold), var(--na-gold-dark)) !important;
            color: var(--na-navy-dark) !important;
            font-weight: 700 !important;
            border-radius: 8px !important;
            padding: 7px 16px !important;
            box-shadow: var(--na-shadow-gold);
            letter-spacing: 0.4px;
        }
        .nav-register-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 22px rgba(249,168,38,0.55) !important;
            background: rgba(249,168,38,0.12) !important;
            color: var(--na-gold) !important;
        }

        /* Dropdown menus */
        .dropdown-menu {
            background-color: #0d2d78;
            border: 1px solid rgba(249,168,38,0.15);
            box-shadow: var(--na-shadow-navy);
            border-radius: 10px;
            padding: 6px;
        }
        .dropdown-item {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            border-radius: 7px;
            padding: 8px 14px;
            transition: var(--na-transition);
        }
        .dropdown-item:hover {
            background-color: rgba(249,168,38,0.12);
            color: var(--na-gold);
        }
        .dropdown-divider {
            border-color: rgba(255,255,255,0.12);
        }

        /* Hamburger toggler */
        .navbar-toggler {
            border-color: rgba(249,168,38,0.4);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28249%2C168%2C38%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ── FLASH MESSAGES ── */
        .flash-messages {
            margin-top: 0px;
        }

        /* ── CARDS (general) ── */
        .card {
            margin-top: 24px;
            border: none;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,43,102,0.1);
            transition: var(--na-transition);
        }
        .card:hover {
            box-shadow: 0 8px 28px rgba(0,43,102,0.16);
            transform: translateY(-2px);
        }
        .card-header.bg-primary {
            background-color: var(--na-navy-mid) !important;
        }

        /* ── FOOTER ── */
        footer {
            background-color: #091d52;
            padding: 0;
            color: rgba(255,255,255,0.65);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            font-family: 'DM Sans', sans-serif;
        }

        /* Gold top-edge accent */
        footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--na-gold), transparent);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            padding: 44px 0 36px;
        }

        .footer-col-title {
            font-family: 'Playfair Display', serif;
            color: var(--na-gold); /* Changed from white to gold */
            font-size: 1.3rem;      /* Increased size (was 15px) */
            font-weight: 700;       /* Makes it bolder */
            margin-bottom: 14px;
            text-transform: uppercase; /* Optional: Makes it stand out more */
            letter-spacing: 0.5px;
        }

        .footer-col p,
        .footer-col a {
            font-size: 12.5px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            line-height: 1.7;
            display: block;
            margin-bottom: 4px;
            transition: color 0.25s;
        }
        .footer-col a:hover { color: var(--na-gold); }

        .footer-gold { color: var(--na-gold) !important; }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }
        .footer-social a {
            width: 34px; height: 34px;
            border: 1px solid rgba(249,168,38,0.25);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.45) !important;
            font-size: 14px;
            transition: var(--na-transition);
            margin-bottom: 0 !important;
        }
        .footer-social a:hover {
            border-color: var(--na-gold);
            color: var(--na-gold) !important;
            background: rgba(249,168,38,0.08);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.07);
            padding: 16px 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: rgba(255,255,255,0.38);
        }
        .footer-bottom a { color: var(--na-gold); text-decoration: none; }
        .footer-dev-row { display: flex; align-items: center; gap: 8px; }
        .footer-dev-logo {
            width: 32px; height: 32px;
            border-radius: 6px;
            object-fit: contain;
            vertical-align: middle;
        }

        /* ── PAGE ENTRY ANIMATION ── */
        @keyframes naSlideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes naFadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .main-content-area {
            animation: naFadeUp 0.6s 0.15s ease both;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 32px 0 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* CORRECTED CODE: Move hardware acceleration safety hooks safely inside the animation layer */
        .main-content-area {
            animation: naFadeUp 0.6s 0.15s ease both;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        @keyframes naFadeUp {
            from { 
                opacity: 0; 
                transform: translateY(16px) translateZ(0); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) translateZ(0); 
            }
        }

        /* ═══════════════════════════════════════════════════
   CUSTOM ANIMATED CURSOR — GAMING / SCHOOL COLORS
═══════════════════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

#na-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: #f9a826;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 0 12px 3px rgba(249,168,38,0.7), 0 0 28px 6px rgba(249,168,38,0.25);
}

#na-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 2px solid rgba(249,168,38,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(.17,.67,.39,1.3),
              height 0.35s cubic-bezier(.17,.67,.39,1.3),
              border-color 0.25s ease,
              opacity 0.25s ease;
}

#na-cursor-ring::before,
#na-cursor-ring::after {
  content: '';
  position: absolute;
  background: rgba(249,168,38,0.45);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
}
#na-cursor-ring::before { width: 8px; height: 1.5px; }
#na-cursor-ring::after  { width: 1.5px; height: 8px; }

.na-trail {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(249,168,38,0.35);
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  animation: trailFade 0.55s ease forwards;
}
@keyframes trailFade {
  from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0;   transform: translate(-50%, -50%) scale(0.1); }
}

body.na-hovering #na-cursor {
  width: 8px; height: 8px;
  background: #003d82;
  box-shadow: 0 0 14px 4px rgba(0,61,130,0.5);
}
body.na-hovering #na-cursor-ring {
  width: 54px; height: 54px;
  border-color: rgba(0,61,130,0.6);
}

body.na-clicking #na-cursor {
  width: 20px; height: 20px;
  background: #fff;
  box-shadow: 0 0 20px 8px rgba(249,168,38,0.9);
}

/* ═══════════════════════════════════════════════════
   CUSTOM SCROLLBAR — NAVY & GOLD
═══════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track {
  background: #001533;
  border-left: 1px solid rgba(249,168,38,0.08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f9a826 0%, #c97c00 55%, #f9a826 100%);
  border-radius: 6px;
  border: 2px solid #001533;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.15);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffbe4d 0%, #f9a826 100%);
}
::-webkit-scrollbar-corner { background: #001533; }
* { scrollbar-width: thin; scrollbar-color: #f9a826 #001533; }

/* ── CSS Variables — exact match to index.html / base.html ── */
:root {
    --na-navy:     #003d82;   /* index card headers, stats, navbar */
    --na-gold:     #f9a826;   /* index card header accent, icons    */
    --na-gold-lt:  #fbbf52;   /* hover / lighter gold               */
    --na-white:    #ffffff;
    --na-light:    #f4f6fb;
    --na-muted:    #6b7280;
    --na-dark-txt: #1a2b4a;
    --section-gap: 80px;
}

/* ── Utilities ── */
.about-section { padding: var(--section-gap) 0; }
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f9a826;
    margin-bottom: 12px;
}
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #003d82;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtext {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 620px;
}
.gold-divider {
    width: 60px;
    height: 3px;
    background: #f9a826;
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* ── 1. HERO BANNER ── */
.about-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: #003d82;
}
.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.about-hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 64px);
    color: #ffffff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.about-hero-overlay p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    line-height: 1.7;
}
.hero-gold-line {
    width: 80px;
    height: 3px;
    background: #f9a826;
    margin: 16px auto;
    border-radius: 2px;
}

/* breadcrumb */
.about-breadcrumb {
    background: #f4f6fb;
    padding: 12px 0;
    border-bottom: 1px solid #e3e8f0;
}
.about-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 13px;
}
.about-breadcrumb .breadcrumb-item a { color: #003d82; text-decoration: none; }
.about-breadcrumb .breadcrumb-item.active { color: #6b7280; }
.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #6b7280; }

/* ── 2. STORY SECTION ── */
.story-section { background: #ffffff; }
.story-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    background: #e8eaf0;
}
.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #f9a826;
    color: #003d82;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}
.story-text p {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ── 3. STATS BAR ── */
.stats-bar {
    background: #003d82;
    padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 54px);
    color: #f9a826;
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-top: 8px;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    margin: auto;
}

/* ── 4. MISSION & VISION ── */
.mv-section { background: #f4f6fb; }
.mv-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 0 none;
    box-shadow: 0 4px 18px rgba(0,61,130,0.09);
    transition: box-shadow 0.3s, transform 0.3s;
}
.mv-card:hover {
    box-shadow: 0 12px 40px rgba(0,61,130,0.18);
    transform: translateY(-4px);
}
.mv-card-header {
    background: #003d82;
    padding: 22px 28px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mv-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}
.mv-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,168,38,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f9a826;
    flex-shrink: 0;
}
.mv-card-body {
    padding: 24px 28px 28px;
}
.mv-card-body p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* ── 5. CORE VALUES ── */
.values-section { background: #ffffff; }
.value-card {
    background: #f4f6fb;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border-bottom: 3px solid transparent;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,61,130,0.12);
    border-bottom-color: #f9a826;
}
.value-icon {
    font-size: 32px;
    color: #f9a826;
    margin-bottom: 14px;
}
.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #003d82;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── 6. WHY CHOOSE US ── */
.why-section { background: #f4f6fb; }
.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #003d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a826;
    font-size: 20px;
}
.why-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: #003d82;
    margin-bottom: 4px;
}
.why-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.why-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 460px;
    background: #e0e4ef;
    position: relative;
}
.why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-img-tag {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,61,130,0.85));
    padding: 30px 24px 20px;
    color: white;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* ── 7. LEADERSHIP / STAFF CARDS ── */
.team-section { background: #ffffff; }
.staff-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e9f2;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.staff-card:hover {
    box-shadow: 0 14px 44px rgba(0,61,130,0.12);
    transform: translateY(-4px);
}
.staff-photo-wrap {
    height: 240px;
    background: linear-gradient(135deg, #e8eaf0, #d0d5e8);
    overflow: hidden;
    position: relative;
}
.staff-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.staff-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,61,130,0.07);
    color: rgba(0,61,130,0.25);
    font-size: 64px;
}
.staff-info {
    padding: 20px 18px 24px;
}
.staff-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #003d82;
    margin-bottom: 4px;
}
.staff-title {
    font-size: 13px;
    color: #f9a826;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.staff-bio {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: #d8dce8;
    position: relative;
    cursor: pointer;
}
.gallery-item:first-child {
    grid-row: 1 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,61,130,0.45);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(0,61,130,0.25);
    gap: 8px;
    font-size: 13px;
}
.gallery-placeholder i { font-size: 36px; }

/* ── 9. CTA STRIP ── */
.cta-section {
    background: #003d82;
    padding: 70px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    color: #ffffff;
    margin-bottom: 14px;
}
.cta-section p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.btn-na-gold {
    background: #f9a826;
    color: #003d82;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
}
.btn-na-gold:hover {
    background: #fbbf52;
    color: #003d82;
    transform: translateY(-2px);
}
.btn-na-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, background 0.25s;
}
.btn-na-outline:hover {
    border-color: #f9a826;
    color: #f9a826;
    background: rgba(201,168,76,0.08);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .story-img-wrap { height: 300px; margin-bottom: 36px; }
    .why-img-wrap { height: 300px; margin-top: 36px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item:first-child { grid-row: unset; }
    .stat-divider { display: none; }
}
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .about-hero { height: 360px; }
}

/* ── Root Tokens ── */
:root {
    --navy:      #003d82;
    --navy-deep: #002a5c;
    --navy-mid:  #004a9e;
    --gold:      #f9a826;
    --gold-lt:   #fbbf52;
    --gold-dim:  rgba(249,168,38,0.12);
    --white:     #ffffff;
    --light:     #f4f6fb;
    --muted:     #6b7280;
    --border:    #e3e8f4;
}

/* ── Page Wrapper ── */
.sc-page {
    min-height: 100vh;
    background: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 16px 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative background geometry */
.sc-page::before {
    content: '';
    position: fixed;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(0,61,130,0.09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sc-page::after {
    content: '';
    position: fixed;
    bottom: -80px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(249,168,38,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Card Shell ── */
.sc-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    background: var(--white);
    border-radius: 24px;
    box-shadow:
        0 2px 0 0 var(--gold),           /* gold top lip */
        0 20px 64px rgba(0,61,130,0.13),
        0 4px 12px rgba(0,61,130,0.07);
    overflow: hidden;
    animation: sc-rise 0.55s cubic-bezier(.22,1,.36,1) both;
}

@keyframes sc-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Card Header Banner ── */
.sc-header {
    background: var(--navy);
    padding: 36px 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern on header */
.sc-header::before {
    content: '';
    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: 28px 28px;
    pointer-events: none;
}

/* Gold accent lines left & right of header */
.sc-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
}

.sc-header-icon {
    width: 60px; height: 60px;
    background: var(--gold-dim);
    border: 2px solid rgba(249,168,38,0.35);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--gold);
}

.sc-school-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 4vw, 21px);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.sc-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

/* ── Card Body ── */
.sc-body {
    padding: 36px 40px 40px;
}

/* ── Section Label ── */
.sc-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}
.sc-section-label::before {
    content: '';
    width: 3px; height: 14px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Form Fields ── */
.sc-field {
    margin-bottom: 18px;
}

.sc-field label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 7px;
}

.sc-field .form-control {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a2b4a;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.sc-field .form-control:focus {
    border-color: var(--navy);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0,61,130,0.10);
}

.sc-field .form-control::placeholder {
    color: #aab2c0;
    font-weight: 300;
}

.sc-field .text-danger {
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    color: #c0392b;
    margin-top: 5px;
    display: block;
}

/* ── OR Divider ── */
.sc-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
}
.sc-or-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.sc-or-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 4px 14px;
    white-space: nowrap;
}

/* ── Staff Note ── */
.sc-staff-note {
    background: var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--navy);
    line-height: 1.5;
}

/* ── Submit Button ── */
.sc-submit-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin-top: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(0,61,130,0.22);
}
.sc-submit-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 12px 12px;
    transition: height 0.2s;
}
.sc-submit-btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,61,130,0.30);
}
.sc-submit-btn:hover::after { height: 5px; }
.sc-submit-btn:active { transform: translateY(0); }

/* ── Status Result Panel ── */
.sc-result {
    margin-top: 28px;
    border-radius: 14px;
    overflow: hidden;
    animation: sc-result-in 0.4s cubic-bezier(.22,1,.36,1) both;
}

@keyframes sc-result-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sc-result-inner {
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sc-result-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.sc-result-content { flex: 1; }
.sc-result-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}
.sc-result-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}
.sc-result-id {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255,255,255,0.55);
    border: 1.5px solid currentColor;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Pending */
.sc-result.sc-pending {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1.5px solid #fcd34d;
}
.sc-result.sc-pending .sc-result-icon  { background: rgba(245,158,11,0.15); color: #b45309; }
.sc-result.sc-pending .sc-result-title { color: #92400e; }
.sc-result.sc-pending .sc-result-body  { color: #78350f; }

/* Approved */
.sc-result.sc-approved {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #86efac;
}
.sc-result.sc-approved .sc-result-icon  { background: rgba(22,163,74,0.12); color: #15803d; }
.sc-result.sc-approved .sc-result-title { color: #14532d; }
.sc-result.sc-approved .sc-result-body  { color: #166534; }

/* Rejected / Declined */
.sc-result.sc-rejected {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1.5px solid #fca5a5;
}
.sc-result.sc-rejected .sc-result-icon  { background: rgba(220,38,38,0.10); color: #b91c1c; }
.sc-result.sc-rejected .sc-result-title { color: #7f1d1d; }
.sc-result.sc-rejected .sc-result-body  { color: #991b1b; }

/* Not found */
.sc-result.sc-not-found {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1.5px solid #cbd5e1;
}
.sc-result.sc-not-found .sc-result-icon  { background: rgba(71,85,105,0.10); color: #475569; }
.sc-result.sc-not-found .sc-result-title { color: #1e293b; }
.sc-result.sc-not-found .sc-result-body  { color: #475569; }

/* ── Footer Link ── */
.sc-footer {
    margin-top: 28px;
    text-align: center;
}
.sc-footer a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.75;
    transition: opacity 0.2s, gap 0.2s;
}
.sc-footer a:hover { opacity: 1; gap: 10px; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .sc-page { padding: 24px 12px 60px; }
    .sc-header { padding: 28px 24px 26px; }
    .sc-body   { padding: 28px 24px 32px; }
    .sc-result-inner { flex-direction: column; gap: 12px; }
    .sc-result-icon  { width: 40px; height: 40px; font-size: 18px; }
}

:root {
    --c-blue:    #003d82;
    --c-gold:    #f9a826;
    --c-gold-lt: #fbbf52;
    --c-light:   #f4f6fb;
    --c-white:   #ffffff;
    --c-muted:   #6b7280;
    --c-border:  #e3e8f2;
}

/* ── HERO ── */
.lib-hero {
    background: #003d82;
    padding: 62px 0 54px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lib-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.lib-hero-inner { position: relative; z-index: 1; }
.lib-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f9a826;
    margin-bottom: 14px;
}
.lib-eyebrow span { display: inline-block; width: 28px; height: 2px; background: #f9a826; border-radius: 1px; }
.lib-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}
.lib-hero h1 em { font-style: normal; color: #f9a826; }
.lib-hero p { color: rgba(255,255,255,0.72); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.lib-hero-bar { width: 64px; height: 3px; background: #f9a826; border-radius: 2px; margin: 16px auto 20px; }

/* ── STAT CHIPS in hero ── */
.lib-hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.lib-stat-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.lib-stat-chip i { color: #f9a826; font-size: 14px; }

/* breadcrumb */
.lib-breadcrumb {
    background: #f4f6fb;
    padding: 12px 0;
    border-bottom: 1px solid #e3e8f2;
    font-size: 13px;
}
.lib-breadcrumb a { color: #003d82; text-decoration: none; }
.lib-breadcrumb .breadcrumb { margin: 0; }
.lib-breadcrumb .breadcrumb-item.active { color: #6b7280; }
.lib-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #6b7280; }

/* ── BODY ── */
.lib-body { background: #f4f6fb; padding: 60px 0 80px; }

.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f9a826;
    margin-bottom: 10px;
}
.sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #003d82;
    margin-bottom: 6px;
    line-height: 1.2;
}
.gold-bar { width: 48px; height: 3px; background: #f9a826; border-radius: 2px; margin: 12px 0 28px; }

/* ── COLLECTION SPLIT ── */
.collection-panel {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,61,130,0.08);
    border: 1px solid #e3e8f2;
}
.collection-img {
    height: 100%;
    min-height: 320px;
    background: #d0d8ec;
    overflow: hidden;
}
.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.collection-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003d82 0%, #0051a8 100%);
    color: rgba(255,255,255,0.4);
    gap: 12px;
    font-size: 14px;
}
.collection-img-placeholder i { font-size: 56px; color: rgba(249,168,38,0.4); }
.collection-text { padding: 40px 40px 36px; }
.collection-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #003d82;
    margin-bottom: 16px;
}
.collection-text p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 14px; }
.collection-text p:last-of-type { margin-bottom: 0; }
.collection-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,61,130,0.07);
    color: #003d82;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 4px 4px 4px 0;
}
.collection-tag i { color: #f9a826; font-size: 12px; }

/* ── SERVICE CARDS ── */
.svc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3e8f2;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,61,130,0.12);
}
.svc-card-header {
    background: #003d82;
    padding: 22px 24px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.svc-card-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}
.svc-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,168,38,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a826;
    font-size: 20px;
    flex-shrink: 0;
}
.svc-card-body { padding: 22px 24px 26px; }
.svc-card-body p { font-size: 14px; color: #6b7280; line-height: 1.75; margin: 0; }

/* Hours card special */
.svc-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e3e8f2;
    font-size: 14px;
}
.svc-hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.svc-hours-row .day { font-weight: 600; color: #003d82; }
.svc-hours-row .time { color: #6b7280; }
.svc-hours-row .closed { color: #dc2626; font-weight: 600; }
.svc-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(21,128,61,0.1);
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.svc-open-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #15803d;
    border-radius: 50%;
}

/* ── CATALOG CTA ── */
.catalog-cta {
    background: #003d82;
    border-radius: 20px;
    padding: 52px 48px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.catalog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.catalog-cta-inner { position: relative; z-index: 1; }
.catalog-cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(249,168,38,0.18);
    border: 2px solid rgba(249,168,38,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a826;
    font-size: 30px;
    margin: 0 auto 20px;
}
.catalog-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    margin-bottom: 12px;
}
.catalog-cta p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    max-width: 460px;
    margin: 0 auto 26px;
    line-height: 1.7;
}
.btn-gold {
    background: #f9a826;
    color: #003d82;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 13px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #fbbf52; color: #003d82; transform: translateY(-2px); text-decoration: none; }
.btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.35);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: #f9a826; color: #f9a826; text-decoration: none; }

@media (max-width: 767px) {
    .collection-text { padding: 28px 24px; }
    .catalog-cta { padding: 36px 24px; }
    .lib-hero-stats { flex-direction: column; align-items: center; }
}

:root {
    --c-blue:    #003d82;
    --c-gold:    #f9a826;
    --c-gold-lt: #fbbf52;
    --c-light:   #f4f6fb;
    --c-white:   #ffffff;
    --c-muted:   #6b7280;
    --c-border:  #e3e8f2;
}

/* ── HERO ── */
.res-hero {
    background: #003d82;
    padding: 62px 0 54px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.res-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.res-hero-inner { position: relative; z-index: 1; }
.res-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f9a826;
    margin-bottom: 14px;
}
.res-eyebrow span { display: inline-block; width: 28px; height: 2px; background: #f9a826; border-radius: 1px; }
.res-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}
.res-hero h1 em { font-style: normal; color: #f9a826; }
.res-hero p { color: rgba(255,255,255,0.72); font-size: 16px; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.res-hero-bar { width: 64px; height: 3px; background: #f9a826; border-radius: 2px; margin: 16px auto 20px; }

/* breadcrumb */
.res-breadcrumb {
    background: #f4f6fb;
    padding: 12px 0;
    border-bottom: 1px solid #e3e8f2;
    font-size: 13px;
}
.res-breadcrumb a { color: #003d82; text-decoration: none; }
.res-breadcrumb .breadcrumb { margin: 0; }
.res-breadcrumb .breadcrumb-item.active { color: #6b7280; }
.res-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #6b7280; }

/* ── BODY ── */
.res-body { background: #f4f6fb; padding: 60px 0 80px; }

/* section label */
.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f9a826;
    margin-bottom: 10px;
}
.sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #003d82;
    margin-bottom: 6px;
    line-height: 1.2;
}
.sec-sub { font-size: 14px; color: #6b7280; margin-bottom: 0; line-height: 1.6; }
.gold-bar { width: 48px; height: 3px; background: #f9a826; border-radius: 2px; margin: 12px 0 28px; }

/* ── QUICK LINK CARDS ── */
.ql-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3e8f2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.ql-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,61,130,0.12);
    text-decoration: none;
}
.ql-card-header {
    background: #003d82;
    padding: 26px 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.ql-card-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}
.ql-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,168,38,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a826;
    font-size: 20px;
    flex-shrink: 0;
}
.ql-card-body { padding: 20px 24px 24px; flex: 1; }
.ql-card-body p { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0; }
.ql-card-footer {
    padding: 12px 24px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f9a826;
}
.ql-card-footer i { font-size: 14px; }

/* ── DOCUMENT LIST ── */
.doc-panel {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3e8f2;
    box-shadow: 0 4px 20px rgba(0,61,130,0.06);
}
.doc-panel-header {
    background: #003d82;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.doc-panel-header i { color: #f9a826; font-size: 18px; }
.doc-panel-header span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}
.doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #e3e8f2;
    text-decoration: none;
    transition: background 0.2s;
}
.doc-item:last-child { border-bottom: 0; }
.doc-item:hover { background: #f4f6fb; text-decoration: none; }
.doc-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(0,61,130,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003d82;
    font-size: 18px;
    flex-shrink: 0;
}
.doc-item-text { flex: 1; }
.doc-item-text h6 { font-size: 15px; font-weight: 600; color: #003d82; margin-bottom: 2px; }
.doc-item-text small { font-size: 12.5px; color: #6b7280; }
.doc-dl-btn {
    width: 36px;
    height: 36px;
    background: #003d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a826;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.doc-item:hover .doc-dl-btn { background: #f9a826; color: #003d82; transform: scale(1.1); }

/* link items (same panel style, with arrow instead of download) */
.link-item { display: flex; align-items: center; gap: 16px; padding: 18px 28px; border-bottom: 1px solid #e3e8f2; text-decoration: none; transition: background 0.2s; }
.link-item:last-child { border-bottom: 0; }
.link-item:hover { background: #f4f6fb; text-decoration: none; }
.link-item-icon { width: 42px; height: 42px; background: rgba(249,168,38,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #f9a826; font-size: 18px; flex-shrink: 0; }
.link-item-text { flex: 1; }
.link-item-text h6 { font-size: 15px; font-weight: 600; color: #003d82; margin-bottom: 2px; }
.link-item-text small { font-size: 12.5px; color: #6b7280; }
.link-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #e3e8f2; display: flex; align-items: center; justify-content: center; color: #003d82; font-size: 13px; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.link-item:hover .link-arrow { background: #003d82; border-color: #003d82; color: #f9a826; }

/* ── CTA STRIP ── */
.res-cta {
    background: #003d82;
    border-radius: 20px;
    padding: 48px 48px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.res-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.res-cta-inner { position: relative; z-index: 1; }
.res-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 36px); color: #fff; margin-bottom: 12px; }
.res-cta p { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 480px; margin: 0 auto 26px; line-height: 1.7; }
.btn-gold {
    background: #f9a826;
    color: #003d82;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 13px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #fbbf52; color: #003d82; transform: translateY(-2px); text-decoration: none; }
.btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.35);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: #f9a826; color: #f9a826; text-decoration: none; }

@media (max-width: 767px) {
    .res-cta { padding: 36px 24px; }
}

/* ── School color palette (matches index + about) ── */
:root {
    --c-blue:    #003d82;
    --c-gold:    #f9a826;
    --c-gold-lt: #fbbf52;
    --c-light:   #f4f6fb;
    --c-white:   #ffffff;
    --c-muted:   #6b7280;
    --c-border:  #e3e8f2;
}

/* ── HERO BANNER ── */
.contact-hero {
    background: var(--c-blue);
    padding: 64px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 14px;
}
.contact-hero-eyebrow span {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 1px;
}
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 56px);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}
.contact-hero h1 em {
    font-style: normal;
    color: var(--c-gold);
}
.contact-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.contact-hero-gold-bar {
    width: 64px;
    height: 3px;
    background: var(--c-gold);
    border-radius: 2px;
    margin: 18px auto 20px;
}

/* breadcrumb */
.contact-breadcrumb {
    background: var(--c-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 13px;
}
.contact-breadcrumb a { color: var(--c-blue); text-decoration: none; }
.contact-breadcrumb .breadcrumb { margin: 0; }
.contact-breadcrumb .breadcrumb-item.active { color: var(--c-muted); }
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--c-muted); }

/* ── MAIN LAYOUT ── */
.contact-body { background: var(--c-light); padding: 64px 0 80px; }

/* ── INFO PANEL (left) ── */
.info-panel {
    background: var(--c-blue);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    height: 100%;
}
.info-panel-top {
    padding: 36px 36px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-panel-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}
.info-panel-top p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.info-items { padding: 28px 36px; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.info-item:last-of-type { margin-bottom: 0; }
.info-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(249,168,38,0.15);
    border: 1px solid rgba(249,168,38,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 18px;
}
.info-text h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 4px;
}
.info-text p, .info-text a {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}
.info-text a:hover { color: var(--c-gold); }

/* Hours badge */
.hours-badge {
    margin: 0 36px 28px;
    background: rgba(249,168,38,0.12);
    border: 1px solid rgba(249,168,38,0.25);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hours-badge i { color: var(--c-gold); font-size: 20px; }
.hours-badge-text { font-size: 13px; }
.hours-badge-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}
.hours-badge-text span { color: rgba(255,255,255,0.6); }

/* Social row */
.info-social {
    padding: 20px 36px 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}
.info-social-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 4px;
}
.info-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.info-social a:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-blue);
}

/* ── MAP ── */
.map-panel {
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    margin: 0 0 0 0;
    position: relative;
}
.map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--c-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.map-label i { color: var(--c-gold); }

/* ── FORM PANEL (right) ── */
.form-panel {
    background: var(--c-white);
    border-radius: 20px;
    padding: 40px 40px 44px;
    box-shadow: 0 4px 30px rgba(0,61,130,0.08);
    height: 100%;
}
.form-panel-header {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--c-border);
}
.form-panel-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--c-blue);
    margin-bottom: 6px;
}
.form-panel-header p {
    font-size: 14px;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.6;
}
.form-panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 10px;
}
.form-panel-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 1px;
}

/* Override Bootstrap form controls to match school theme */
.form-panel .form-control,
.form-panel .form-select {
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #374151;
    background: #fafbff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-panel .form-control:focus,
.form-panel .form-select:focus {
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(0,61,130,0.1);
    background: #fff;
    outline: none;
}
.form-panel label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.form-panel textarea.form-control { min-height: 130px; resize: vertical; }
.form-panel .btn-primary,
.form-panel input[type="submit"],
.form-panel button[type="submit"] {
    background: var(--c-blue) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 13px 38px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: #fff !important;
    width: 100%;
    transition: background 0.25s, transform 0.2s !important;
    cursor: pointer;
}
.form-panel .btn-primary:hover,
.form-panel input[type="submit"]:hover,
.form-panel button[type="submit"]:hover {
    background: #0051a8 !important;
    transform: translateY(-2px) !important;
}
.form-panel .btn-primary:active,
.form-panel input[type="submit"]:active {
    transform: translateY(0) !important;
}

/* send icon inside button */
.submit-wrap { position: relative; }
.submit-wrap .send-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-gold);
    font-size: 16px;
    pointer-events: none;
}

/* WTForms error styles */
.form-panel .invalid-feedback,
.form-panel .help-block { font-size: 12px; color: #dc2626; margin-top: 4px; }
.form-panel .is-invalid { border-color: #dc2626 !important; }
.form-panel .alert { border-radius: 10px; font-size: 14px; }

/* ── QUICK CONTACT STRIP ── */
.quick-strip {
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    padding: 36px 0;
}
.quick-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}
.quick-item-icon {
    width: 50px;
    height: 50px;
    background: var(--c-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 20px;
    flex-shrink: 0;
}
.quick-item-text small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 2px;
}
.quick-item-text a, .quick-item-text span {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-blue);
    text-decoration: none;
}
.quick-item-text a:hover { color: var(--c-gold); }
.quick-divider {
    width: 1px;
    height: 50px;
    background: var(--c-border);
    margin: auto;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .info-panel { margin-bottom: 28px; }
    .form-panel { padding: 30px 24px 36px; }
    .info-panel-top, .info-items, .info-social, .hours-badge { padding-left: 24px; padding-right: 24px; }
    .hours-badge { margin-left: 24px; margin-right: 24px; }
    .quick-divider { display: none; }
}
@media (max-width: 575px) {
    .contact-hero { padding: 44px 0 38px; }
    .map-panel { height: 180px; }
}

/* ══════════════════════════════════════════
   PWA BANNERS (notification + install)
   Both share the same visual style.
   Notification banner sits at bottom; install banner stacks above it
   when both are visible at the same time.
══════════════════════════════════════════ */

/* Notification banner */
#pwa-notif-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--na-navy-dark, #0a2060);
  border-top: 2px solid var(--na-gold, #f9a826);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
  animation: pwa-slide-up 0.35s ease;
}

/* Install banner */
#pwa-install-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--na-navy, #0a1628);
  border-top: 2px solid var(--na-gold, #f9a826);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
  animation: pwa-slide-up 0.35s ease;
}
@keyframes pwa-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.pwa-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pwa-banner-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.pwa-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  min-width: 0;
}
.pwa-banner-text strong {
  font-size: 14px;
  color: var(--na-gold, #f9a826);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pwa-banner-text span {
  font-size: 12px;
  color: rgba(200,220,255,0.7);
}
.pwa-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.pwa-btn-yes {
  background: var(--na-gold, #f9a826);
  color: #0a1628;
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.pwa-btn-yes:hover { opacity: 0.85; }
.pwa-btn-no {
  background: transparent;
  color: rgba(200,220,255,0.6);
  border: 1px solid rgba(200,220,255,0.25);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
.pwa-btn-no:hover { color: #fff; }
@media (max-width: 480px) {
  .pwa-banner-inner { gap: 10px; }
  .pwa-banner-text strong { font-size: 13px; }
}

/* ══════════════════════════════════════════
   APP-FEEL PAGE TRANSITIONS
   Eliminates white flash, adds native-app feel
══════════════════════════════════════════ */

/* The full-screen transition overlay */
#na-page-transition {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}

#na-page-transition.na-trans-in {
  opacity: 1;
  pointer-events: all;
}

/* Animated gold bar (replaces the browser's white loading bar) */
#na-trans-bar-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(249,168,38,0.15);
  overflow: hidden;
}

#na-trans-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f9a826, #fbbf52, #f9a826);
  background-size: 200% 100%;
  border-radius: 0 3px 3px 0;
  animation: na-bar-fill 0.55s cubic-bezier(.4,0,.2,1) forwards,
             na-bar-shimmer 0.8s linear infinite;
  box-shadow: 0 0 12px rgba(249,168,38,0.7);
}

@keyframes na-bar-fill {
  from { width: 0%; }
  to   { width: 88%; }  /* stops at 88% — jumps to 100% on page load */
}

@keyframes na-bar-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Center logo + pulse ring */
#na-trans-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

#na-trans-logo {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 14px rgba(249,168,38,0.55));
  animation: na-trans-logo-pulse 1.4s ease-in-out infinite;
}

@keyframes na-trans-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(249,168,38,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 22px rgba(249,168,38,0.85)); transform: scale(1.04); }
}

/* Ripple rings around logo */
.na-trans-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(249,168,38,0.35);
  animation: na-ring-expand 1.8s ease-out infinite;
  pointer-events: none;
}
.na-trans-ring:nth-child(1) { width: 90px;  height: 90px;  animation-delay: 0s; }
.na-trans-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 0.5s; }
.na-trans-ring:nth-child(3) { width: 150px; height: 150px; animation-delay: 1s; }

@keyframes na-ring-expand {
  0%   { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.15); }
}

/* School name below logo */
#na-trans-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  opacity: 0.95;
}

#na-trans-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #f9a826;
  opacity: 0.8;
}

/* Three-dot loading indicator */
#na-trans-dots {
  display: flex;
  gap: 7px;
  margin-top: 32px;
}
.na-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(249,168,38,0.35);
  animation: na-dot-bounce 1.2s ease-in-out infinite;
}
.na-dot:nth-child(1) { animation-delay: 0s; }
.na-dot:nth-child(2) { animation-delay: 0.2s; background: rgba(249,168,38,0.55); }
.na-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes na-dot-bounce {
  0%, 80%, 100% { transform: scale(0.75); opacity: 0.4; }
  40%           { transform: scale(1.15); opacity: 1; background: #f9a826; }
}

/* ── Page body entry fade (replaces jarring snap-in) ── */
body.na-page-entering > *:not(#na-page-transition):not(#na-cursor):not(#na-cursor-ring) {
  animation: na-page-fade-in 0.38s cubic-bezier(.22,1,.36,1) both;
}

@keyframes na-page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}