
        :root {
            --navy: #102a43;
            --navy-dark: #071a2b;
            --blue: #1f5f8b;
            --gold: #c9a227;
            --gold-light: #e5c45c;
            --text: #334e68;
            --muted: #627d98;
            --light: #f5f7fa;
            --border: #d9e2ec;
            --white: #ffffff;
            --success: #2f855a;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--text);
            background: #fff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                         Roboto, Helvetica, Arial, sans-serif;
        }

        h1, h2, h3 {
            color: var(--navy);
        }

        p {
            line-height: 1.7;
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* =========================
           HEADER
        ========================= */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255,255,255,.97);
            border-bottom: 1px solid #e9eef3;
            box-shadow: 0 2px 12px rgba(16,42,67,.06);
        }

        .nav-inner {
            max-width: 1120px;
            margin: 0 auto;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--navy);
            font-weight: 800;
            letter-spacing: .03em;
        }

        .logo-mark {
            width: 80px;
            height: 40px;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Georgia, serif;
            font-size: 21px;
            color: var(--gold);
        }

        .logo small {
            display: block;
            font-size: 9px;
            letter-spacing: .18em;
            color: var(--muted);
            margin-top: 2px;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-list a {
            display: block;
            padding: 10px 13px;
            color: var(--text);
            font-size: 14px;
        }

        .nav-list a:hover {
            color: var(--gold);
        }

        .nav-cta {
            background: var(--navy);
            color: #fff !important;
            border-radius: 3px;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 620px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background:
                linear-gradient(90deg,
                    rgba(7,26,43,.98) 0%,
                    rgba(7,26,43,.91) 48%,
                    rgba(7,26,43,.65) 100%),
                url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=85")
                center / cover no-repeat;
        }

        .hero:after {
            content: "";
            position: absolute;
            right: 8%;
            top: 15%;
            width: 230px;
            height: 310px;
            border: 1px solid rgba(229,196,92,.3);
            transform: rotate(8deg);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 780px;
            padding: 80px 24px;
        }

        .eyebrow {
            display: inline-block;
            color: var(--gold-light);
            font-size: 13px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .hero h1 {
            color: white;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.05;
            margin: 0 0 25px;
        }

        .hero h1 span {
            color: var(--gold-light);
        }

        .hero-text {
            max-width: 650px;
            color: rgba(255,255,255,.82);
            font-size: 19px;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .button-main {
            background: var(--gold);
            color: #101820;
            border-radius: 3px;
            padding: 13px 25px;
            font-weight: 700;
        }

        .button-main:hover {
            background: var(--gold-light);
        }

        .button-outline {
            border: 1px solid rgba(255,255,255,.5);
            color: white;
            background: transparent;
            border-radius: 3px;
            padding: 13px 25px;
        }

        .button-outline:hover {
            background: rgba(255,255,255,.08);
        }

        /* =========================
           STATS
        ========================= */

        .stats {
            background: var(--navy);
            color: white;
        }

        .stat {
            padding: 30px 15px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.12);
        }

        .stat:last-child {
            border-right: 0;
        }

        .stat-number {
            display: block;
            color: var(--gold-light);
            font-family: Georgia, serif;
            font-size: 30px;
            margin-bottom: 5px;
        }

        .stat-label {
            color: rgba(255,255,255,.65);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .1em;
        }

        /* =========================
           GENERAL SECTIONS
        ========================= */

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-heading {
            max-width: 700px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .section-heading .eyebrow {
            color: var(--gold);
            margin-bottom: 12px;
        }

        .section-heading h2 {
            font-family: Georgia, serif;
            font-size: 40px;
            font-weight: 400;
            margin: 0 0 15px;
        }

        .section-heading p {
            color: var(--muted);
            margin: 0;
        }

        /* =========================
           ABOUT
        ========================= */

        .about-card {
            padding: 15px 35px 15px 0;
        }

        .about-card h2 {
            font-family: Georgia, serif;
            font-size: 38px;
            font-weight: 400;
            margin-top: 0;
        }

        .about-card p {
            color: var(--muted);
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 28px 0 0;
        }

        .check-list li {
            padding: 9px 0 9px 30px;
            position: relative;
        }

        .check-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 800;
        }

        .advisor-card {
            background: var(--navy);
            color: white;
            padding: 42px;
            position: relative;
            overflow: hidden;
        }

        .advisor-card:before {
            content: "§";
            position: absolute;
            right: 25px;
            top: -25px;
            font: 180px Georgia, serif;
            color: rgba(255,255,255,.04);
        }

        .advisor-label {
            color: var(--gold-light);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .16em;
        }

        .advisor-card h3 {
            color: white;
            font-family: Georgia, serif;
            font-size: 32px;
            font-weight: 400;
            margin: 10px 0 20px;
        }

        .advisor-card p {
            color: rgba(255,255,255,.7);
        }

        .experience {
            margin-top: 28px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,.15);
        }

        .experience strong {
            display: block;
            color: var(--gold-light);
            font-size: 30px;
        }

        /* =========================
           COURSES
        ========================= */

        .course-card {
            background: white;
            border: 1px solid var(--border);
            margin: 0 8px 25px;
            height: calc(100% - 25px);
            display: flex;
            flex-direction: column;
            transition: .2s ease;
        }

        .course-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(16,42,67,.10);
        }

        .course-top {
            background: var(--navy);
            color: white;
            padding: 28px;
        }

        .course-number {
            color: var(--gold-light);
            font-size: 12px;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

        .course-top h3 {
            color: white;
            font-family: Georgia, serif;
            font-size: 26px;
            font-weight: 400;
            margin: 12px 0 0;
        }

        .course-body {
            padding: 25px 28px 30px;
            flex: 1;
        }

        .course-body p {
            color: var(--muted);
            font-size: 15px;
        }

        .course-body ul {
            padding-left: 20px;
            color: var(--text);
            line-height: 1.9;
            font-size: 14px;
        }

        .course-meta {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--muted);
        }

        .course-meta strong {
            color: var(--navy);
        }

        /* =========================
           PROGRAM
        ========================= */

        .program {
            border-left: 2px solid var(--gold);
            max-width: 820px;
            margin: auto;
        }

        .program-item {
            display: flex;
            gap: 25px;
            padding: 25px 25px 25px 30px;
            border-bottom: 1px solid var(--border);
            background: white;
        }

        .program-week {
            min-width: 90px;
            color: var(--gold);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: .08em;
        }

        .program-item h3 {
            margin: 0 0 8px;
            font-size: 19px;
        }

        .program-item p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* =========================
           PRICING
        ========================= */

        .pricing {
            max-width: 1100px;
            margin: auto;
        }

        .pricing-card {
            border: 1px solid var(--border);
            background: white;
            margin: 0 8px 25px;
            text-align: center;
            position: relative;
            height: calc(100% - 25px);
            padding-bottom: 35px;
        }

        .pricing-card.featured {
            border: 2px solid var(--gold);
            box-shadow: 0 12px 40px rgba(16,42,67,.12);
        }

        .popular {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            background: var(--gold);
            color: #111;
            padding: 7px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .12em;
        }

        .pricing-header {
            padding: 40px 20px 25px;
        }

        .featured .pricing-header {
            padding-top: 60px;
        }

        .pricing-header h3 {
            font-family: Georgia, serif;
            font-size: 25px;
            font-weight: 400;
        }

        .price {
            color: var(--navy);
            font-size: 50px;
            font-weight: 300;
            margin: 15px 0 0;
        }

        .price small {
            font-size: 14px;
            color: var(--muted);
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 0 25px 30px;
        }

        .pricing-list li {
            padding: 11px 0;
            border-bottom: 1px solid #edf1f4;
            color: var(--muted);
            font-size: 14px;
        }

        /* =========================
           TESTIMONIALS
        ========================= */

        .testimonial {
            background: white;
            border: 1px solid var(--border);
            padding: 30px;
            margin: 0 8px 25px;
            height: calc(100% - 25px);
        }

        .quote {
            font: 45px Georgia, serif;
            color: var(--gold);
            line-height: .8;
        }

        .testimonial p {
            font-family: Georgia, serif;
            color: var(--text);
            font-size: 17px;
            font-style: italic;
        }

        .person {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .person strong {
            display: block;
            color: var(--navy);
        }

        .person span {
            font-size: 12px;
            color: var(--muted);
        }

        /* =========================
           FORM
        ========================= */

        .contact-box {
            max-width: 900px;
            margin: auto;
            background: var(--navy);
            padding: 50px;
        }

        .contact-box h2 {
            color: white;
            font-family: Georgia, serif;
            font-weight: 400;
            font-size: 35px;
            margin-top: 0;
        }

        .contact-box p {
            color: rgba(255,255,255,.68);
        }

        .contact-box label {
            color: rgba(255,255,255,.8);
            font-size: 13px;
        }

        .contact-box input,
        .contact-box select,
        .contact-box textarea {
            width: 100%;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.2);
            color: white;
            border-radius: 2px;
            margin-top: 7px;
            padding: 11px;
        }

        .contact-box option {
            color: #111;
        }

        .contact-box textarea {
            min-height: 110px;
        }

        .form-row {
            margin-bottom: 17px;
        }

        .form-button {
            margin-top: 8px;
            width: 100%;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #071a2b;
            color: rgba(255,255,255,.6);
            padding: 45px 0 30px;
        }

        footer h3 {
            color: white;
            font-family: Georgia, serif;
            font-weight: 400;
        }

        footer p {
            font-size: 13px;
        }

        .legal {
            margin-top: 35px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,.1);
            font-size: 11px;
            line-height: 1.7;
        }

        .gold {
            color: var(--gold-light);
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 767px) {
            .site-header {
                position: relative;
            }

            .nav-inner {
                padding: 12px 18px;
                flex-direction: column;
                gap: 10px;
            }

            .nav-list {
                width: 100%;
                overflow-x: auto;
                justify-content: flex-start;
            }

            .nav-list a {
                white-space: nowrap;
                padding: 8px;
                font-size: 12px;
            }

            .hero {
                min-height: 570px;
            }

            .hero-content {
                padding: 70px 20px;
            }

            .hero h1 {
                font-size: 43px;
            }

            .hero-text {
                font-size: 16px;
            }

            .section {
                padding: 65px 0;
            }

            .section-heading h2,
            .about-card h2 {
                font-size: 32px;
            }

            .about-card {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .advisor-card {
                padding: 30px;
            }

            .program-item {
                flex-direction: column;
                gap: 8px;
            }

            .contact-box {
                padding: 30px 22px;
            }
        }
    