
        /* ===== CSS VARIABLES ===== */
        :root {
            --navy: #1a365d;
            --navy-deep: #0f2440;
            --navy-light: #234b7a;
            --gold: #d4af37;
            --gold-light: #f4d290;
            --gold-dark: #b8942c;
            --gold-muted: #b79554;
            --purple: #4a1e5c;
            --purple-light: #6b2e8f;
            --blue-accent: #2d5f8d;
            --white: #ffffff;
            --off-white: #f8f6f1;
            --gray-light: #f0ede6;
            --gray-medium: #8a8578;
            --gray-dark: #4a4640;
            --text-primary: #1a365d;
            --text-body: #3d3d3d;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Open Sans', 'Segoe UI', sans-serif;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-body);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-primary);
        }

        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

        /* ===== NAVIGATION ===== */
        .site-nav {
            background: var(--navy-deep);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 72px;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .nav-brand-name {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.5px;
        }

        .nav-brand-tag {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

        .nav-cta {
            background: var(--gold);
            color: var(--navy-deep) !important;
            padding: 0.6rem 1.5rem !important;
            border-radius: 3px;
            font-weight: 600 !important;
            border: none !important;
            letter-spacing: 0.3px;
        }

        .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

        /* Mobile Nav */
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: all 0.3s; }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
            color: var(--white);
            padding: 7rem 0 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: 3.2rem;
            color: var(--white);
            margin-bottom: 0.5rem;
            line-height: 1.1;
        }

        .hero h1 .gold { color: var(--gold); }

        .hero-framework {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-style: italic;
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            max-width: 540px;
        }

        .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: var(--font-body);
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 0.3px;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25); }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.4);
        }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

        .btn-navy {
            background: var(--navy);
            color: var(--white);
        }
        .btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

        /* Hero visual element */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-emblem {
            width: 380px;
            height: 380px;
            position: relative;
        }

        .hero-emblem svg { width: 100%; height: 100%; }

        /* ===== CREDIBILITY BAR ===== */
        .cred-bar {
            background: var(--off-white);
            padding: 2rem 0;
            border-bottom: 1px solid rgba(26, 54, 93, 0.08);
        }

        .cred-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            text-align: center;
        }

        .cred-item {
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-medium);
            font-weight: 500;
        }

        .cred-item strong { color: var(--navy); font-weight: 700; }
        .cred-divider { width: 1px; height: 24px; background: rgba(26, 54, 93, 0.15); }

        /* ===== SECTIONS ===== */
        section { padding: 5rem 0; }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.25rem;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray-medium);
            max-width: 650px;
            line-height: 1.7;
        }

        .section-header { margin-bottom: 3.5rem; }
        .section-header.center { text-align: center; }
        .section-header.center .section-subtitle { margin: 0 auto; }

        /* ===== PROBLEM SECTION ===== */
        .problem-section { background: var(--white); }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .problem-card {
            padding: 2.5rem;
            background: var(--off-white);
            border-radius: 4px;
            border-left: 3px solid var(--gold);
            transition: transform 0.3s ease;
        }

        .problem-card:hover { transform: translateY(-4px); }

        .problem-card h4 {
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }

        .problem-card p {
            font-size: 0.95rem;
            color: var(--gray-dark);
            line-height: 1.7;
        }

        /* ===== FRAMEWORK SECTION ===== */
        .framework-section {
            background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
            color: var(--white);
        }

        .framework-section .section-label { color: var(--gold); }
        .framework-section .section-title { color: var(--white); }
        .framework-section .section-subtitle { color: rgba(255,255,255,0.7); }

        .framework-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .element-tile {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 4px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .element-tile:hover {
            background: rgba(212, 175, 55, 0.08);
            border-color: var(--gold);
            transform: translateY(-4px);
        }

        .element-symbol { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

        .element-tile h4 {
            font-size: 1rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .element-tile p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.5;
        }

        .archetype-row {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .archetype-item {
            text-align: center;
        }

        .archetype-item h5 {
            font-size: 0.9rem;
            color: var(--gold-light);
            margin-bottom: 0.25rem;
            font-weight: 500;
        }

        .archetype-item p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
        }

        /* ===== PROGRAMMES SECTION ===== */
        .programmes-section { background: var(--off-white); }

        .programme-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .programme-card {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .programme-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }

        .programme-card-header {
            background: var(--navy);
            padding: 2rem;
            position: relative;
        }

        .programme-card-header.executive { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
        .programme-card-header.cohort { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
        .programme-card-header.lup { background: linear-gradient(135deg, var(--blue-accent), var(--navy)); }

        .programme-tier {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .programme-card-header h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .programme-card-header p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }

        .programme-card-body {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .programme-details {
            margin-bottom: 1.5rem;
        }

        .programme-detail {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            color: var(--text-body);
            border-bottom: 1px solid var(--gray-light);
        }

        .programme-detail:last-child { border-bottom: none; }

        .programme-detail .icon {
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
        }

        .programme-price {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }

        .programme-price-note {
            font-size: 0.8rem;
            color: var(--gray-medium);
            margin-bottom: 1.5rem;
        }

        .programme-card-footer {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .programme-card-footer .btn { text-align: center; width: 100%; }

        .btn-outline-navy {
            background: transparent;
            color: var(--navy);
            border: 1.5px solid var(--navy);
        }
        .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

        /* ===== DIFFERENTIATION SECTION ===== */
        .diff-section { background: var(--white); }

        .diff-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .diff-card {
            padding: 2.5rem;
            border: 1px solid var(--gray-light);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .diff-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }

        .diff-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.75rem;
        }

        .diff-card h4 { font-size: 1.15rem; margin-bottom: 0.75rem; }

        .diff-card p { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.7; }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--off-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-photo {
            width: 300px;
            height: 360px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            position: relative;
        }

        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .about-photo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
        }

        .about-text h3 { font-size: 2rem; margin-bottom: 1.25rem; }

        .about-text p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }

        .about-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }

        .cred-badge {
            background: var(--navy);
            color: var(--white);
            padding: 0.35rem 0.9rem;
            border-radius: 2px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .about-link {
            display: inline-block;
            color: var(--gold-dark);
            font-weight: 600;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gold-dark);
            margin-top: 0.5rem;
        }
        .about-link:hover { color: var(--navy); border-color: var(--navy); }

        /* ===== INSTITUTIONAL CTA ===== */
        .inst-cta {
            background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
            color: var(--white);
            text-align: center;
            padding: 5rem 0;
        }

        .inst-cta h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; }
        .inst-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
        .inst-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--navy-deep);
            color: rgba(255,255,255,0.6);
            padding: 3rem 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand-name {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 0.75rem;
        }

        .footer-section h5 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-bottom: 1rem;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .footer-section a {
            display: block;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            padding: 0.25rem 0;
        }
        .footer-section a:hover { color: var(--gold); }

        .footer-section p {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        .footer-symbols { letter-spacing: 8px; font-size: 1.1rem; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .framework-grid { grid-template-columns: repeat(3, 1fr); }
            .programme-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: block; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--navy-deep);
                padding: 1.5rem 2rem;
                border-top: 1px solid rgba(212, 175, 55, 0.15);
            }

            .hero { padding: 4rem 0 3rem; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 2.4rem; }
            .hero-description { margin: 0 auto 2rem; }
            .hero-ctas { justify-content: center; }
            .hero-visual { display: none; }

            .section-title { font-size: 2rem; }
            .problem-grid { grid-template-columns: 1fr; }
            .framework-grid { grid-template-columns: repeat(2, 1fr); }
            .archetype-row { flex-wrap: wrap; gap: 1.5rem; }
            .diff-grid { grid-template-columns: 1fr; }
            .about-grid { grid-template-columns: 1fr; }
            .about-photo { margin: 0 auto; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; }
            .cred-divider { display: none; }
            .cred-inner { gap: 1.5rem; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .framework-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ===== ANIMATION ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-in {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
    

/* ============================================================
   LEADER REBUILD — additions (2026). Nothing above is altered.
   ============================================================ */

.page-hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    padding: 8rem 0 5rem;
    text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; }
.page-hero .hero-framework { justify-content: center; }
.page-hero p {
    color: rgba(255,255,255,.88); max-width: 720px; margin: 0 auto 1.25rem;
    font-size: 1.1rem; line-height: 1.75;
}

.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--text-body); }
.prose h3 { font-family: var(--font-heading); color: var(--navy); font-size: 1.5rem; margin: 2.75rem 0 1rem; }
.prose ul { margin: 0 0 1.5rem 1.25rem; }
.prose li { margin-bottom: .75rem; line-height: 1.8; color: var(--text-body); }
.prose strong { color: var(--navy); }

