:root {
            --slate: #1f2937;
            --slate-2: #111827;
            --copper: #c9833b;
            --copper-dark: #a5682f;
            --teal: #2c7a7b;
            --sand: #f6f3ee;
            --paper: #ffffff;
            --ink: #1f2937;
            --muted: #6b7280;
            --line: rgba(31, 41, 55, 0.13);
            --shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
            --radius: 24px;
            --max: 1140px;
        }

        * { 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(--sand);
            line-height: 1.6;
            text-rendering: geometricPrecision;
        }

        a { color: inherit; }

        .skip-link {
            position: absolute;
            left: 1rem;
            top: -4rem;
            z-index: 50;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            background: var(--paper);
            color: var(--slate);
            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(246, 243, 238, 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;
            color: var(--slate);
            text-decoration: none;
            font-weight: 950;
            letter-spacing: -0.045em;
        }

        .brand__mark {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            color: var(--paper);
            background: linear-gradient(135deg, var(--slate), var(--teal));
            box-shadow: 0 14px 34px rgba(31, 41, 55, 0.13);
        }

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

        .nav__links {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.95rem;
            font-weight: 850;
        }

        .nav__links a {
            text-decoration: none;
        }

        .nav__links a:not(.button) {
            color: var(--slate);
            opacity: 0.78;
        }

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

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

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

        .button--primary {
            color: #fff;
            background: var(--copper);
            box-shadow: 0 16px 34px rgba(201, 131, 59, 0.28);
        }

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

        .button--ghost {
            color: #fff;
            border-color: rgba(255,255,255,0.28);
            background: rgba(255,255,255,0.08);
        }

        .button--light {
            color: var(--slate);
            background: var(--paper);
            border-color: rgba(255,255,255,0.3);
        }

        .hero {
            position: relative;
            isolation: isolate;
            color: #fff;
            background:
                radial-gradient(circle at 82% 20%, rgba(201, 131, 59, 0.7), transparent 30rem),
                radial-gradient(circle at 18% 82%, rgba(44, 122, 123, 0.55), transparent 30rem),
                linear-gradient(135deg, var(--slate-2) 0%, var(--slate) 52%, #2d3b50 100%);
            overflow: hidden;
        }

        .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.82), transparent 86%);
        }

        .hero__inner {
            min-height: 640px;
            display: grid;
            grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
            align-items: center;
            gap: clamp(2rem, 7vw, 5rem);
            padding-block: clamp(4rem, 9vw, 7.4rem);
        }

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

        .hero .eyebrow {
            color: rgba(255,255,255,0.84);
        }

        h1, h2, h3, p { margin-top: 0; }

        h1 {
            max-width: 840px;
            margin-bottom: 1.45rem;
            font-size: clamp(3.2rem, 8.2vw, 6.9rem);
            line-height: 0.94;
            letter-spacing: -0.078em;
        }

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

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

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

        .hero-card .eyebrow {
            color: var(--teal);
        }

        .hero-card h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.9rem, 3.7vw, 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-card__list {
            display: grid;
            gap: 0.72rem;
            margin: 1.3rem 0 0;
            padding: 0;
            list-style: none;
        }

        .hero-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 0.62rem;
            color: var(--slate);
            font-weight: 750;
        }

        .hero-card__list li::before {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            flex: 0 0 auto;
            margin-top: 0.5rem;
            border-radius: 999px;
            background: var(--copper);
        }

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

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

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

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

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

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

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

        .service-card,
        .country-card,
        .feature-pill,
        .foundation-card,
        .faq-card {
            border: 1px solid var(--line);
            background: var(--paper);
            box-shadow: 0 12px 34px rgba(31, 41, 55, 0.06);
        }

        .service-card {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: clamp(1.2rem, 2.4vw, 1.55rem);
            border-radius: var(--radius);
            color: var(--slate);
            text-decoration: none;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .service-card:hover,
        .service-card:focus {
            transform: translateY(-6px);
            border-color: rgba(201, 131, 59, 0.46);
            box-shadow: var(--shadow);
            outline: none;
        }

        .service-card__mark {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            margin-bottom: 1.1rem;
            border-radius: 17px;
            color: #fff;
            background: linear-gradient(135deg, var(--slate), var(--teal));
            font-weight: 950;
        }

        .service-card h3 {
            margin-bottom: 0.75rem;
            font-size: clamp(1.35rem, 2.4vw, 1.7rem);
            line-height: 1.05;
            letter-spacing: -0.052em;
        }

        .service-card__summary {
            color: var(--slate);
            font-weight: 850;
            line-height: 1.42;
        }

        .service-card__description {
            color: var(--muted);
        }

        .service-card ul {
            display: grid;
            gap: 0.42rem;
            margin: 0 0 1.2rem;
            padding-left: 1.1rem;
            color: var(--muted);
            font-size: 0.94rem;
        }

        .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(--slate);
            font-weight: 950;
        }

        .card-action span:last-child {
            color: var(--copper);
            font-size: 1.25rem;
            transition: transform 180ms ease;
        }

        .service-card:hover .card-action span:last-child,
        .service-card:focus .card-action span:last-child,
        .country-card:hover .card-action span:last-child,
        .country-card:focus .card-action span:last-child {
            transform: translateX(4px);
        }

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

        .foundation-card {
            padding: 1.35rem;
            border-radius: 22px;
        }

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

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

        .features-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 1.4rem;
        }

        .feature-pill {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0.52rem 0.8rem;
            border-radius: 999px;
            color: var(--slate);
            font-weight: 820;
            font-size: 0.93rem;
        }

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

        .country-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: clamp(1.25rem, 2.8vw, 1.7rem);
            border-radius: var(--radius);
            color: var(--slate);
            text-decoration: none;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .country-card:hover,
        .country-card:focus {
            transform: translateY(-5px);
            border-color: rgba(44, 122, 123, 0.46);
            box-shadow: var(--shadow);
            outline: none;
        }

        .country-card--inactive {
            cursor: default;
        }

        .country-card--inactive:hover,
        .country-card--inactive:focus {
            transform: none;
            box-shadow: 0 12px 34px rgba(31, 41, 55, 0.06);
        }

        .country-card__code {
            width: fit-content;
            margin-bottom: 1rem;
            border-radius: 999px;
            padding: 0.34rem 0.65rem;
            color: #fff;
            background: var(--teal);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .country-card h3 {
            margin-bottom: 0.55rem;
            font-size: clamp(1.45rem, 2.5vw, 1.9rem);
            line-height: 1.05;
            letter-spacing: -0.055em;
        }

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

        .split-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: clamp(1.5rem, 5vw, 4rem);
            align-items: center;
        }

        .panel {
            padding: clamp(1.5rem, 4vw, 2.6rem);
            border-radius: calc(var(--radius) + 6px);
            color: #fff;
            background:
                radial-gradient(circle at 84% 20%, rgba(201,131,59,0.65), transparent 28rem),
                linear-gradient(135deg, var(--slate-2), var(--slate));
            box-shadow: var(--shadow);
        }

        .panel h2 {
            color: #fff;
        }

        .panel p {
            color: rgba(255,255,255,0.84);
        }

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

        .faq-card {
            padding: 1.25rem;
            border-radius: 22px;
        }

        .faq-card h3 {
            margin-bottom: 0.5rem;
            color: var(--slate);
            font-size: 1.08rem;
            line-height: 1.18;
        }

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

        .cta {
            color: #fff;
            background:
                radial-gradient(circle at 82% 22%, rgba(44,122,123,0.66), transparent 30rem),
                linear-gradient(135deg, var(--slate-2), var(--copper-dark));
            text-align: center;
        }

        .cta h2 { color: #fff; }

        .cta p {
            max-width: 690px;
            margin-inline: auto;
            color: rgba(255,255,255,0.84);
            font-size: 1.08rem;
        }

        .cta__actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-top: 1.6rem;
        }

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

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

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

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

        @media (max-width: 1060px) {
            .service-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

            .foundation-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

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

            .brand small {
                display: none;
            }

            .hero__inner {
                min-height: auto;
            }

            .service-grid,
            .country-grid {
                grid-template-columns: 1fr;
            }

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

        @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%;
    }
}
