/* =====================================================
           1. DESIGN TOKENS
        ===================================================== */

        :root {

            --navy-950: #071522;
            --navy-900: #0a1f33;
            --navy-800: #102b46;

            --blue-600: #174f8a;
            --blue-500: #2563a6;

            --teal-500: #00a6a6;
            --teal-400: #21bdbd;

            --gold-500: #e7a83a;

            --white: #ffffff;
            --surface: #f7f9fc;
            --surface-dark: #eef3f8;

            --gray-100: #e9eef3;
            --gray-200: #d8e0e8;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-700: #334155;
            --gray-900: #172033;

            --font-heading: "Manrope", sans-serif;
            --font-body: "Inter", sans-serif;

            --container: 1320px;

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;

            --shadow-sm:
                0 4px 12px rgba(10, 31, 51, 0.06);

            --shadow-md:
                0 12px 32px rgba(10, 31, 51, 0.08);

            --shadow-lg:
                0 24px 60px rgba(10, 31, 51, 0.12);

            --transition-fast: 150ms ease;
            --transition: 250ms ease;
            --transition-slow: 400ms ease;
        }


        /* =====================================================
           2. RESET
        ===================================================== */

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 96px;
        }

        body {
            margin: 0;
            background: var(--white);
            color: var(--gray-900);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font: inherit;
        }


        /* =====================================================
           3. GLOBAL UTILITIES
        ===================================================== */

        .container {
            width: min(
                calc(100% - 48px),
                var(--container)
            );
            margin: 0 auto;
        }

        .section {
            padding: 120px 0;
        }

        .section-light {
            background: var(--white);
        }

        .section-surface {
            background: var(--surface);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 20px;

            color: var(--teal-500);

            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            width: 32px;
            height: 2px;

            background: currentColor;

            content: "";
        }

        .section-title {
            max-width: 760px;

            margin: 0;

            font-family: var(--font-heading);
            font-size: clamp(40px, 5vw, 68px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.045em;
        }

        .section-description {
            max-width: 650px;

            margin: 24px 0 0;

            color: var(--gray-500);
            font-size: 18px;
        }


        /* =====================================================
           4. BUTTONS
        ===================================================== */

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            min-height: 54px;
            padding: 14px 24px;

            border: 1px solid transparent;
            border-radius: var(--radius-sm);

            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;

            cursor: pointer;

            transition:
                background var(--transition),
                color var(--transition),
                border-color var(--transition),
                transform var(--transition);
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            background: var(--navy-900);
            color: var(--white);
        }

        .button-primary:hover {
            background: var(--blue-600);
        }

        .button-secondary {
            border-color: var(--gray-200);

            background: var(--white);
            color: var(--navy-900);
        }

        .button-secondary:hover {
            border-color: var(--navy-900);
        }

        .button-arrow {
            transition: transform var(--transition);
        }

        .button:hover .button-arrow {
            transform: translateX(4px);
        }


        /* =====================================================
           5. HEADER
        ===================================================== */

        .site-header {
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;

            width: 100%;

            transition:
                background var(--transition),
                box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.94);

            backdrop-filter: blur(14px);

            box-shadow:
                0 4px 20px rgba(10, 31, 51, 0.06);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;

            min-height: 88px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;

            color: var(--navy-900);
        }

        .brand-mark {
            display: grid;
            place-items: center;

            width: 46px;
            height: 46px;

            border-radius: 12px;

            background: var(--navy-900);
            color: var(--white);

            font-family: var(--font-heading);
            font-weight: 800;
        }

        .brand-text {
            display: flex;
            flex-direction: column;

            font-family: var(--font-heading);
            line-height: 1.1;
        }

        .brand-text strong {
            font-size: 15px;
        }

        .brand-text span {
            margin-top: 4px;

            color: var(--gray-500);

            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .desktop-nav a {
            position: relative;

            color: var(--gray-700);

            font-size: 14px;
            font-weight: 600;
        }

        .desktop-nav a::after {
            position: absolute;
            right: 0;
            bottom: -8px;
            left: 0;

            width: 0;
            height: 2px;

            margin: auto;

            background: var(--teal-500);

            content: "";

            transition: width var(--transition);
        }

        .desktop-nav a:hover::after,
        .desktop-nav a.is-current::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .mobile-menu-button {
            display: none;

            width: 46px;
            height: 46px;

            border: 0;
            border-radius: 10px;

            background: var(--navy-900);
            color: var(--white);

            cursor: pointer;
        }


        /* =====================================================
           6. MOBILE MENU
        ===================================================== */

        .mobile-menu {
            position: fixed;
            z-index: 999;
            inset: 0;

            display: flex;
            flex-direction: column;

            padding: 110px 24px 32px;

            background: var(--navy-950);

            color: var(--white);

            opacity: 0;
            visibility: hidden;

            transform: translateX(100%);

            transition:
                opacity var(--transition),
                visibility var(--transition),
                transform var(--transition);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;

            transform: translateX(0);
        }

        .mobile-menu a {
            padding: 16px 0;

            border-bottom: 1px solid rgba(255,255,255,0.1);

            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
        }

        .mobile-menu .button {
            margin-top: 36px;
        }


        /* =====================================================
           7. HERO
        ===================================================== */

        .hero {
            position: relative;

            min-height: 820px;
            padding-top: 160px;

            overflow: hidden;

            background:
                radial-gradient(
                    circle at 80% 20%,
                    rgba(0, 166, 166, 0.08),
                    transparent 28%
                ),
                var(--surface);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px;
			
            min-height: 660px; 
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
			max-width: 680px;

            margin: 0;

            color: var(--navy-900);

            font-family: var(--font-heading);
            font-size: clamp(54px, 6vw, 82px);
            font-weight: 800;
            line-height: 1.03;
            letter-spacing: -0.055em;
        }

        .hero-title span {
            color: var(--blue-600);
        }

        .hero-description {
            max-width: 580px;

            margin: 28px 0 0;

            color: var(--gray-500);

            font-size: 19px;
            line-height: 1.75;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;

            margin-top: 36px;
        }

        .hero-visual {
            position: relative;
        }

        .hero-visual::before {
            position: absolute;
            inset: 48px -28px -28px 48px;
            z-index: 0;
            border-radius: 32px;
            background: var(--surface-dark);
            content: "";
        }

        .hero-main-image,
        .hero .elementor-widget-image {
            position: relative;
            z-index: 1;
        }

        .hero-main-image {
            overflow: hidden;
            border-radius: 32px;
            box-shadow: var(--shadow-lg);
        }

        .hero-main-image img,
        .hero .elementor-widget-image img {
            display: block;
            width: 100%;
            height: 560px;
            object-fit: cover;
            border-radius: 32px;
        }

        .hero-small-image {
            position: absolute;
            bottom: -32px;
            left: 0;

            width: 210px;
            height: 260px;

            border: 8px solid var(--surface);
            border-radius: 20px;

            overflow: hidden;

            box-shadow: var(--shadow-md);
        }

        .hero-small-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .hero-stat-card {
            position: absolute;
            z-index: 3;
            right: -20px;
            bottom: 60px;

            width: 190px;
            padding: 26px;

            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 18px;

            background: rgba(255,255,255,0.92);

            backdrop-filter: blur(14px);

            box-shadow: var(--shadow-md);
        }

        .hero-stat-number {
            display: block;

            color: var(--navy-900);

            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
        }

        .hero-stat-card p {
            margin: 10px 0 0;

            color: var(--gray-500);

            font-size: 13px;
            font-weight: 600;
            line-height: 1.4;
        }


        /* =====================================================
           8. STATISTICS
        ===================================================== */

        .statistics {
            position: relative;
            z-index: 5;

            background: var(--navy-900);
            color: var(--white);
        }

        .statistics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat-item {
            position: relative;

            padding: 60px 36px;

            text-align: center;
        }

        .stat-item:not(:last-child)::after {
            position: absolute;
            top: 25%;
            right: 0;

            width: 1px;
            height: 50%;

            background: rgba(255,255,255,0.15);

            content: "";
        }

        .stat-number {
            display: block;

            color: var(--white);

            font-family: var(--font-heading);
            font-size: clamp(42px, 4vw, 62px);
            font-weight: 800;
            line-height: 1;
        }

        .stat-label {
            display: block;

            margin-top: 14px;

            color: rgba(255,255,255,0.65);

            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }


        /* =====================================================
           9. ABOUT PREVIEW
        ===================================================== */

        .about-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            align-items: center;
            gap: 100px;
        }

        .about-content .section-title {
            max-width: 600px;
        }

        .about-text {
            max-width: 600px;

            margin: 26px 0 34px;

            color: var(--gray-500);

            font-size: 17px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            min-height: 600px;

            border-radius: var(--radius-xl);

            object-fit: cover;

            box-shadow: var(--shadow-md);
        }

        .about-image::before {
            position: absolute;
            z-index: -1;
            top: -28px;
            right: -28px;

            width: 180px;
            height: 180px;

            border-radius: 50%;

            background: var(--teal-500);

            opacity: 0.12;

            content: "";
        }


        /* =====================================================
           10. EDUCATION AREAS
        ===================================================== */

        .areas-header {
            display: grid;
            grid-template-columns: 1fr 0.7fr;
            align-items: end;
            gap: 60px;

            margin-bottom: 64px;
        }

        .areas-list {
            border-top: 1px solid var(--gray-200);
        }

        .area-item {
            position: relative;

            display: grid;
            grid-template-columns: 100px 1fr auto;
            align-items: center;
            gap: 24px;

            padding: 34px 24px;

            border-bottom: 1px solid var(--gray-200);

            overflow: hidden;

            transition:
                background var(--transition),
                padding var(--transition);
        }

        .area-item::before {
            position: absolute;
            z-index: 0;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(10,31,51,0.96),
                    rgba(10,31,51,0.82)
                );

            opacity: 0;

            content: "";

            transition: opacity var(--transition);
        }

        .area-item > * {
            position: relative;
            z-index: 1;
        }

        .area-item:hover {
            padding-left: 40px;
        }

        .area-item:hover::before {
            opacity: 1;
        }

        .area-number {
            color: var(--teal-500);

            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 800;
        }

        .area-name {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 42px);
            font-weight: 700;
            letter-spacing: -0.03em;

            transition: color var(--transition);
        }

        .area-arrow {
            display: grid;
            place-items: center;

            width: 48px;
            height: 48px;

            border-radius: 50%;

            background: var(--surface);

            color: var(--navy-900);

            transition:
                background var(--transition),
                transform var(--transition);
        }

        .area-item:hover .area-name {
            color: var(--white);
        }

        .area-item:hover .area-arrow {
            background: var(--teal-500);
            color: var(--white);

            transform: translateX(8px);
        }


        /* =====================================================
           11. OUR SCHOOLS
        ===================================================== */

        .schools-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 40px;

            margin-bottom: 64px;
        }

        .schools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .school-card {
            display: flex;
            flex-direction: column;

            border: 1px solid var(--gray-100);
            border-radius: var(--radius-lg);

            background: var(--white);

            overflow: hidden;

            box-shadow: var(--shadow-sm);

            transition:
                transform var(--transition),
                box-shadow var(--transition);
        }

        .school-card:hover {
            transform: translateY(-8px);

            box-shadow: var(--shadow-lg);
        }

        .school-image {
            height: 280px;

            overflow: hidden;
        }

        .school-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: transform var(--transition-slow);
        }

        .school-card:hover .school-image img {
            transform: scale(1.05);
        }

        .school-content {
            display: flex;
            flex: 1;
            flex-direction: column;

            padding: 32px;
        }

        .school-tag {
            margin-bottom: 16px;

            color: var(--teal-500);

            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .school-title {
            margin: 0;

            color: var(--navy-900);

            font-family: var(--font-heading);
            font-size: 27px;
            line-height: 1.2;
        }

        .school-description {
            margin: 18px 0 30px;

            color: var(--gray-500);
            font-size: 15px;
        }

        .school-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-top: auto;

            color: var(--navy-900);

            font-size: 14px;
            font-weight: 800;
        }

        .school-link span {
            transition: transform var(--transition);
        }

        .school-link:hover span {
            transform: translateX(6px);
        }


        /* =====================================================
           12. IMPACT
        ===================================================== */

        .impact {
            position: relative;

            padding: 150px 0;

            overflow: hidden;

            background: var(--navy-950);
            color: var(--white);
        }

        .impact::before {
            position: absolute;
            top: -180px;
            right: -120px;

            width: 520px;
            height: 520px;

            border: 1px solid rgba(0,166,166,0.18);
            border-radius: 50%;

            content: "";
        }

        .impact::after {
            position: absolute;
            bottom: -220px;
            left: -100px;

            width: 480px;
            height: 480px;

            border-radius: 50%;

            background: var(--teal-500);

            opacity: 0.04;

            content: "";
        }

        .impact-content {
            position: relative;
            z-index: 1;

            max-width: 1000px;
        }

        .impact .eyebrow {
            color: var(--teal-400);
        }

        .impact-title {
            margin: 0;

            font-family: var(--font-heading);
            font-size: clamp(50px, 7vw, 90px);
            font-weight: 800;
            line-height: 1.03;
            letter-spacing: -0.055em;
        }

        .impact-title span {
            color: var(--teal-400);
        }

        .impact-description {
            max-width: 680px;

            margin: 30px 0 40px;

            color: rgba(255,255,255,0.68);

            font-size: 20px;
        }

        .impact .button-primary {
            background: var(--teal-500);
        }

        .impact .button-primary:hover {
            background: var(--teal-400);
        }


        /* =====================================================
           13. FINAL CTA
        ===================================================== */

        .final-cta {
            padding: 120px 0;

            text-align: center;
        }

        .final-cta-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .final-cta .section-title {
            margin: 0 auto;
        }

        .final-cta p {
            max-width: 620px;

            margin: 24px auto 34px;

            color: var(--gray-500);

            font-size: 18px;
        }


        /* =====================================================
           14. FOOTER
        ===================================================== */

        .site-footer {
            padding: 80px 0 32px;

            background: var(--navy-950);
            color: var(--white);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 60px;

            padding-bottom: 70px;
        }

        .footer-brand .brand {
            color: var(--white);
        }

        .footer-brand .brand-text span {
            color: rgba(255,255,255,0.45);
        }

		.brand-logo--footer {
            height: 48px;
            max-width: 220px;
        }

        .footer-description {
            max-width: 320px;

            margin-top: 24px;

            color: rgba(255,255,255,0.58);

            font-size: 14px;
        }

        .footer-column h4 {
            margin: 0 0 20px;

            color: var(--white);

            font-family: var(--font-heading);
            font-size: 14px;
        }

        .footer-column a {
            display: block;

            margin-bottom: 12px;

            color: rgba(255,255,255,0.58);

            font-size: 14px;

            transition: color var(--transition);
        }

        .footer-column a:hover {
            color: var(--teal-400);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;

            padding-top: 28px;

            border-top: 1px solid rgba(255,255,255,0.1);

            color: rgba(255,255,255,0.42);

            font-size: 13px;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }


        /* =====================================================
           15. RESPONSIVE
        ===================================================== */

        @media (max-width: 1100px) {

            .desktop-nav {
                display: none;
            }

            .mobile-menu-button {
                display: grid;
                place-items: center;
            }

            .hero-grid {
                gap: 48px;
            }

            .hero-visual {
                min-height: 0;
            }

            .about-grid {
                gap: 64px;
            }

            .schools-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .schools-grid .school-card:last-child {
                grid-column: span 2;

                max-width: 600px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }

            .footer-grid .footer-column:last-child {
                grid-column: 2 / 4;
            }
        }


        @media (max-width: 820px) {

            .container {
                width: min(
                    calc(100% - 40px),
                    var(--container)
                );
            }

            .section {
                padding: 90px 0;
            }

            .hero {
                min-height: auto;
                padding: 130px 0 80px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 0;
                margin-top: 10px;
            }

            .hero-main-image img,
            .hero .elementor-widget-image img {
                height: 420px;
            }

            .statistics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .stat-item:nth-child(-n+2) {
                border-bottom: 1px solid rgba(255,255,255,0.12);
            }

            .stat-item {
                padding: 48px 24px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .about-image img {
                min-height: 420px;
            }

            .areas-header {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .schools-heading {
                display: block;
            }

            .schools-heading .button {
                margin-top: 28px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand {
                grid-column: span 2;
            }

            .footer-grid .footer-column:last-child {
                grid-column: auto;
            }
        }


        @media (max-width: 600px) {

            .container {
                width: calc(100% - 32px);
            }

            .header-inner {
                min-height: 72px;
            }
			
			.brand-logo {
                height: 40px;
                max-width: 168px;
            }

            .brand-mark {
                width: 40px;
                height: 40px;
            }

            .brand-text strong {
                font-size: 13px;
            }

            .brand-text span {
                font-size: 8px;
            }

            .header-actions .button {
                display: none;
            }

            .hero {
                padding-top: 120px;
            }

            .hero-title {
                font-size: clamp(48px, 14vw, 64px);
            }

            .hero-description {
                font-size: 17px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .button {
                width: 100%;
            }

            .hero-visual {
                min-height: 0;
            }

            .hero-main-image img,
            .hero .elementor-widget-image img {
                height: 320px;
            }

            .hero-small-image {
                bottom: -8px;

                width: 150px;
                height: 190px;
            }

            .hero-stat-card {
                right: 0;
                bottom: 25px;

                width: 150px;
                padding: 20px;
            }

            .hero-stat-number {
                font-size: 38px;
            }

            .statistics-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat-item {
                padding: 38px 12px;
            }

            .stat-number {
                font-size: 40px;
            }

            .stat-label {
                font-size: 10px;
            }

            .section-title {
                font-size: 42px;
            }

            .about-image img {
                min-height: 360px;
            }

            .area-item {
                grid-template-columns: 50px 1fr 44px;
                gap: 14px;

                padding: 26px 8px;
            }

            .area-item:hover {
                padding-left: 16px;
            }

            .area-name {
                font-size: 25px;
            }

            .area-arrow {
                width: 40px;
                height: 40px;
            }

            .schools-grid {
                grid-template-columns: 1fr;
            }

            .schools-grid .school-card:last-child {
                grid-column: auto;
            }

            .school-image {
                height: 240px;
            }

            .school-content {
                padding: 26px;
            }

            .impact {
                padding: 110px 0;
            }

            .impact-title {
                font-size: 52px;
            }

            .impact-description {
                font-size: 17px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 42px;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-legal {
                flex-wrap: wrap;
                gap: 12px 20px;
            }
        }


        /* =====================================================
           16. ACCESSIBILITY
        ===================================================== */

        :focus-visible {
            outline: 3px solid var(--teal-500);
            outline-offset: 4px;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }


/* =====================================================
   WORDPRESS / WOOCOMMERCE / CONTACT
===================================================== */

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 2000;
    padding: 8px 12px;
    background: var(--teal-500);
    color: #fff;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar .mobile-menu {
    padding-top: 142px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

body:not(.home) .site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(10, 31, 51, 0.06);
}

.header-cart {
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
}

.header-cart .cart-count {
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    margin-left: 6px;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: var(--teal-500);
    color: #fff;
    font-size: 11px;
}

.page-hero {
    padding: 160px 0 64px;
    background: var(--surface);
}

.page-hero h1 {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.page-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--gray-500);
    font-size: 18px;
}

.page-body {
    padding: 0 0 80px;
}

.prose {
    max-width: 820px;
    color: var(--gray-700);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-panel {
    padding: 36px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.wpcf7 label {
    display: block;
    margin: 0 0 16px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 700;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.woocommerce input.input-text,
.woocommerce textarea,
.select2-container .select2-selection--single {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 16px;
}

.wpcf7 textarea {
    min-height: 140px;
}

.wpcf7-submit,
.woocommerce #place_order,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce a.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px !important;
    border: 0 !important;
    border-radius: var(--radius-sm) !important;
    background: var(--navy-900) !important;
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.wpcf7-submit:hover {
    background: var(--blue-600) !important;
}

.shop-wrap {
    padding: 40px 0 100px;
}

.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.products li.product img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.products li.product .woocommerce-loop-product__title {
    padding: 20px 24px 4px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.products li.product .price {
    display: block;
    padding: 0 24px 16px;
    color: var(--navy-900);
    font-weight: 700;
}

.products li.product .button {
    margin: 0 24px 24px !important;
    width: calc(100% - 48px);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 24px 0 80px;
}

.woocommerce-info,
.woocommerce-message {
    border-top-color: var(--teal-500) !important;
    background: var(--surface) !important;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.value-card {
    padding: 32px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.value-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    object-fit: contain;
}

.value-card h3 {
    margin: 0 0 12px;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 22px;
}

.value-card p {
    margin: 0;
    color: var(--gray-500);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px 0 80px;
}

.post-card {
    padding: 28px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.button-gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

.button-gold:hover {
    background: #f0bc5e;
    color: var(--navy-950);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--white);
}

.button-ghost-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-900);
}

/* Graduation 2026 */

.graduation-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 21, 34, 0.96) 0%, rgba(7, 21, 34, 0.9) 42%, rgba(7, 21, 34, 0.45) 100%),
        var(--grad-hero-image, url("../images/design/about.jpg")) center / cover no-repeat;
}

.graduation-hero::before,
.graduation-hero::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.graduation-hero::before {
    top: -200px;
    right: -120px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(231, 168, 58, 0.25);
}

.graduation-hero::after {
    bottom: -180px;
    left: 35%;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(0, 166, 166, 0.25);
}

.graduation-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 180px 0 100px;
}

.graduation-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--gold-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.graduation-label::before {
    font-size: 15px;
    content: "✦";
}

.graduation-hero h1 {
    max-width: 12ch;
    margin: 0 0 28px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.graduation-hero h1 span {
    color: var(--teal-400);
}

.graduation-hero .hero-description {
    max-width: 680px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.graduation-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.graduation-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.graduation-date-pill {
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.graduation-date-pill strong {
    display: block;
    color: var(--gold-500);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.graduation-date-pill span {
    font-size: 14px;
}

.graduation-intro {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.intro-highlight {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 20px;
    background: var(--navy-900);
}

.intro-highlight::before {
    position: absolute;
    right: -20px;
    bottom: -65px;
    color: rgba(255, 255, 255, 0.04);
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 800;
    content: "2026";
}

.intro-highlight h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.intro-highlight p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.participating-schools {
    padding-top: 80px;
}

/*
 .school-participant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.participant-card {
    padding: 30px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: var(--white);
    text-align: center;
}

.participant-icon {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #edf8f8;
    font-size: 23px;
}

.participant-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
}

*/

.school-participant-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
	margin-top: 35px;
}

.participant-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 260px;
    padding: 35px 25px;

    background: #ffffff;
    border: 1px solid #e5ebee;
    border-radius: 18px;

    text-align: center;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Subtle top accent */
.participant-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;

    height: 3px;

    border-radius: 0 0 4px 4px;

    background: linear-gradient(
        90deg,
        #8fcac6,
        #c4e1df
    );

    opacity: 0;

    transition: opacity 0.25s ease;
}

.participant-card:hover {
    transform: translateY(-5px);

    border-color: #d8e4e6;

    box-shadow:
        0 15px 35px rgba(20, 50, 65, 0.09);
}

.participant-card:hover::before {
    opacity: 1;
}


/* =========================================
   LOGO
========================================= */

.participant-icon {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #f1f8f7;
    border: 1px solid #e2eeee;
    border-radius: 14px;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.participant-card:hover .participant-icon {
    transform: scale(1.04);
    background: #edf7f5;
}


/* Actual logo image */

.participant-icon img {
    display: block;

    width: 78px;
    height: 78px;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}


/* =========================================
   SCHOOL NAME
========================================= */

.participant-card h3 {
    margin: 0;

    max-width: 290px;

    color: #102538;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: -0.1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .school-participant-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .participant-card {
        min-height: 230px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .school-participant-grid {
        gap: 15px;
    }

    .participant-card {
        min-height: 220px;
        padding: 28px 20px;

        border-radius: 16px;
    }

    .participant-icon {
        width: 85px;
        height: 85px;

        margin-bottom: 20px;
    }

    .participant-icon img {
        width: 68px;
        height: 68px;
    }

    .participant-card h3 {
        font-size: 17px;
    }
}

/***/

.ceremony-section {
    background: var(--surface);
}

.event-grid,
.ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 42px;
    border: 1px solid var(--gray-100);
    border-top: 4px solid var(--gold-500);
    border-radius: 20px;
    background: var(--white);
}

.event-card::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 166, 166, 0.06));
    content: "";
}

.city-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    color: var(--teal-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.event-date {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.event-details-list {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.event-detail {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

.event-detail:last-child {
    border-bottom: 0;
}

.event-detail-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #edf8f8;
}

.event-detail small {
    display: block;
    margin-bottom: 4px;
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-detail strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
    line-height: 1.55;
}

.event-card .button {
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.grad-map {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: var(--teal-500);
    font-size: 14px;
    font-weight: 700;
}

.event-note {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 20px 25px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    color: var(--gray-500);
    font-size: 14px;
    text-align: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.experience-card {
    padding: 35px 25px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: var(--surface);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.experience-card:hover {
    border-color: var(--gray-100);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.experience-icon {
    margin-bottom: 22px;
    font-size: 2.3rem;
}

.experience-card h3 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.experience-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 14px;
}

.tickets-section {
    background: var(--white);
    color: var(--gray-900);
}

.tickets-section .eyebrow {
    color: var(--teal-500);
}

.tickets-section .section-title {
    color: var(--navy-900);
}

.tickets-section .section-intro {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--gray-500);
    font-size: 18px;
}

.ticket-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px;
    border-radius: 20px;
    background: var(--white);
    color: var(--gray-900);
}

.ticket-card.featured-ticket {
    border: 3px solid var(--gold-500);
}

.ticket-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff5df;
    color: #9a6613;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticket-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.ticket-price {
    margin: 18px 0 30px;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.ticket-price span {
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.ticket-features {
    display: grid;
    gap: 13px;
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.ticket-features li {
    display: flex;
    gap: 10px;
    color: var(--gray-500);
    font-size: 14px;
}

.ticket-features li::before {
    display: grid;
    flex: 0 0 20px;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e8f7f7;
    color: var(--teal-500);
    font-size: 12px;
    font-weight: 800;
    content: "✓";
}

.ticket-card .button {
    margin-top: auto;
    align-self: flex-start;
}

.policy-box {
    max-width: 950px;
    margin: 50px auto 0;
    padding: 32px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: var(--surface);
}

.policy-box h3 {
    margin: 0 0 12px;
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.policy-box p {
    margin: 0;
    color: var(--gray-500);
}

.celebration-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    text-align: center;
    background:
        linear-gradient(rgba(7, 21, 34, 0.9), rgba(7, 21, 34, 0.92)),
        var(--grad-celebration-image, url("../images/design/about.jpg")) center / cover no-repeat;
}

.celebration-content {
    max-width: 900px;
    margin: auto;
}

.celebration-section .eyebrow {
    color: var(--gold-500);
}

.celebration-section h2 {
    margin: 0 0 28px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.celebration-section p {
    max-width: 760px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.celebration-cap {
    display: block;
    margin-bottom: 25px;
    font-size: 4rem;
}

.celebration-actions {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.celebration-limited {
    margin-top: 20px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
}

@media (max-width: 1000px) {
    .intro-grid,
    .event-grid,
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

/*     .school-participant-grid {
        grid-template-columns: 1fr;
    } */

    .page-graduation .header-actions .button {
        display: none;
    }
}

@media (max-width: 700px) {
    .graduation-hero {
        min-height: auto;
        background-position: 65% center;
    }

    .graduation-hero-content {
        padding: 140px 0 80px;
    }

    .graduation-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .graduation-dates,
    .graduation-hero-actions {
        flex-direction: column;
    }

    .graduation-date-pill {
        width: 100%;
    }

    .intro-grid {
        gap: 45px;
    }

    .intro-highlight {
        padding: 35px 25px;
    }

    .event-card,
    .ticket-card {
        padding: 30px 24px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .celebration-section {
        padding: 90px 0;
    }

    .ticket-price {
        font-size: 3.2rem;
    }
}