.panel {
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    padding: 2.25rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}
.panel h4 {
    font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark);
    margin: 0 0 .9rem 0;
}
.panel p:last-child, .panel ul:last-child { margin-bottom: 0; }

.panel-dark {
    background: var(--navy); color: rgba(255,255,255,.9);
    border-left: 4px solid var(--gold);
    padding: 2.25rem 2.5rem; margin: 2.5rem 0; border-radius: 4px;
}
.panel-dark h4 { color: var(--gold-light); font-family: var(--font-body); font-size: .78rem;
    font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .9rem 0; }
.panel-dark p { color: rgba(255,255,255,.9); }
.panel-dark p:last-child { margin-bottom: 0; }
.panel-dark a { color: var(--gold-light); }

.spec-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.spec-table td { padding: .95rem 1rem; border-bottom: 1px solid var(--gray-light); vertical-align: top; }
.spec-table td.k {
    width: 40%; font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark);
}
.spec-table td.v { color: var(--text-body); }

.phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.phase {
    background: var(--white); border-top: 3px solid var(--gold);
    padding: 1.75rem; border-radius: 4px; box-shadow: 0 2px 10px rgba(26,54,93,.06);
}
.phase .p-name { font-family: var(--font-heading); color: var(--navy); font-size: 1.25rem; margin-bottom: .35rem; }
.phase .p-lit { font-style: italic; color: var(--gray-medium); font-size: .85rem; margin-bottom: .75rem; }
.phase p { color: var(--text-body); font-size: .95rem; line-height: 1.7; margin: 0; }

