        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --crestwell-green: #124634;
            --crestwell-sage: #C1CDC8;
            --crestwell-gray: #4A4A4A;
            --crestwell-black: #000000;
            --serif: 'Libre Baskerville', Georgia, serif;
            --sans: 'Open Sans', -apple-system, sans-serif;
        }
        
        body {
            font-family: var(--sans);
            color: var(--crestwell-gray);
            line-height: 1.8;
            overflow-x: hidden;
            background: white;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Navigation - Transparent like Sierra Canyon */
        #mainNav {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            z-index: 1000;
            padding: 2rem 3rem;
            transition: background 0.3s;
        }

        #mainNav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            font-family: var(--serif);
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        #mainNav.scrolled .nav-logo {
            color: var(--crestwell-green);
        }
        
        .nav-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .dropdown-btn {
            padding: 0.8rem 2rem;
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 2px solid white;
            background: transparent;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            border-radius: 6px;
        }
        
        .dropdown-btn.primary {
            background: rgba(18, 70, 52, 0.9);
            border-color: var(--crestwell-green);
        }
        
        .dropdown-btn.secondary {
            background: white;
            border-color: var(--crestwell-green);
            color: var(--crestwell-green);
        }
        
        #mainNav.scrolled .dropdown-btn {
            border-color: var(--crestwell-gray);
            color: var(--crestwell-gray);
        }
        
        #mainNav.scrolled .dropdown-btn.primary {
            background: var(--crestwell-green);
            border-color: var(--crestwell-green);
            color: white;
        }
        
        #mainNav.scrolled .dropdown-btn.secondary {
            background: white;
            border-color: var(--crestwell-green);
            color: var(--crestwell-green);
        }
        
        /* Hover - Inverted Colors */
        .dropdown-btn:hover {
            transform: translateY(-2px);
            background: white;
            color: var(--crestwell-green);
            border-color: white;
        }
        
        .dropdown-btn.primary:hover {
            background: white;
            color: var(--crestwell-green);
            border-color: white;
        }
        
        .dropdown-btn.secondary:hover {
            background: var(--crestwell-green);
            color: white;
            border-color: var(--crestwell-green);
        }
        
        #mainNav.scrolled .dropdown-btn:hover {
            background: var(--crestwell-green);
            color: white;
            border-color: var(--crestwell-green);
        }
        
        #mainNav.scrolled .dropdown-btn.primary:hover {
            background: white;
            color: var(--crestwell-green);
            border-color: var(--crestwell-green);
        }
        
        #mainNav.scrolled .dropdown-btn.secondary:hover {
            background: var(--crestwell-green);
            color: white;
            border-color: var(--crestwell-green);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 250px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .dropdown-btn:hover .dropdown-menu,
        .dropdown-btn:focus .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu a {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--crestwell-gray);
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
        }
        
        .dropdown-menu a:hover {
            background: var(--crestwell-green);
            color: white;
            padding-left: 1.5rem;
        }
        
        /* Full Page Menu Overlay */
        .fullpage-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--crestwell-green);
            z-index: 9999;
            transform: translateX(-100%);
            transition: transform 0.91s ease;
            overflow-y: auto;
            pointer-events: none;
        }

        .fullpage-menu.active {
            transform: translateX(0);
            pointer-events: auto;
        }
        
        .fullpage-menu-inner {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding: 100px 5% 60px;
            position: relative;
            gap: 2rem;
        }
        
        .fullpage-menu-header {
            position: absolute;
            top: 35px;
            right: 5%;
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 10000;
            pointer-events: auto;
        }
        
        .menu-admissions-wrapper {
            position: relative;
            flex: 1;
            pointer-events: auto;
        }
        
        .menu-admissions-btn {
            width: 100%;
            background: var(--crestwell-green);
            border: none;
            color: white;
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 300;
            cursor: default;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            pointer-events: none;
            cursor: default;
        }
        
        @media (max-width: 968px) {
            .menu-admissions-btn {
                pointer-events: auto;
                cursor: pointer;
            }
        }
        
        .menu-admissions-btn:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
        }
        
        .menu-admissions-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border-radius: 10px;
            margin-top: 0.5rem;
            overflow: hidden;
        }
        
        /* Only show dropdown via JS-controlled .show class */
        .menu-admissions-dropdown.show {
            opacity: 1;
            visibility: visible;
        }
        
        .menu-admissions-dropdown a {
            display: block;
            padding: 0.8rem 1rem;
            color: var(--crestwell-green);
            text-decoration: none;
            font-size: 0.85rem;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .menu-admissions-dropdown a:hover {
            background: var(--crestwell-green);
            color: white;
        }
        
        .fullpage-menu-close {
            background: linear-gradient(to left, white 50%, transparent 50%);
            background-size: 200% 100%;
            background-position: right;
            border: 1px solid white;
            color: var(--crestwell-green);
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.52s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 10px;
            pointer-events: auto;
        }
        
        .fullpage-menu-close:hover {
            background-position: left;
            color: white;
        }
        
        /* Main Nav Links - Left Column */
        .menu-main-nav {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 10vw;
            pointer-events: auto;
        }
        
        .menu-main-nav a {
            font-family: var(--serif);
            font-size: 2.4rem;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            line-height: 1.5;
            transition: all 0.3s;
            white-space: nowrap;
            width: 320px;
        }
        
        .menu-main-nav a:hover {
            opacity: 0.7;
        }
        
        .menu-main-nav a.current {
            color: rgba(255,255,255,0.5);
        }
        
        .menu-main-nav a .arrow {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Center Column - Logo Watermark */
        .menu-center {
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        
        .menu-watermark {
            width: 300px;
            height: auto;
            opacity: 0.12;
        }
        
        /* Right Column - Community Links */
        .menu-community {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 10%;
            pointer-events: auto;
            transition: all 0.5s ease;
            position: relative;
            z-index: 10;
        }
        
        /* Desktop only - 3 column grid layout */
        @media (min-width: 969px) {
            .fullpage-menu-inner {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                align-items: stretch;
            }
            
            .menu-main-nav {
                grid-column: 1;
                min-height: 100%;
            }
            
            .menu-center {
                grid-column: 2;
            }
            
            .menu-community {
                grid-column: 3;
            }
        }
        
        .menu-community h3 {
            font-family: var(--serif);
            font-style: italic;
            font-size: 1.3rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        
        .menu-community-links {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            pointer-events: auto;
        }
        
        .menu-community-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s ease;
            cursor: pointer;
            pointer-events: auto;
        }
        
        .menu-community-links a:hover {
            color: #6f8c80 !important;
        }
        
        .menu-community-links a .icon {
            width: 22px;
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* Community Dropdown (Policies) */
        .community-dropdown {
            position: relative;
            pointer-events: auto !important;
            z-index: 100;
        }

        .community-dropdown-toggle {
            background: none !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
            color: white !important;
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer !important;
            transition: color 0.3s ease;
            pointer-events: auto !important;
            user-select: none;
            z-index: 101;
            position: relative;
        }

        .community-dropdown-toggle:hover {
            color: #6f8c80 !important;
        }

        .dropdown-caret {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .community-dropdown.open .dropdown-caret {
            transform: rotate(180deg);
        }

        .community-dropdown-menu {
            display: none;
            flex-direction: column;
            gap: 0.5rem;
            padding-left: 1rem;
            margin-top: 0.5rem;
            pointer-events: auto !important;
        }

        .community-dropdown.open .community-dropdown-menu {
            display: flex;
        }

        .community-dropdown-menu a {
            color: rgba(255,255,255,0.8) !important;
            font-size: 0.95rem !important;
            font-weight: 300;
        }

        .community-dropdown-menu a:hover {
            color: #6f8c80 !important;
        }

        /* Submenu Panel */
        .menu-submenu-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: #3c6454;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 15%;
            padding-right: 5%;
            transform: translateX(100%);
            opacity: 0;
            transition: all 0.91s ease;
            pointer-events: none;
            z-index: 99999;
        }

        .menu-submenu-panel.active {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }
        
        .submenu-back {
            font-family: var(--sans);
            font-size: 1.2rem;
            font-weight: 300;
            color: white;
            text-decoration: none;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.8;
            transition: opacity 0.3s;
            line-height: 1.3;
            pointer-events: auto;
            cursor: pointer;
            position: relative;
            z-index: 100;
            background: none;
            border: none;
            padding: 0;
        }
        
        .back-arrow {
            margin-left: -1.5rem;
            width: 1rem;
            display: inline-block;
        }
        
        .submenu-back:hover {
            opacity: 1;
        }
        
        .submenu-content {
            display: none;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
            pointer-events: auto;
        }
        
        .submenu-content.active {
            display: flex;
            pointer-events: auto;
        }
        
        .submenu-content a {
            font-family: var(--sans);
            font-size: 1.3rem;
            font-weight: 300;
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s;
            line-height: 1.3;
        }
        
        .submenu-content a:hover {
            opacity: 1;
            color: #a8c5b8;
        }
        
        .submenu-content a.submenu-indent {
            padding-left: 1.5rem;
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.75;
            line-height: 1.3;
        }
        
        .submenu-content a.submenu-indent:hover {
            opacity: 1;
        }
        
        /* Submenu Accordion */
        .submenu-accordion {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .submenu-accordion-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            pointer-events: auto;
            position: relative;
            z-index: 100;
            font-family: var(--sans);
            font-size: 1.3rem;
            font-weight: 300;
            color: white;
            background: none;
            border: none;
            padding: 0;
            text-decoration: none;
            opacity: 0.9;
            line-height: 1.3;
        }
        
        .accordion-caret {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        
        .submenu-accordion.open .accordion-caret {
            transform: rotate(90deg);
        }
        
        .submenu-accordion-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding-left: 1.5rem;
        }
        
        .submenu-accordion.open .submenu-accordion-content {
            max-height: 200px;
            padding-top: 0.8rem;
        }
        
        .submenu-accordion-content a {
            font-size: 1.1rem !important;
            font-weight: 300;
            opacity: 0.75;
            color: white !important;
            line-height: 1.3;
        }
        
        .submenu-accordion-content a:hover {
            opacity: 1;
        }
        
        /* Active state for main nav items */
        .menu-main-nav a.has-submenu.active {
            color: rgba(255,255,255,0.5);
        }
        
        .menu-main-nav a.has-submenu.active::before {
            content: '•';
            position: absolute;
            left: -1.5rem;
            color: rgba(255,255,255,0.5);
        }
        
        .menu-main-nav a.has-submenu {
            position: relative;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .hero-video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-video-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-video-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(18,70,52,0.6) 100%);
        }
        
        .hero-video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw;
            min-height: 100vh;
            min-width: 177.77vh;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(to bottom, rgba(18,70,52,0.7) 0%, rgba(18,70,52,0) 25%),
                linear-gradient(to top, rgba(18,70,52,1) 0%, rgba(18,70,52,0) 35%);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Video Loading Overlay */
        .video-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--crestwell-green);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .video-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-logo {
            width: 150px;
            height: auto;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .loader-progress-container {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0%;
            background: white;
            border-radius: 3px;
            transition: width 0.1s ease;
        }
        
        .loader-percent {
            color: white;
            font-size: 0.85rem;
            margin-top: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
        }
        
        .hero-content {
            position: absolute;
            bottom: 3rem;
            left: 4rem;
            z-index: 2;
            color: white;
            max-width: 700px;
        }
        
        .hero h1 {
            font-family: var(--serif);
            font-size: 5.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .hero h1 .indent {
            padding-left: 6rem;
            display: block;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.1;
            font-weight: 400;
            opacity: 0.95;
        }
        
        .hero-cta-container {
            position: absolute;
            bottom: 3rem;
            right: 4rem;
            z-index: 3;
            display: flex;
            flex-direction: column-reverse;
            align-items: flex-end;
            gap: 1.5rem;
        }
        
        .hero-cta {
            background: #3c6454;
            color: white;
            padding: 1.1rem 3rem;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .hero-cta:hover {
            background: #2d4d40;
            transform: translateY(-2px);
        }
        
        .video-controls {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .control-btn {
            background: rgba(255,255,255,0.25);
            border: 1px solid rgba(255,255,255,0.4);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .control-btn:hover {
            background: rgba(255,255,255,0.35);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: white;
            text-align: center;
        }
        
        .scroll-arrow {
            font-size: 2.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        /* Mission Statement Section - Scroll Reveal */
        .mission-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            overflow: hidden;
        }

        /* Fixed parallax logo - shows during mission → excellence transition */
        .parallax-logo {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 390px;
            height: auto;
            opacity: 0;
            pointer-events: none;
            z-index: 1;
        }

        .mission-content {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            padding: 0 4rem;
        }
        
        .mission-content h2 {
            font-family: var(--serif);
            font-size: 3.5rem;
            line-height: 1.5;
            color: var(--crestwell-black);
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .mission-content h2 .word {
            opacity: 0.15;
            transition: opacity 0.3s ease;
        }
        
        .mission-content h2 .word.visible {
            opacity: 1;
        }
        
        .mission-content .highlight {
            color: var(--crestwell-green);
            font-style: italic;
        }
        
        /* Excellence Section - Horizontal Scroll */
        .excellence-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: transparent;
        }
        
        /* Fixed Sage Info Circle - BACK (z-index: 5) */
        .fixed-sage-circle {
            position: absolute;
            top: calc(50% - 20px);
            left: calc(50% + 160px);
            width: 260px;
            height: 260px;
            background: var(--crestwell-sage);
            border-radius: 50%;
            z-index: 5;
            opacity: 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 2.5rem 2rem 2rem 2rem;
            overflow: visible;
        }
        
        .sage-text {
            position: absolute;
            top: 55%;
            left: 58%;
            transform: translate(0, 0);
            opacity: 0;
            transition: opacity 0.4s ease;
            color: var(--crestwell-green);
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: left;
            width: 250px;
        }
        
        .sage-text.active {
            opacity: 1;
        }
        
        .sage-text .arrow {
            display: inline-block;
            margin-left: 0.3rem;
            transition: transform 0.3s ease;
        }
        
        .fixed-sage-circle:hover .sage-text .arrow {
            transform: translateX(5px);
        }
        
        /* Fixed Circle Frame - MIDDLE (z-index: 10) */
        .fixed-circle-frame {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -55%);
            width: 480px;
            height: 480px;
            border-radius: 50%;
            overflow: hidden;
            z-index: 10;
            opacity: 0;
        }
        
        .fixed-circle-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 70, 52, 0.30);
            border-radius: 50%;
            z-index: 11;
            pointer-events: none;
        }
        
        .circle-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .circle-image.active {
            opacity: 1;
        }
        
        /* Fixed COMMUNITY WORD (stays in place) */
        .fixed-community {
            position: absolute;
            top: calc(50% - 20px);
            left: 50%;
            transform: translateX(-55%);
            font-family: var(--serif);
            font-size: 6.48rem;
            font-weight: 400;
            z-index: 20;
            white-space: nowrap;
            pointer-events: none;
        }
        
        .fixed-community .word-solid {
            color: var(--crestwell-green);
        }
        
        .fixed-community .word-outline {
            position: absolute;
            top: 0;
            left: 0;
            color: transparent;
            -webkit-text-stroke: 1.2px white;
            text-stroke: 1.2px white;
            clip-path: inset(0 100% 0 0);
        }
        
        /* Scrolling Words (Academic, Athletic, Arts) */
        .words-track {
            position: absolute;
            top: calc(50% - 110px);
            left: 0;
            display: flex;
            align-items: center;
            z-index: 20;
            white-space: nowrap;
        }
        
        .scroll-word {
            font-family: var(--serif);
            font-size: 6.48rem;
            font-weight: 400;
            line-height: 1;
            position: relative;
            flex-shrink: 0;
            margin-right: 25vw;
        }
        
        .scroll-word:last-child {
            margin-right: 50vw;
        }
        
        .word-solid {
            color: var(--crestwell-green);
        }
        
        .word-outline {
            position: absolute;
            top: 0;
            left: 0;
            color: transparent;
            background: transparent;
            -webkit-text-stroke: 1.2px white;
            text-stroke: 1.2px white;
            clip-path: inset(0 100% 0 0);
            opacity: 0;
        }
        
        /* Temporary Community (under Athletic, right side, initial only) */
        .temp-community {
            position: absolute;
            top: calc(50% - 20px);
            font-family: var(--serif);
            font-size: 6.48rem;
            font-weight: 400;
            color: var(--crestwell-green);
            z-index: 19;
            white-space: nowrap;
            pointer-events: none;
        }
        
        /* Scroll Expand Section */
        .scroll-expand-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 0;
            z-index: 1;
        }
        
        /* Background Image */
        .expand-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .expand-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .expand-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 70, 52, 0.6);
        }
        
        /* Video Container - Full size, clipped */
        .expand-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 5;
            clip-path: inset(calc(50% - 170px) calc(50% - 225px) calc(50% - 170px) calc(50% - 225px) round 16px);
        }
        
        /* Hide mobile video on desktop */
        .expand-video-mobile {
            display: none;
        }
        
        .expand-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 6;
            pointer-events: none;
        }
        
        /* Video Title - positioned outside/over the video */
        .video-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: left;
            pointer-events: none;
        }
        
        .video-title h2 {
            font-family: var(--serif);
            font-size: 5.5rem;
            font-weight: 700;
            color: white;
            line-height: 1.15;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        
        .video-title h2 .indent {
            padding-left: 6rem;
            display: block;
            white-space: nowrap;
        }
        
        /* Scroll hint text */
        .scroll-hint {
            position: absolute;
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 10;
            opacity: 0.9;
        }
        
        .scroll-hint .arrow {
            display: block;
            text-align: center;
            font-size: 1.5rem;
            margin-top: 0.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(8px); }
            60% { transform: translateY(4px); }
        }
        
        /* Gator Tagline - Outline Text */
        .gator-tagline {
            position: fixed;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            z-index: 15;
            pointer-events: none;
            opacity: 0;
            text-align: center;
            white-space: nowrap;
            transition: transform 0.6s ease-out, opacity 0.6s ease-out;
        }
        
        .gator-tagline.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .gator-tagline h2 {
            font-family: var(--serif);
            font-size: 3.6rem;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 2px white;
            text-stroke: 2px white;
            line-height: 1.15;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }
        
        .tagline-line1,
        .tagline-line2 {
            display: inline;
        }
        
        /* Text Content Section */
        .expand-content {
            position: relative;
            background: white;
            padding: 0.5rem 4rem 1rem 4rem;
            opacity: 0;
            z-index: 20;
        }
        
        .expand-content-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }
        
        .expand-content p {
            font-size: 1.2rem;
            line-height: 1.1;
            color: var(--crestwell-gray);
            font-weight: 300;
        }
        
        /* Infinite Image Scroll */
        @keyframes scroll-right {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .image-scroll-section {
            padding: 1rem 0 6rem 0;
            overflow: hidden;
            background: white;
        }
        
        .scroll-container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            mask: linear-gradient(
                90deg,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%
            );
            -webkit-mask: linear-gradient(
                90deg,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%
            );
            overflow: hidden;
        }
        
        .infinite-scroll {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll-right 25s linear infinite;
        }
        
        .scroll-image-item {
            flex-shrink: 0;
            width: 320px;
            height: 320px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        
        .scroll-image-item:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
        
        .scroll-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Program Journey Section */
        .program-journey {
            padding: 1rem 4rem 4rem;
            background: white;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }
        

        /* Background Logo Watermark (static) */
        .journey-watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: auto;
            opacity: 0.04;
            pointer-events: none;
        }

        /* Header Section */
        .journey-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto 2rem;
            align-items: end;
            padding-left: 5%;
            padding-bottom: 6rem;
        }
        
        .journey-title {
            font-family: var(--serif);
            font-size: 5rem;
            color: var(--crestwell-green);
            line-height: 1.1;
            font-weight: 400;
        }
        
        .journey-title span {
            display: block;
            padding-left: 2rem;
        }
        
        .journey-description {
            font-size: 1.15rem;
            color: var(--crestwell-gray);
            line-height: 1.3;
            max-width: 550px;
            opacity: 0;
            transition: opacity 2.5s ease;
        }
        
        .journey-description.visible {
            opacity: 1;
        }
        
        .journey-title {
            opacity: 0;
            transition: opacity 2.5s ease;
        }
        
        .journey-title.visible {
            opacity: 1;
        }
        
        /* Student Card Animations */
        .student-circle-card {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .student-circle-card.madison,
        .student-circle-card.alanna {
            transform: translateX(-100px);
        }
        
        .student-circle-card.caden,
        .student-circle-card.sydney {
            transform: translateX(100px);
        }
        
        .student-circle-card.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Students Container */
        .students-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            height: 900px;
        }
        
        /* Individual Student Card */
        .student-circle-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            position: absolute;
        }
        
        .student-circle-card:hover {
            transform: translateX(0) scale(1.05) !important;
        }
        
        /* Positioned cards */
        .student-circle-card.madison {
            top: 0;
            left: 15%;
        }
        
        .student-circle-card.caden {
            top: 130px;
            right: 20%;
            flex-direction: row-reverse;
        }
        
        .student-circle-card.caden .student-info {
            text-align: right;
        }
        
        .student-circle-card.caden .info-badge {
            left: auto;
            right: -15px;
        }
        
        .student-circle-card.alanna {
            top: 380px;
            left: 18%;
        }
        
        .student-circle-card.sydney {
            top: 630px;
            right: 23%;
            flex-direction: row-reverse;
        }
        
        .student-circle-card.sydney .student-info {
            text-align: right;
        }
        
        .student-circle-card.sydney .info-badge {
            left: auto;
            right: -15px;
        }
        
        /* Circle Image Container */
        .circle-photo {
            position: relative;
            width: 260px;
            height: 260px;
            flex-shrink: 0;
        }
        
        .circle-photo-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--crestwell-green);
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(18, 70, 52, 0.3);
        }
        
        .circle-photo-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .student-circle-card:hover .circle-photo-inner img {
            transform: scale(1.08);
        }
        
        /* Info Badge */
        .info-badge {
            position: absolute;
            bottom: 15px;
            left: -15px;
            background: var(--crestwell-sage);
            border-radius: 50px;
            padding: 0.8rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-badge .program-level {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--crestwell-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
        }
        
        .info-badge .arrow {
            color: var(--crestwell-green);
            font-size: 1rem;
            margin-left: 0.3rem;
            transition: transform 0.3s ease;
        }
        
        .student-circle-card:hover .info-badge .arrow {
            transform: translateX(5px);
        }
        
        /* Student Info */
        .student-info {
            padding: 0.5rem 0;
        }
        
        .student-name {
            font-family: var(--serif);
            font-size: 2.8rem;
            color: var(--crestwell-green);
            font-weight: 400;
            line-height: 1.2;
        }
        
        /* Student Profile Popup - Bottom Slide */
        .student-profile-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 75vh;
            background: white;
            z-index: 2000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
            overflow-y: auto;
        }
        
        .student-profile-popup.active {
            transform: translateY(0);
        }
        
        .profile-header {
            position: relative;
            background: var(--crestwell-green);
            color: white;
            padding: 2rem 4rem;
        }
        
        .profile-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: transparent;
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .profile-close:hover {
            background: white;
            color: var(--crestwell-green);
        }
        
        .profile-body {
            padding: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .profile-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 0.8fr;
            gap: 0;
            align-items: start;
        }
        
        .profile-column {
            padding: 0 2.5rem;
        }
        
        .profile-column:first-child {
            padding-left: 0;
        }
        
        .profile-column:last-child {
            padding-right: 0;
        }
        
        .profile-column:not(:last-child) {
            border-right: 1px solid var(--crestwell-green);
        }
        
        .profile-intro {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .profile-image-large {
            width: 150px;
            height: 150px;
            flex-shrink: 0;
        }
        
        .profile-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .profile-info h2 {
            font-family: var(--serif);
            font-size: 2.2rem;
            color: var(--crestwell-black);
            margin-bottom: 0.3rem;
        }
        
        .profile-info .profile-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--crestwell-green);
            font-weight: 700;
        }
        
        .profile-quote {
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            color: var(--crestwell-gray);
            padding-left: 1.5rem;
            border-left: 3px solid var(--crestwell-green);
            margin-top: 1rem;
        }
        
        /* Interview Questions */
        .interview-section h3 {
            font-family: var(--serif);
            font-size: 1.1rem;
            color: var(--crestwell-green);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        
        .interview-section p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--crestwell-gray);
            margin-bottom: 2rem;
        }
        
        .interview-section p:last-child {
            margin-bottom: 0;
        }
        
        /* Activities Column */
        .activities-section h3 {
            font-family: var(--serif);
            font-size: 1rem;
            color: var(--crestwell-black);
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }
        
        .activities-section h3 span {
            color: var(--crestwell-green);
            font-weight: 700;
        }
        
        .activities-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .activities-list li {
            font-size: 0.9rem;
            color: var(--crestwell-gray);
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .activities-list li:last-child {
            border-bottom: none;
        }
        
        /* Final CTA Section */
        /* Journey Leads Section */
        .journey-leads-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 4rem;
            overflow: hidden;
        }
        
        .journey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.8s ease;
            z-index: 0;
        }
        
        .journey-bg.active {
            opacity: 1;
        }
        
        .journey-bg-1 {
            background-image: url('https://storage.googleapis.com/msgsndr/36oFp5CghFdpWj1H6WU2/media/6987a8140a7fd1c7a80bf9f3.jpg');
        }
        
        .journey-bg-2 {
            background-image: url('https://storage.googleapis.com/msgsndr/36oFp5CghFdpWj1H6WU2/media/698692d45f93991c16a2f96f.webp');
        }
        
        .journey-bg-3 {
            background-image: url('https://storage.googleapis.com/msgsndr/36oFp5CghFdpWj1H6WU2/media/6987a7740708e4551e6a1213.jpg');
        }
        
        .journey-bg-4 {
            background-image: url('https://storage.googleapis.com/msgsndr/36oFp5CghFdpWj1H6WU2/media/6987a9560a7fd11eee0c855a.png');
        }
        
        .journey-leads-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 70, 52, 0.75);
            z-index: 1;
        }
        
        .journey-leads-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            gap: 4rem;
        }
        
        /* Stats Card - Frosted Glass */
        .stats-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
            width: 380px;
            height: 320px;
            text-align: center;
            color: white;
            margin-left: 15%;
            flex-shrink: 0;
        }
        
        .stat-number {
            font-family: var(--serif);
            font-size: 5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1rem;
            color: white;
        }
        
        .stat-description {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.5;
            opacity: 0.9;
        }
        
        .stats-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stats-arrow {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            padding: 0.5rem;
        }
        
        .stats-arrow:hover {
            opacity: 1;
        }
        
        .stats-dots {
            display: flex;
            gap: 0.5rem;
        }
        
        .stats-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .stats-dot.active {
            background: white;
        }
        
        /* Journey Content - Right Side */
        .journey-leads-content {
            flex: 1;
            max-width: 650px;
            color: white;
            margin-right: 10%;
        }
        
        .journey-leads-title {
            font-family: var(--serif);
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.1;
            margin-top: 0;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }
        
        .journey-leads-title .script {
            font-family: var(--serif);
            font-style: italic;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            font-size: 3.4rem;
        }
        
        .journey-leads-text {
            font-size: 1.15rem;
            line-height: 1.3;
            opacity: 0.95;
            margin-bottom: 2.5rem;
        }
        
        .journey-leads-btn {
            display: inline-block;
            background: white;
            border: 2px solid white;
            color: var(--crestwell-green);
            padding: 1rem 2.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .journey-leads-btn:hover {
            background: transparent;
            color: white;
        }
        
        /* Footer */
        footer {
            position: relative;
            background: var(--crestwell-green);
            color: white;
        }
        
        .footer-hero {
            position: relative;
            min-height: 600px;
            background: var(--crestwell-green);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .footer-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }
        
        .footer-headline {
            font-family: var(--serif);
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .footer-description {
            font-size: 1.15rem;
            line-height: 1.3;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        
        .footer-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        
        .footer-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: white;
            color: var(--crestwell-green);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            border: 2px solid white;
            transition: all 0.3s ease;
        }

        .footer-btn:hover {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .footer-btn svg {
            width: 22px;
            height: 22px;
            min-width: 22px;
            flex-shrink: 0;
            transition: all 0.52s ease;
            stroke: currentColor;
        }
        
        .footer-contact {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: center;
        }
        
        .footer-contact a {
            color: white;
            text-decoration: none;
        }
        
        .footer-contact a:hover {
            text-decoration: underline;
        }

        .footer-address {
            text-align: center;
            margin-bottom: 1rem;
        }

        .footer-contact .footer-social {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-contact .footer-social .social-handle {
            opacity: 0.9;
        }

        .footer-contact .footer-social .social-icon {
            color: white;
            transition: opacity 0.3s;
        }

        .footer-contact .footer-social .social-icon:hover {
            opacity: 0.7;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
        }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-links .back-to-top {
            margin-left: 1rem;
            font-size: 1.2rem;
        }

        .footer-social {
            margin-bottom: 2rem;
        }
        
        .footer-handle {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            opacity: 0.9;
        }
        
        .footer-social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .footer-social-icons a {
            color: white;
            transition: opacity 0.3s;
        }
        
        .footer-social-icons a:hover {
            opacity: 0.7;
        }
        
        .footer-arrow {
            display: flex;
            justify-content: center;
        }
        
        .footer-arrow svg {
            color: white;
            opacity: 0.8;
        }
        
        .footer-terms-row {
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-top: 2rem;
            padding: 0 3rem;
            font-size: 0.85rem;
            box-sizing: border-box;
        }

        .footer-terms-left {
            position: absolute;
            left: 3rem;
        }
        
        .footer-terms-left a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
        }
        
        .footer-terms-left a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        .footer-legal {
            background: #0f3829;
            padding: 2rem 3rem;
            text-align: center;
            font-size: 0.85rem;
            line-height: 1.8;
        }
        
        /* Mobile Excellence Cards - Hidden on Desktop */
        .mobile-excellence-cards {
            display: none;
        }
        
        /* Mobile Responsive */
        @media (max-width: 1200px) {
            .three-panel-container {
                grid-template-columns: 1fr;
            }
            
            .panel {
                height: 600px;
            }
            
            .students-container {
                height: auto !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 3rem !important;
                padding: 2rem 0 !important;
                overflow: visible !important;
            }
            
            .program-journey {
                overflow: visible !important;
                min-height: auto !important;
            }

            .journey-watermark {
                display: none !important;
            }

            .student-circle-card {
                opacity: 1 !important;
                transform: none !important;
                position: relative !important;
                display: flex !important;
            }
            
            .student-circle-card.madison,
            .student-circle-card.caden,
            .student-circle-card.alanna,
            .student-circle-card.sydney {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                transform: none !important;
                opacity: 1 !important;
            }
            
            .student-circle-card.caden,
            .student-circle-card.sydney {
                flex-direction: column !important;
                align-items: center !important;
            }
            
            .student-circle-card.caden .student-info,
            .student-circle-card.sydney .student-info {
                text-align: center !important;
            }
            
            .student-circle-card.caden .info-badge,
            .student-circle-card.sydney .info-badge {
                left: -15px !important;
                right: auto !important;
            }
            
            .journey-header {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding-left: 0;
                padding-bottom: 3rem;
            }
            
            .journey-title {
                font-size: 4rem;
                opacity: 1 !important;
            }
            
            .journey-title span {
                padding-left: 1rem;
            }
            
            .journey-description {
                max-width: 600px;
                margin: 0 auto;
                opacity: 1 !important;
            }
            
            .profile-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .profile-column:nth-child(3) {
                grid-column: span 2;
                border-right: none;
                border-top: 1px solid var(--crestwell-green);
                padding-top: 2rem;
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 968px) {
            /* Full Page Menu - Mobile */
            .fullpage-menu-header {
                top: 20px;
                right: 2rem;
                left: 2rem;
                gap: 0.5rem;
                width: auto;
            }
            
            .menu-admissions-wrapper,
            .fullpage-menu-close {
                flex: 1;
                text-align: center;
                justify-content: center;
            }
            
            .menu-admissions-btn {
                width: 100%;
            }
            
            .menu-admissions-btn {
                padding: 0.92rem 1rem;
                font-size: 0.8rem;
            }
            
            .fullpage-menu-close {
                padding: 0.92rem 1rem;
                font-size: 0.8rem;
            }
            
            .fullpage-menu-inner {
                display: flex !important;
                flex-direction: column !important;
                padding: 120px 2rem 40px;
                gap: 3rem;
            }
            
            .menu-main-nav {
                padding-left: 0;
                position: static !important;
                height: auto !important;
                min-height: auto !important;
                justify-content: flex-start !important;
            }
            
            .menu-main-nav a {
                font-size: 1.8rem;
                width: 100%;
            }
            
            .menu-center {
                display: none !important;
            }
            
            .menu-community {
                padding-left: 0;
                position: static !important;
                height: auto !important;
                min-height: auto !important;
                justify-content: flex-start !important;
            }
            
            /* Mobile Submenu Panel */
            .menu-submenu-panel {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 40vh;
                width: 100%;
                height: 60vh;
                padding: 100px 2rem 2rem;
                justify-content: flex-start;
                z-index: 99999;
                background: #3c6454;
                overflow-y: auto;
                transition: all 0.5s ease;
            }
            
            .menu-submenu-panel.active {
                pointer-events: auto !important;
            }
            
            /* Mobile split panel - community links at bottom when submenu is active */
            .menu-community.submenu-active {
                position: fixed !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                top: auto !important;
                height: 40vh !important;
                background: var(--crestwell-green) !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                padding: 2rem !important;
                z-index: 99998;
                display: flex !important;
                flex-direction: column;
                justify-content: flex-start;
                overflow-y: auto;
                transition: all 0.5s ease;
            }
            
            .menu-community.submenu-active h3 {
                margin-bottom: 1.5rem;
                font-size: 1.1rem;
            }
            
            .menu-community.submenu-active .menu-community-links {
                gap: 1rem;
            }
            
            .submenu-back {
                margin-bottom: 1.5rem;
                pointer-events: auto !important;
            }
            
            .submenu-content a {
                font-size: 1rem;
            }
            
            .submenu-accordion-trigger {
                font-size: 1rem;
            }
            
            .submenu-accordion-content a {
                font-size: 0.9rem !important;
            }
            
            .submenu-content a.submenu-indent {
                padding-left: 1rem;
                font-size: 0.95rem;
            }
            
            /* Mobile Nav - Two buttons at top, logo below */
            #mainNav {
                padding: 1rem 1rem 0.5rem 1rem;
            }
            
            .nav-container {
                flex-wrap: wrap;
            }
            
            .nav-logo {
                order: 3;
                width: 100%;
                font-size: 1.96rem;
                line-height: 1.1;
                margin-top: 1.1rem;
                text-align: left;
                transition: opacity 0.3s, max-height 0.3s, margin 0.3s;
                /* Break into two lines */
                max-width: 160px;
                word-spacing: 100vw;
            }
            
            /* Hide logo when scrolled on mobile */
            #mainNav.scrolled .nav-logo {
                opacity: 0;
                max-height: 0;
                margin-top: 0;
                overflow: hidden;
            }
            
            .nav-buttons {
                order: 1;
                width: 100%;
                display: flex;
                gap: 0.5rem;
            }
            
            .dropdown-btn {
                flex: 1;
                padding: 1.52rem 1rem;
                font-size: 1rem;
                text-align: center;
                justify-content: center;
            }
            
            .dropdown-btn.secondary {
                order: -1;
            }
            
            /* Hero - reduce height by 15% */
            .hero {
                height: 85vh;
            }
            
            /* Hide hero subtitle and CTA on mobile */
            .hero-subtitle {
                display: none;
            }
            
            .hero-cta {
                display: none;
            }
            
            .hero h1 {
                font-size: 3.2rem;
                margin-bottom: 0.5rem;
            }
            
            .hero-content {
                bottom: 5rem;
                left: 2rem;
                max-width: 500px;
            }
            
            /* Tighten scroll arrow to hero text */
            .scroll-indicator {
                bottom: 1.5rem;
            }
            
            /* Move video controls - sound button aligns with "by Doing" */
            .hero-cta-container {
                bottom: 5rem;
                right: 1rem;
            }
            
            /* Mission Section Mobile */
            .mission-section {
                height: 75vh;
                padding: 2.5rem 1rem;
            }
            
            .mission-content {
                padding: 0 1rem;
            }
            
            .mission-content h2 {
                line-height: 1.725;
            }
            
            .mission-content h2,
            .journey-title {
                font-size: 2.5rem;
            }

            .parallax-logo {
                width: 312px;
            }

            .journey-watermark {
                width: 300px;
            }

            /* Journey Leads Mobile */
            .journey-leads-section {
                padding: 3rem 1.5rem;
            }
            
            .journey-leads-container {
                flex-direction: column;
                gap: 2.5rem;
            }
            
            .stats-card {
                width: 100%;
                height: auto;
                padding: 2rem;
                margin-left: 0;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .journey-leads-title {
                font-size: 2.2rem;
            }
            
            .journey-leads-title .script {
                font-size: 2.8rem;
            }
            
            .journey-leads-text {
                font-size: 1rem;
            }
            
            .journey-leads-content {
                margin-right: 0;
            }
            
            /* Video Expand Section Mobile */
            .scroll-expand-section {
                min-height: 80vh;
            }
            
            .expand-video-container {
                clip-path: inset(calc(50% - 100px) calc(50% - 140px) calc(50% - 100px) calc(50% - 140px) round 12px);
            }
            
            /* Show mobile video, hide desktop video */
            .expand-video-desktop {
                display: none;
            }
            
            .expand-video-mobile {
                display: block;
            }
            
            .video-title {
                padding: 0 1rem;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
            }
            
            .video-title h2 {
                font-size: 3rem;
            }
            
            .video-title h2 .indent {
                padding-left: 0;
                white-space: nowrap;
            }
            
            .gator-tagline h2 {
                font-size: 1.8rem;
                -webkit-text-stroke: 1px white;
                text-stroke: 1px white;
                white-space: normal;
                width: 100%;
                padding: 0 1rem;
            }
            
            .gator-tagline {
                width: 100%;
                left: 0;
                transform: translateY(100px);
                bottom: 6rem;
            }
            
            .gator-tagline.visible {
                transform: translateY(0);
            }
            
            .tagline-line1,
            .tagline-line2 {
                display: block;
            }
            
            /* Excellence Section Mobile - VERTICAL CARDS */
            .excellence-section {
                position: relative;
                height: auto !important;
                min-height: auto;
                padding: 1rem 0 7rem 0;
                overflow: visible !important;
            }
            
            /* Hide desktop horizontal scroll elements on mobile */
            .fixed-circle-frame,
            .fixed-community,
            .fixed-sage-circle,
            .words-track,
            .temp-community {
                display: none !important;
            }
            
            /* Show mobile cards */
            .mobile-excellence-cards {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                gap: 8rem;
                width: 100%;
                padding: 0 1rem;
                margin-bottom: 2rem;
            }
            
            .mobile-excellence-card {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 350px;
                text-decoration: none;
                color: inherit;
            }
            
            .mobile-card-circle {
                position: relative;
                width: 300px;
                height: 300px;
                border-radius: 50%;
                overflow: hidden;
                z-index: 10;
            }
            
            .mobile-card-circle img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .mobile-card-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(18, 70, 52, 0.45);
                z-index: 11;
            }
            
            .mobile-card-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                z-index: 12;
            }
            
            .mobile-card-title {
                display: block;
                font-family: var(--serif);
                font-size: 2.8rem;
                font-weight: 400;
                color: white;
                line-height: 1.1;
            }
            
            .mobile-card-subtitle {
                display: block;
                font-family: var(--serif);
                font-size: 2.8rem;
                font-weight: 400;
                color: white;
                line-height: 1.1;
            }
            
            .mobile-sage-circle {
                width: 260px;
                height: 260px;
                border-radius: 50%;
                background: var(--crestwell-sage);
                margin-top: -82.5px;
                z-index: 5;
                display: flex;
                align-items: flex-start;
                justify-content: center;
                padding: 2rem;
                position: relative;
                overflow: visible;
            }
            
            .mobile-sage-circle p {
                font-family: var(--serif);
                font-size: 0.97rem;
                color: var(--crestwell-green);
                text-align: left;
                line-height: 1.5;
                margin: 0;
                margin-left: 10%;
                margin-right: -95px;
                padding-top: 5.46rem;
            }
            
            .mobile-sage-circle .arrow {
                display: block;
                margin-top: 0.5rem;
                font-size: 1.2rem;
                text-align: left;
                margin-right: 0;
            }
            
            .scroll-word,
            .fixed-community,
            .temp-community {
                font-size: 2.2rem;
            }
            
            .expand-content {
                padding: 2rem 1.5rem 1rem;
            }
            
            .expand-content p {
                font-size: 1.1rem;
            }
            
            .scroll-image-item {
                width: 180px;
                height: 180px;
            }
            
            .infinite-scroll {
                gap: 1rem;
            }
            
            .program-journey {
                padding: 0 2rem 4rem;
                overflow: visible !important;
                min-height: auto !important;
            }
            
            
            .journey-header {
                flex-direction: column;
                text-align: center;
                padding-bottom: 2rem;
                margin-bottom: 1rem;
            }
            
            .journey-title {
                font-size: 3.6rem;
                opacity: 1 !important;
            }
            
            .journey-description {
                font-size: 1rem;
                max-width: 100%;
                opacity: 1 !important;
            }
            
            /* Students - stacked boxes, no animations */
            .students-container {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 2rem !important;
                height: auto !important;
                padding: 2rem 0 !important;
                position: relative !important;
                overflow: visible !important;
            }
            
            .student-circle-card {
                opacity: 1 !important;
                transform: none !important;
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                display: flex !important;
            }
            
            .student-circle-card.madison,
            .student-circle-card.caden,
            .student-circle-card.alanna,
            .student-circle-card.sydney {
                opacity: 1 !important;
                transform: none !important;
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                flex-direction: column !important;
                align-items: center !important;
            }
            
            .student-circle-card.caden .student-info,
            .student-circle-card.sydney .student-info {
                text-align: center !important;
            }
            
            .circle-photo {
                width: 200px;
                height: 200px;
            }
            
            .student-name {
                font-size: 2rem;
            }
            
            .profile-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .profile-column {
                padding: 0 0 2rem 0;
            }
            
            .profile-column:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid var(--crestwell-green);
            }
            
            .profile-column:nth-child(3) {
                grid-column: auto;
                border-top: none;
                padding-top: 0;
                margin-top: 0;
            }
            
            .profile-intro {
                flex-direction: column;
                text-align: center;
            }
            
            .profile-image-large {
                margin: 0 auto;
            }
            
            .profile-info {
                text-align: center;
            }
            
            .profile-quote {
                border-left: none;
                padding-left: 0;
                border-top: 3px solid var(--crestwell-green);
                padding-top: 1rem;
            }
            
            /* Footer Mobile */
            .footer-headline {
                font-size: 3.5rem;
            }
            
            .footer-description {
                font-size: 1rem;
            }
            
            .footer-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .footer-terms-row {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                margin-left: 0;
                padding: 0 2rem;
            }
            
            .footer-terms-left {
                position: static;
                text-align: center;
            }
        }
        
        /* Small Mobile - phones */
        @media (max-width: 600px) {
            /* Full Page Menu - Small Mobile */
            .fullpage-menu-header {
                top: 15px;
                right: 1.5rem;
                left: 1.5rem;
                flex-direction: row;
                gap: 0.5rem;
            }
            
            .menu-admissions-btn {
                padding: 0.69rem 0.8rem;
                font-size: 0.75rem;
            }
            
            .fullpage-menu-close {
                padding: 0.69rem 0.8rem;
                font-size: 0.75rem;
            }
            
            .fullpage-menu-inner {
                display: flex !important;
                flex-direction: column !important;
                padding: 140px 1.5rem 30px;
                gap: 2rem;
            }
            
            .menu-main-nav {
                height: auto !important;
                min-height: auto !important;
                justify-content: flex-start !important;
            }
            
            .menu-main-nav a {
                font-size: 1.5rem;
                padding: 0.4rem 0;
                white-space: normal;
            }
            
            .menu-community {
                height: auto !important;
                min-height: auto !important;
                justify-content: flex-start !important;
            }
            
            .menu-community h3 {
                font-size: 1.2rem;
            }
            
            .menu-community-links a {
                font-size: 0.85rem;
            }

            .community-dropdown-toggle {
                font-size: 0.85rem !important;
            }

            #mainNav {
                padding: 0.8rem 0.5rem 0.5rem 0.5rem;
            }
            
            .nav-logo {
                font-size: 1.54rem;
                margin-top: 0.85rem;
                max-width: 130px;
            }
            
            .dropdown-btn {
                padding: 1.31rem 0.5rem;
                font-size: 0.925rem;
            }
            
            .hero {
                height: 85vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 0.3rem;
            }
            
            .hero h1 .indent {
                padding-left: 2rem;
            }
            
            .hero-content {
                bottom: 4rem;
                left: 1.5rem;
                right: 1.5rem;
                max-width: 100%;
            }
            
            .scroll-indicator {
                bottom: 1rem;
            }
            
            .hero-cta-container {
                bottom: 4rem;
                right: 0.5rem;
            }
            
            /* Mission Section Mobile */
            .mission-section {
                padding: 2.5rem 0.5rem;
                height: 75vh;
            }
            
            .mission-content {
                padding: 0 0.5rem;
            }
            
            .mission-content h2 {
                font-size: 1.8rem;
                line-height: 1.725;
            }
            
            /* Excellence Section - Smaller phones */
            .mobile-card-circle {
                width: 260px;
                height: 260px;
            }
            
            .mobile-card-title,
            .mobile-card-subtitle {
                font-size: 2.4rem;
                font-weight: 400;
            }
            
            .mobile-sage-circle {
                width: 220px;
                height: 220px;
                margin-top: -71.5px;
                padding: 1.5rem;
            }
            
            .mobile-sage-circle p {
                font-size: 0.86rem;
                padding-top: 4.24rem;
                text-align: left;
                margin-left: 10%;
                margin-right: -75px;
            }
            
            .mobile-sage-circle .arrow {
                margin-right: 0;
            }

            /* Video Section - Smaller */
            .scroll-expand-section {
                min-height: 70vh;
            }
            
            .expand-video-container {
                clip-path: inset(calc(50% - 80px) calc(50% - 120px) calc(50% - 80px) calc(50% - 120px) round 10px);
            }
            
            .video-title {
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
            }
            
            .video-title h2 {
                font-size: 2.2rem;
            }
            
            .video-title h2 .indent {
                padding-left: 0;
                white-space: nowrap;
            }
            
            .gator-tagline h2 {
                font-size: 1.5rem;
                -webkit-text-stroke: 0.5px white;
                text-stroke: 0.5px white;
            }
            
            .gator-tagline {
                bottom: 5rem;
            }
            
            /* Carousel smaller */
            .scroll-image-item {
                width: 150px;
                height: 150px;
            }
            
            /* Gators section */
            .journey-title {
                font-size: 2.88rem;
                opacity: 1 !important;
            }
            
            .journey-title span {
                font-size: 2.6rem;
            }
            

            .journey-description {
                opacity: 1 !important;
            }

            .circle-photo-inner {
                background: #fff !important;
            }

            .student-circle-card,
            .student-circle-card.madison,
            .student-circle-card.caden,
            .student-circle-card.alanna,
            .student-circle-card.sydney {
                opacity: 1 !important;
                transform: none !important;
                flex-direction: column !important;
                align-items: center !important;
            }
            
            .student-circle-card.caden .student-info,
            .student-circle-card.sydney .student-info {
                text-align: center !important;
            }
            
            /* Journey Leads Section */
            .journey-leads-section {
                padding: 2rem 1rem;
                min-height: auto;
            }
            
            .journey-leads-title {
                font-size: 1.8rem;
            }
            
            .journey-leads-title .script {
                font-size: 2.2rem;
            }
            
            .journey-leads-text {
                font-size: 0.9rem;
            }
            
            .journey-leads-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.75rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stat-description {
                font-size: 0.75rem;
            }
            
            /* Footer */
            .footer-hero {
                min-height: 500px;
                padding: 3rem 1.5rem;
            }
            
            .footer-headline {
                font-size: 2.5rem;
            }
            
            .footer-description {
                font-size: 0.9rem;
            }
            
            .footer-btn {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
            }
            
            .footer-legal {
                padding: 1.5rem;
                font-size: 0.8rem;
            }
            
            .footer-legal .legal-copyright,
            .footer-legal .legal-nonprofit {
                display: block;
            }
        }

        /* =============================================
           GLOBAL INTERNAL PAGE STYLES
           ============================================= */

        /* Section Title Line Heights - All Internal Pages (not homepage) */
        .page-hero ~ main h2,
        .page-hero ~ main .stats-header h2,
        .page-hero ~ main .seo-content h2,
        .page-hero ~ main .options-header h2,
        .page-hero ~ main .programs-header h2,
        .page-hero ~ main .pillars-header h2,
        .page-hero ~ main .schedule-header h2,
        .page-hero ~ main .maker-left h2,
        .page-hero ~ main .homework-left h2,
        .page-hero ~ main .culture-left h2 {
            line-height: 1.3;
        }

        /* =============================================
           MOBILE SECTION NAVIGATION STYLES
           ============================================= */

        /* Base styles for section-nav that work on all screen sizes */
        .section-nav {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            background: #fff;
            border-radius: 0 16px 16px 0;
            box-shadow: 2px 4px 20px rgba(0,0,0,0.1);
            padding: 1.5rem;
            max-width: 250px;
            transition: all 0.3s ease;
        }

        .section-nav-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem;
            color: var(--crestwell-green);
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--crestwell-sage);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .section-nav.collapsed .section-nav-links {
            display: none;
        }

        .section-nav.collapsed .section-nav-title {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .section-nav.collapsed .section-nav-title svg {
            transform: rotate(180deg);
        }

        .section-nav-title svg {
            width: 18px;
            height: 18px;
            fill: var(--crestwell-green);
            transition: transform 0.3s ease;
        }

        .section-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .section-nav-links a {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--crestwell-gray);
            text-decoration: none;
            padding: 0.5rem 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
            border-left: 3px solid transparent;
            padding-left: 0;
        }

        .section-nav-links a:hover {
            color: var(--crestwell-green);
            padding-left: 0.5rem;
            border-left-color: var(--crestwell-sage);
        }

        .section-nav-links a.active {
            color: var(--crestwell-green);
            font-weight: 600;
            padding-left: 0.5rem;
            border-left-color: var(--crestwell-green);
        }

        /* Section Nav Accordion for Experiential Learning dropdown */
        .section-nav-accordion {
            display: flex;
            flex-direction: column;
            margin: 0.25rem 0;
        }

        .section-nav-accordion-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--crestwell-gray);
            background: none;
            border: none;
            padding: 0.5rem 0;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .section-nav-accordion-trigger:hover {
            color: var(--crestwell-green);
        }

        .section-nav-accordion-trigger .caret {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .section-nav-accordion.open .section-nav-accordion-trigger .caret {
            transform: rotate(90deg);
        }

        .section-nav-accordion-content {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding-left: 0.75rem;
        }

        .section-nav-accordion.open .section-nav-accordion-content {
            max-height: 200px;
            padding-top: 0.3rem;
        }

        .section-nav-accordion-content a {
            font-size: 0.85rem !important;
            padding: 0.35rem 0 !important;
        }

        /* Sidebar Dropdown (Community Policies caret) */
        .sidebar-dropdown {
            display: flex;
            flex-direction: column;
            margin: 0.25rem 0;
        }

        .sidebar-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--crestwell-gray);
            background: none;
            border: none;
            padding: 0.5rem 0;
            text-decoration: none;
            transition: color 0.2s ease;
            border-left: 3px solid transparent;
        }

        .sidebar-dropdown-toggle:hover {
            color: var(--crestwell-green);
        }

        .sidebar-dropdown-toggle span {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .sidebar-dropdown.open .sidebar-dropdown-toggle {
            color: var(--crestwell-green);
        }

        .sidebar-dropdown.open .sidebar-dropdown-toggle span {
            transform: rotate(180deg);
        }

        .sidebar-dropdown-menu {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding-left: 0.75rem;
        }

        .sidebar-dropdown.open .sidebar-dropdown-menu {
            max-height: 200px;
            padding-top: 0.3rem;
        }

        .sidebar-dropdown-menu a {
            font-size: 0.85rem !important;
            padding: 0.35rem 0 !important;
        }

        /* Mobile Section Nav - Show as bottom drawer */
        @media (max-width: 1200px) {
            .section-nav {
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                transform: translateY(calc(100% - 60px)) !important;
                border-radius: 16px 16px 0 0 !important;
                box-shadow: 0 -4px 20px rgba(0,0,0,0.15) !important;
                padding: 1rem 1.5rem !important;
                z-index: 500 !important;
                max-height: 70vh !important;
                overflow-y: auto !important;
            }

            .section-nav.expanded {
                transform: translateY(0) !important;
            }

            .section-nav-title {
                margin-bottom: 0 !important;
                padding-bottom: 0 !important;
                border-bottom: none !important;
            }

            .section-nav.expanded .section-nav-title {
                margin-bottom: 1rem !important;
                padding-bottom: 0.75rem !important;
                border-bottom: 2px solid var(--crestwell-sage) !important;
            }

            .section-nav-title svg {
                transform: rotate(180deg) !important;
            }

            .section-nav.expanded .section-nav-title svg {
                transform: rotate(0deg) !important;
            }

            .section-nav-links {
                display: none !important;
            }

            .section-nav.expanded .section-nav-links {
                display: flex !important;
                padding-bottom: 1rem !important;
            }
        }

        @media (max-width: 480px) {
            .section-nav {
                padding: 0.75rem 1rem;
            }

            .section-nav-title {
                font-size: 1rem;
            }

            .section-nav-links a {
                font-size: 0.85rem;
            }

            .sidebar-dropdown-toggle {
                font-size: 0.85rem;
            }

            .sidebar-dropdown-menu a {
                font-size: 0.8rem !important;
            }
        }

        /* =============================================
           GLOBAL MOBILE TEXT LINE HEIGHT (Internal Pages Only)
           ============================================= */
        @media (max-width: 768px) {
            /* Apply 1.4 line-height on mobile - ONLY on internal pages (not homepage) */
            /* Targets elements inside <main> that follow a .page-hero or .welcome-hero */
            .page-hero ~ main h1,
            .page-hero ~ main h2,
            .page-hero ~ main h3,
            .page-hero ~ main h4,
            .page-hero ~ main h5,
            .page-hero ~ main h6,
            .page-hero ~ main p,
            .page-hero ~ main span,
            .page-hero ~ main a,
            .page-hero ~ main li,
            .page-hero ~ main blockquote,
            .page-hero ~ main cite,
            .welcome-hero ~ main h1,
            .welcome-hero ~ main h2,
            .welcome-hero ~ main h3,
            .welcome-hero ~ main h4,
            .welcome-hero ~ main h5,
            .welcome-hero ~ main h6,
            .welcome-hero ~ main p,
            .welcome-hero ~ main span,
            .welcome-hero ~ main a,
            .welcome-hero ~ main li,
            .welcome-hero ~ main blockquote,
            .welcome-hero ~ main cite,
            .page-hero .program-title-block h1,
            .page-hero .program-title-block span,
            .welcome-hero-content h1,
            .welcome-hero-content span,
            .welcome-hero-content .head-name,
            .welcome-hero-content .head-title,
            .letter-signature .signature-name,
            .letter-signature .signature-title {
                line-height: 1.4 !important;
            }
        }

        /* =============================================
           TOUR FORM POPUP MODAL
           ============================================= */
        .tour-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .tour-modal-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            backdrop-filter: blur(5px);
        }

        .tour-modal {
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        .tour-modal-overlay.active .tour-modal {
            transform: translateY(0) scale(1);
        }

        .tour-modal-header {
            background: var(--crestwell-green);
            padding: 1.5rem 2rem;
            position: relative;
        }

        .tour-modal-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            color: #fff;
            margin: 0;
            padding-right: 2rem;
        }

        .tour-modal-header p {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0.5rem 0 0;
            line-height: 1.5;
        }

        .tour-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .tour-modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .tour-modal-body {
            padding: 0 0 2rem 0;
            height: 580px;
            overflow-y: auto;
        }

        .tour-modal-body iframe {
            width: 100%;
            height: calc(100% + 40px);
            border: none;
        }

        @media (max-width: 600px) {
            .tour-modal {
                max-height: 95vh;
                border-radius: 16px;
            }

            .tour-modal-header {
                padding: 1.25rem 1.5rem;
            }

            .tour-modal-header h2 {
                font-size: 1.25rem;
            }

            .tour-modal-body {
                height: 540px;
            }
        }

        /* =============================================
           INFO REQUEST FORM POPUP MODAL
           ============================================= */
        .info-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .info-modal-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            backdrop-filter: blur(5px);
        }

        .info-modal {
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 550px;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        .info-modal-overlay.active .info-modal {
            transform: translateY(0) scale(1);
        }

        .info-modal-header {
            background: var(--crestwell-green);
            padding: 1.5rem 2rem;
            position: relative;
        }

        .info-modal-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            color: #fff;
            margin: 0;
            padding-right: 2rem;
        }

        .info-modal-header p {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0.5rem 0 0;
            line-height: 1.5;
        }

        .info-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .info-modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .info-modal-body {
            padding: 0 0 2rem 0;
            overflow-y: auto;
            max-height: 70vh;
        }

        .info-modal-body iframe {
            width: 100%;
            height: 1200px;
            border: none;
        }

        @media (max-width: 600px) {
            .info-modal {
                max-height: 95vh;
                border-radius: 16px;
            }

            .info-modal-header {
                padding: 1.25rem 1.5rem;
            }

            .info-modal-header h2 {
                font-size: 1.25rem;
            }

            .info-modal-body {
                max-height: 65vh;
            }
        }
