:root {
            --navy: #071832;
            --navy-2: #0d2447;
            --red: #e01612;
            --red-dark: #b70000;
            --ink: #111827;
            --muted: #5b6475;
            --line: rgba(7, 24, 50, 0.12);
            --paper: #ffffff;
            --soft: #f6f8fb;
            --shadow: 0 24px 70px rgba(7, 24, 50, 0.11);
            --radius: 24px;
            --max: 1120px;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
            text-rendering: geometricPrecision;
        }

        a { color: inherit; }

        .skip-link {
            position: absolute;
            left: 1rem;
            top: -4rem;
            z-index: 50;
            background: var(--paper);
            color: var(--navy);
            padding: 0.75rem 1rem;
            border-radius: 999px;
            transition: top 180ms ease;
        }

        .skip-link:focus { top: 1rem; }

        .wrap {
            width: min(calc(100% - 2rem), var(--max));
            margin-inline: auto;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--line);
        }

        .nav__inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--navy);
            font-weight: 900;
            letter-spacing: -0.04em;
        }
        
        .brand__logo {
            display: block;
            width: 220px;
            max-width: 220px;
            height: auto;
        }

        .brand__mark {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            color: var(--red);
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: 0 10px 28px rgba(7, 24, 50, 0.08);
        }

        .brand small {
            display: block;
            margin-top: 0.1rem;
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--navy);
            font-size: 0.95rem;
            font-weight: 800;
        }

        .nav__links a {
            text-decoration: none;
        }

        .nav__links a:not(.button) {
            opacity: 0.78;
        }

        .nav__links a:not(.button):hover,
        .nav__links a:not(.button):focus {
            opacity: 1;
            color: var(--red);
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            border: 1px solid transparent;
            text-decoration: none;
            font-weight: 900;
            transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
        }

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

        .button--primary {
            background: var(--red);
            color: #fff;
            box-shadow: 0 16px 34px rgba(224, 22, 18, 0.24);
        }

        .button--primary:hover,
        .button--primary:focus {
            background: var(--red-dark);
        }

        .button--light {
            background: #fff;
            color: var(--navy);
            border-color: rgba(255,255,255,0.24);
        }

        .hero {
            position: relative;
            isolation: isolate;
            color: #fff;
            background:
                radial-gradient(circle at 82% 16%, rgba(224, 22, 18, 0.72), transparent 30rem),
                linear-gradient(135deg, var(--navy) 0%, #151b35 48%, #b80707 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
            background-size: 76px 76px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 82%);
        }

        .hero__inner {
            min-height: 610px;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
            align-items: center;
            gap: clamp(2rem, 7vw, 5rem);
            padding-block: clamp(4rem, 9vw, 7rem);
        }

        .eyebrow {
            margin: 0 0 1rem;
            color: var(--red);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .hero .eyebrow {
            color: rgba(255,255,255,0.82);
        }
        
        h1, h2, h3, p { margin-top: 0; }

        h1 {
            max-width: 820px;
            margin-bottom: 1.5rem;
            font-size: clamp(3.2rem, 8.2vw, 6.8rem);
            line-height: 0.94;
            letter-spacing: -0.075em;
        }

        .hero__lead {
            max-width: 650px;
            color: rgba(255,255,255,0.87);
            font-size: clamp(1.08rem, 2vw, 1.28rem);
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .hero-card {
            position: relative;
            padding: clamp(1.4rem, 4vw, 2.4rem);
            border-radius: var(--radius);
            background: rgba(255,255,255,0.95);
            color: var(--navy);
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.42);
        }

        .hero-card h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.9rem, 3.8vw, 2.8rem);
            line-height: 1.02;
            letter-spacing: -0.065em;
        }

        .hero-card p {
            color: var(--muted);
        }

        .hero-card p:last-child {
            margin-bottom: 0;
        }
        
        .hero .hero-card .eyebrow.hero-card__eyebrow {
            color: var(--red);
        }

        .section {
            padding-block: clamp(4rem, 8vw, 6.5rem);
        }

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

        .section__header {
            max-width: 780px;
            margin-bottom: clamp(2rem, 5vw, 3.2rem);
        }

        .section__header--centre {
            margin-inline: auto;
            text-align: center;
        }

        h2 {
            margin-bottom: 1rem;
            color: var(--navy);
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1;
            letter-spacing: -0.065em;
        }

        .section__header p {
            color: var(--muted);
            font-size: 1.08rem;
        }

        .principles {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .principle {
            padding: 1.35rem;
            border-radius: 22px;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: 0 12px 34px rgba(7, 24, 50, 0.055);
        }

        .principle h3 {
            margin-bottom: 0.45rem;
            color: var(--navy);
            font-size: 1.25rem;
            line-height: 1.1;
            letter-spacing: -0.035em;
        }

        .principle p {
            margin-bottom: 0;
            color: var(--muted);
        }

        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
        }

        .venture-card {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: clamp(1.25rem, 2.4vw, 1.65rem);
            border-radius: var(--radius);
            background: #fff;
            border: 1px solid var(--line);
            text-decoration: none;
            box-shadow: 0 12px 34px rgba(7, 24, 50, 0.055);
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .venture-card:hover,
        .venture-card:focus {
            transform: translateY(-6px);
            border-color: rgba(224, 22, 18, 0.4);
            box-shadow: var(--shadow);
            outline: none;
        }

        .venture-card__mark {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            margin-bottom: 1.2rem;
            border-radius: 17px;
            background: linear-gradient(135deg, var(--navy), var(--red));
            color: #fff;
            font-weight: 950;
            letter-spacing: -0.05em;
        }

        .venture-card__type {
            margin-bottom: 0.75rem;
            color: var(--red);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .venture-card h3 {
            margin-bottom: 0.7rem;
            color: var(--navy);
            font-size: clamp(1.45rem, 2.5vw, 1.85rem);
            line-height: 1.05;
            letter-spacing: -0.055em;
        }

        .venture-card p {
            color: var(--muted);
            margin-bottom: 1.25rem;
        }

        .venture-card__action {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--line);
            color: var(--navy);
            font-weight: 950;
        }

        .venture-card__action span:last-child {
            color: var(--red);
            font-size: 1.25rem;
            transition: transform 180ms ease;
        }

        .venture-card:hover .venture-card__action span:last-child,
        .venture-card:focus .venture-card__action span:last-child {
            transform: translateX(4px);
        }

        .connected-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.1rem;
        }

        .connected-card {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: clamp(1.25rem, 2.4vw, 1.65rem);
            border-radius: var(--radius);
            background: #fff;
            border: 1px solid var(--line);
            text-decoration: none;
            box-shadow: 0 12px 34px rgba(7, 24, 50, 0.055);
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .connected-card:hover,
        .connected-card:focus {
            transform: translateY(-6px);
            border-color: rgba(224, 22, 18, 0.4);
            box-shadow: var(--shadow);
            outline: none;
        }

        .connected-card__mark {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            margin-bottom: 1.2rem;
            border-radius: 17px;
            background: #fff;
            color: var(--red);
            border: 1px solid var(--line);
            font-weight: 950;
            letter-spacing: -0.05em;
        }

        .connected-card__type {
            margin-bottom: 0.75rem;
            color: var(--red);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .connected-card h3 {
            margin-bottom: 0.7rem;
            color: var(--navy);
            font-size: clamp(1.45rem, 2.5vw, 1.85rem);
            line-height: 1.05;
            letter-spacing: -0.055em;
        }

        .connected-card p {
            color: var(--muted);
            margin-bottom: 1.25rem;
        }

        .connected-card__action {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--line);
            color: var(--navy);
            font-weight: 950;
        }

        .connected-card__action span:last-child {
            color: var(--red);
            font-size: 1.25rem;
            transition: transform 180ms ease;
        }

        .connected-card:hover .connected-card__action span:last-child,
        .connected-card:focus .connected-card__action span:last-child {
            transform: translateX(4px);
        }

        .contact-strip {
            color: #fff;
            background:
                radial-gradient(circle at 82% 20%, rgba(224,22,18,0.64), transparent 30rem),
                linear-gradient(135deg, var(--navy), #970909);
        }

        .contact-strip__inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 2rem;
            align-items: center;
        }

        .contact-strip h2 {
            color: #fff;
        }

        .contact-strip p {
            max-width: 680px;
            margin-bottom: 0;
            color: rgba(255,255,255,0.83);
            font-size: 1.08rem;
        }

        .footer {
            background: var(--navy);
            color: rgba(255,255,255,0.78);
            padding-block: 1.8rem;
            font-size: 0.95rem;
        }

        .footer__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
            font-weight: 800;
        }

        @media (max-width: 940px) {
            .hero__inner,
            .contact-strip__inner {
                grid-template-columns: 1fr;
            }

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

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

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

        @media (max-width: 680px) {
            .nav__links a:not(.button) {
                display: none;
            }

            .brand small {
                display: none;
            }
            
            .brand__logo {
                width: 180px;
                max-width: 180px;
            }

            .hero__inner {
                min-height: auto;
            }

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

            h1 {
                font-size: clamp(3rem, 16vw, 4.6rem);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }
/* Shared tidy-up layer for consistent management across the CJG sites. */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line, rgba(17, 24, 39, .14));
    border-radius: 999px;
    color: var(--navy, var(--ink, #111827));
    background: var(--paper, #fff);
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
    cursor: pointer;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle-icon {
    position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav__toggle-icon::before {
    transform: translateY(-6px);
}

.nav__toggle-icon::after {
    transform: translateY(6px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon {
    transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::after {
    transform: rotate(90deg);
}

.nav a:focus-visible,
.button:focus-visible,
.nav__toggle:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary, var(--gold, #f0b441)) 72%, white);
    outline-offset: 3px;
}

.not-found {
    min-height: 62vh;
    display: grid;
    align-items: center;
}

.not-found h1 {
    color: var(--navy, var(--ink, #111827));
    font-size: clamp(2.4rem, 7vw, 4.6rem);
    line-height: 1;
}

.not-found__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 760px) {
    .nav__inner {
        position: relative;
    }

    .nav__toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav__links {
        position: absolute;
        top: calc(100% + .75rem);
        left: 0;
        right: 0;
        z-index: 40;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: .45rem;
        padding: 1rem;
        border: 1px solid var(--line, rgba(17, 24, 39, .14));
        border-radius: min(var(--radius, 22px), 22px);
        background: var(--paper, #fff);
        box-shadow: var(--shadow, 0 22px 60px rgba(17, 24, 39, .16));
    }

    .nav__links.is-open {
        display: flex !important;
    }

    .nav__links a:not(.button) {
        display: flex !important;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: .65rem .8rem;
        border-radius: 999px;
        color: var(--navy, var(--ink, #111827));
        opacity: 1;
    }

    .nav__links .button {
        width: 100%;
        justify-content: center;
    }
}
.u-mt-sm {
    margin-top: .85rem;
}

.u-mt {
    margin-top: 1rem;
}

.u-mt-lg {
    margin-top: 1.2rem;
}

.cta__actions--start {
    justify-content: flex-start;
}

.radio-cover-widget {
    height: 150px;
}
/* Standard brand, menu and footer refinements. */
.brand__logo {
    display: block;
    width: auto;
    max-width: min(220px, 54vw);
    max-height: 58px;
    height: auto;
    object-fit: contain;
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.footer__legal {
    display: grid;
    justify-items: center;
    gap: .28rem;
    min-width: min(100%, 330px);
    text-align: center;
}

.footer__legal-main {
    color: #fff;
    font-weight: 850;
}

.footer__group {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .75rem 1.05rem;
    margin-left: auto;
    text-align: right;
}

.footer__links a,
.footer__group a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

.footer__links a:hover,
.footer__links a:focus,
.footer__group a:hover,
.footer__group a:focus {
    text-decoration: underline;
    text-underline-offset: .22em;
}

@media (max-width: 760px) {
    .brand__logo {
        max-width: min(180px, 52vw);
        max-height: 52px;
    }

    .footer__inner,
    .footer__links {
        justify-content: center;
        text-align: center;
    }

    .footer__links {
        margin-left: 0;
    }
}
.footer__right {
    display: grid;
    justify-items: center;
    gap: .42rem;
    margin-left: auto;
}

.footer__right .footer__links {
    justify-content: center;
    margin-left: 0;
    text-align: center;
}

.footer__hosted {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    text-align: center;
}

.footer__vat {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    font-weight: 760;
    text-align: center;
}

.footer__hosted a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

.footer__hosted a:hover,
.footer__hosted a:focus {
    text-decoration: underline;
    text-underline-offset: .22em;
}

@media (max-width: 760px) {
    .footer__right {
        margin-left: 0;
        width: 100%;
    }
}