.lib-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.lib-card {
    background: var(--white); border: 1px solid var(--gray-light);
    border-top: 3px solid var(--gold); border-radius: 4px; padding: 2rem;
    display: flex; flex-direction: column;
}
.lib-card h4 { font-family: var(--font-heading); color: var(--navy); font-size: 1.3rem; margin-bottom: .75rem; }
.lib-card p { color: var(--text-body); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.lib-card .btn { align-self: flex-start; }

/* Forms */
.vl-form { max-width: 620px; margin: 0 auto; }
.vl-form label { display:block; font-weight:600; margin-bottom:.4rem; color: var(--navy); }
.vl-form input, .vl-form select, .vl-form textarea {
    width:100%; padding:.9rem 1rem; margin-bottom:1.25rem;
    border:1px solid var(--gray-light); border-radius:4px;
    font-family: var(--font-body); font-size:1rem; background:#fff; color: var(--text-body);
}
.vl-form input:focus, .vl-form select:focus, .vl-form textarea:focus {
    outline:none; border-color: var(--gold); box-shadow:0 0 0 3px rgba(212,175,55,.15);
}
.vl-form textarea { min-height:170px; resize:vertical; }
.vl-form button { border:0; cursor:pointer; font-family: var(--font-body); width:100%; }
.vl-hp { position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.vl-note { font-size:.88rem; color: var(--gray-medium); margin:-.5rem 0 1.5rem; }
.vl-msg { padding:1rem 1.25rem; border-radius:4px; margin-bottom:1.5rem; display:none; max-width:620px; margin-left:auto; margin-right:auto; }
.vl-msg.ok { display:block; background: var(--off-white); border-left:4px solid var(--gold); }
.vl-msg.err { display:block; background:rgba(180,40,40,.06); border-left:4px solid #b42828; }
.vl-form .field-error { border-color:#b42828; }
.field-error { border-color:#b42828 !important; }
