:root {
    --navy-950: #041226;
    --navy-900: #0a1f3c;
    --navy-850: #0d294a;
    --navy-800: #123455;
    --gold-600: #b97800;
    --gold-500: #c79a2e;
    --gold-400: #e1c37d;
    --gold-300: #eed89f;
    --white: #ffffff;
    --off-white: #f8f8f6;
    --mist: #eef1f4;
    --slate: #5f6b7a;
    --text: #142039;
    --border: rgba(10, 31, 60, 0.12);
    --shadow-sm: 0 12px 30px rgba(4, 18, 38, 0.08);
    --shadow-lg: 0 30px 80px rgba(4, 18, 38, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1240px;
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
.brand-name {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 6px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 31, 60, 0.08);
    backdrop-filter: blur(18px);
}

.header-shell {
    width: min(calc(100% - 40px), 1380px);
    min-height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    width: 62px;
    height: 64px;
    flex: 0 0 auto;
}

.brand-globe {
    position: absolute;
    inset: 2px 4px 11px;
    border: 2px solid var(--navy-900);
    border-radius: 50%;
}

.brand-globe::before,
.brand-globe::after {
    content: "";
    position: absolute;
    inset: 5px 16px;
    border-left: 1px solid var(--navy-900);
    border-right: 1px solid var(--navy-900);
    border-radius: 50%;
}

.brand-globe::after {
    inset: 17px 3px;
    border: 0;
    border-top: 1px solid var(--navy-900);
    border-bottom: 1px solid var(--navy-900);
}

.brand-book {
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 1px;
    height: 25px;
    background:
        linear-gradient(145deg, transparent 44%, var(--navy-900) 45% 52%, transparent 53%)
        left / 50% 100% no-repeat,
        linear-gradient(215deg, transparent 44%, var(--navy-900) 45% 52%, transparent 53%)
        right / 50% 100% no-repeat;
}

.brand-arrow {
    position: absolute;
    right: 0;
    top: 17px;
    color: var(--gold-500);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    color: var(--navy-900);
}

.brand-name {
    font-size: 40px;
    line-height: 0.86;
    letter-spacing: 0.05em;
}

.brand-full {
    margin-top: 8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 27px);
}

.primary-navigation a {
    position: relative;
    padding-block: 35px 31px;
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;
    height: 2px;
    background: var(--gold-500);
    transition: right 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
    right: 0;
}

.header-cta {
    padding-inline: 24px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--navy-900);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.button {
    min-height: 48px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background:
        linear-gradient(135deg, var(--gold-600), var(--gold-500));
    box-shadow: 0 12px 24px rgba(185, 120, 0, 0.22);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(185, 120, 0, 0.32);
}

.button-outline {
    color: var(--white);
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
    background: rgba(199, 154, 46, 0.12);
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 25%, rgba(225, 195, 125, 0.24), transparent 20%),
        radial-gradient(circle at 72% 70%, rgba(18, 52, 85, 0.72), transparent 35%),
        linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 46%, #17446b 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 18, 38, 0.95) 0%, rgba(4, 18, 38, 0.62) 52%, rgba(4, 18, 38, 0.1) 100%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 36px;
    right: 5%;
    width: 620px;
    height: 360px;
    opacity: 0.17;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.72) 1.2px, transparent 1.5px);
    background-size: 14px 14px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
    align-items: center;
    gap: 70px;
    padding-block: 82px 92px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(50px, 5.5vw, 78px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.hero h1 span {
    display: block;
}

.hero-introduction {
    max-width: 670px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.72;
}

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

.hero-trust {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-trust div {
    position: relative;
    padding-left: 16px;
}

.hero-trust div::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 2px;
    background: var(--gold-500);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-trust span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 365px;
    height: 365px;
    border: 1px solid rgba(225, 195, 125, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        inset 0 0 80px rgba(225, 195, 125, 0.08),
        0 0 100px rgba(225, 195, 125, 0.09);
}

.hero-globe::before,
.hero-globe::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(225, 195, 125, 0.4);
    border-radius: 50%;
}

.hero-globe::before {
    inset: 24px 112px;
}

.hero-globe::after {
    inset: 112px 24px;
}

.globe-line,
.globe-axis {
    position: absolute;
    display: block;
}

.globe-line {
    left: 24px;
    right: 24px;
    height: 1px;
    background: rgba(225, 195, 125, 0.38);
}

.globe-line-one {
    top: 29%;
}

.globe-line-two {
    top: 50%;
}

.globe-line-three {
    top: 71%;
}

.globe-axis {
    top: 15px;
    bottom: 15px;
    left: 50%;
    width: 1px;
    background: rgba(225, 195, 125, 0.42);
    transform: rotate(24deg);
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
}

.hero-orbit-one {
    width: 505px;
    height: 250px;
}

.hero-orbit-two {
    width: 570px;
    height: 315px;
    transform: translate(-50%, -50%) rotate(24deg);
}

.hero-card {
    position: absolute;
    z-index: 3;
    color: var(--white);
    border: 1px solid rgba(225, 195, 125, 0.35);
    background:
        linear-gradient(145deg, rgba(18, 52, 85, 0.96), rgba(4, 18, 38, 0.96));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.hero-card-main {
    right: 0;
    bottom: 58px;
    width: 290px;
    padding: 28px;
    border-radius: 16px;
}

.hero-card-icon {
    color: var(--gold-400);
    font-size: 34px;
}

.hero-card-main p {
    margin: 10px 0 5px;
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-card-main strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
}

.hero-card-small {
    width: 196px;
    padding: 16px 18px;
    border-radius: 12px;
}

.hero-card-small span,
.hero-card-small strong {
    display: block;
}

.hero-card-small span {
    color: var(--gold-400);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card-small strong {
    margin-top: 4px;
    font-size: 13px;
}

.hero-card-leadership {
    top: 75px;
    left: 0;
}

.hero-card-growth {
    top: 170px;
    right: 0;
}

.hero-bottom-line {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.principles {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.principles-grid {
    min-height: 102px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}

.principle {
    position: relative;
    padding: 23px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.principle:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    bottom: 27px;
    width: 1px;
    background: var(--border);
}

.principle-icon {
    min-width: 42px;
    color: var(--gold-500);
    font-family: Georgia, serif;
    font-size: 29px;
    text-align: center;
}

.principle h2 {
    margin-bottom: 2px;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.principle p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 11px;
    line-height: 1.45;
}

.section {
    padding-block: 96px;
}

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

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

.section-heading h2,
.section-header h2,
.corporate-content h2,
.enquiry-content h2 {
    margin-bottom: 0;
    color: var(--navy-900);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-heading h2 span,
.corporate-content h2 span,
.enquiry-content h2 span {
    display: block;
    color: var(--gold-600);
}

.introduction-copy {
    padding-top: 28px;
    font-size: 17px;
}

.introduction-copy p {
    color: var(--slate);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold-600);
    transition: transform 160ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.programmes-section {
    background:
        radial-gradient(circle at 0 0, rgba(225, 195, 125, 0.13), transparent 30%),
        var(--white);
}

.section-header {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 470px);
    align-items: end;
    gap: 70px;
}

.section-header h2 {
    font-size: clamp(40px, 4vw, 56px);
}

.section-header > p {
    margin-bottom: 4px;
    color: var(--slate);
    font-size: 16px;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.programme-card {
    position: relative;
    min-height: 310px;
    padding: 30px 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(4, 18, 38, 0.04);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.programme-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(199, 154, 46, 0.16);
    border-radius: 50%;
}

.programme-card:hover {
    transform: translateY(-7px);
    border-color: rgba(199, 154, 46, 0.5);
    box-shadow: 0 22px 45px rgba(4, 18, 38, 0.11);
}

.programme-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(10, 31, 60, 0.25);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.programme-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    color: var(--gold-600);
    border: 1px solid rgba(199, 154, 46, 0.35);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 800;
    background: rgba(225, 195, 125, 0.09);
}

.programme-card h3 {
    margin-bottom: 12px;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.programme-card p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
}

.masterclasses-section {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 10%, rgba(225, 195, 125, 0.14), transparent 25%),
        linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.section-header-light h2,
.section-header-light > p {
    color: var(--white);
}

.section-header-light > p {
    opacity: 0.72;
}

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

.masterclass-card {
    min-height: 285px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.masterclass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 195, 125, 0.42);
    background: rgba(255, 255, 255, 0.07);
}

.masterclass-featured {
    background:
        linear-gradient(145deg, rgba(199, 154, 46, 0.19), rgba(255, 255, 255, 0.04));
}

.card-label {
    margin-bottom: 24px;
    color: var(--gold-400);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.masterclass-card h3 {
    margin-bottom: 14px;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
}

.masterclass-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.masterclass-card a {
    margin-top: auto;
    padding-top: 18px;
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-training-note {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: center;
}

.corporate-section {
    overflow: hidden;
    background: var(--off-white);
}

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

.corporate-content h2 {
    margin-bottom: 24px;
}

.corporate-content > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--slate);
    font-size: 17px;
}

.check-list {
    margin: 30px 0 34px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 29px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--gold-500);
    font-size: 11px;
}

.corporate-panel {
    position: relative;
    min-height: 480px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 80% 15%, rgba(225, 195, 125, 0.22), transparent 28%),
        linear-gradient(145deg, var(--navy-800), var(--navy-950));
    box-shadow: var(--shadow-lg);
}

.corporate-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(225, 195, 125, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(225, 195, 125, 0.035),
        0 0 0 70px rgba(225, 195, 125, 0.025);
}

.corporate-panel-top {
    position: relative;
    z-index: 2;
}

.corporate-panel-top span {
    display: block;
    font-family: Georgia, serif;
    font-size: 48px;
    letter-spacing: 0.08em;
}

.corporate-panel-top small {
    color: var(--gold-400);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.corporate-panel blockquote {
    position: relative;
    z-index: 2;
    margin: 50px 0;
    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.45;
}

.corporate-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.corporate-metrics div {
    padding: 20px 12px 0;
}

.corporate-metrics div:first-child {
    padding-left: 0;
}

.corporate-metrics strong,
.corporate-metrics span {
    display: block;
}

.corporate-metrics strong {
    color: var(--gold-400);
    font-size: 12px;
    text-transform: uppercase;
}

.corporate-metrics span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

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

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.delivery-grid article {
    min-height: 220px;
    padding: 28px 24px;
    background: var(--white);
}

.delivery-grid article:not(:last-child) {
    border-right: 1px solid var(--border);
}

.country-code {
    min-width: 52px;
    height: 34px;
    margin-bottom: 26px;
    padding-inline: 9px;
    display: inline-grid;
    place-items: center;
    color: var(--gold-600);
    border: 1px solid rgba(199, 154, 46, 0.35);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
}

.delivery-grid h3 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
}

.delivery-grid p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 13px;
}

.leadership-section {
    background:
        linear-gradient(180deg, var(--off-white), var(--white));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    min-height: 150px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.team-card-featured {
    border-color: rgba(199, 154, 46, 0.42);
    background:
        linear-gradient(145deg, rgba(225, 195, 125, 0.15), var(--white));
}

.team-avatar {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--gold-400);
    border: 1px solid rgba(225, 195, 125, 0.3);
    border-radius: 50%;
    background: var(--navy-900);
    font-family: Georgia, serif;
    font-size: 19px;
}

.team-card h3 {
    margin-bottom: 4px;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
}

.team-card p {
    margin-bottom: 0;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.5;
}

.enquiry-section {
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, rgba(225, 195, 125, 0.14), transparent 25%),
        linear-gradient(145deg, var(--navy-950), var(--navy-850));
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.enquiry-content h2 {
    margin-bottom: 24px;
    color: var(--white);
}

.enquiry-content h2 span {
    color: var(--gold-400);
}

.enquiry-content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.enquiry-points {
    margin-top: 40px;
    display: grid;
    gap: 18px;
}

.enquiry-points div {
    padding: 18px 20px;
    border-left: 2px solid var(--gold-500);
    background: rgba(255, 255, 255, 0.035);
}

.enquiry-points strong,
.enquiry-points span {
    display: block;
}

.enquiry-points strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.enquiry-points span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.enquiry-form {
    padding: 38px;
    color: var(--text);
    border: 1px solid rgba(225, 195, 125, 0.26);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.form-heading {
    margin-bottom: 26px;
}

.form-heading span {
    color: var(--navy-900);
    font-family: Georgia, serif;
    font-size: 30px;
}

.form-heading p {
    margin: 5px 0 0;
    color: var(--slate);
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid label {
    display: grid;
    gap: 7px;
}

.form-grid label > span {
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-field-wide {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    color: var(--text);
    border: 1px solid rgba(10, 31, 60, 0.16);
    border-radius: 6px;
    outline: none;
    background: #fbfcfd;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

input,
select {
    height: 50px;
    padding: 0 14px;
}

textarea {
    min-height: 130px;
    padding: 13px 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(199, 154, 46, 0.12);
}

.form-button {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    margin: 14px 0 0;
    color: var(--slate);
    font-size: 11px;
    text-align: center;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #020c1b;
}

.footer-main {
    padding-block: 72px;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
    gap: 58px;
}

.brand-footer .brand-copy,
.brand-footer .brand-globe,
.brand-footer .brand-globe::before,
.brand-footer .brand-globe::after {
    color: var(--white);
    border-color: var(--white);
}

.brand-footer .brand-book {
    filter: brightness(0) invert(1);
}

.footer-brand > p {
    max-width: 390px;
    margin: 28px 0 0;
    font-size: 13px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
    margin-bottom: 9px;
    color: var(--white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    margin: 0;
    font-size: 13px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
}

@media (max-width: 1220px) {
    .primary-navigation {
        gap: 15px;
    }

    .primary-navigation a {
        font-size: 10px;
    }

    .header-cta {
        padding-inline: 16px;
    }

    .programme-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 80px;
    }

    .header-shell {
        min-height: var(--header-height);
    }

    .brand-mark {
        width: 52px;
        height: 55px;
    }

    .brand-name {
        font-size: 32px;
    }

    .brand-full {
        font-size: 7px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(390px, 100%);
        padding: 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -24px 30px 60px rgba(4, 18, 38, 0.18);
        transform: translateX(105%);
        transition: transform 220ms ease;
    }

    .primary-navigation.is-open {
        transform: translateX(0);
    }

    .primary-navigation a {
        padding: 18px 4px;
        border-bottom: 1px solid var(--border);
        font-size: 12px;
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 80px;
    }

    .hero-visual {
        min-height: 470px;
    }

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

    .principle:nth-child(2)::after,
    .principle:nth-child(4)::after {
        display: none;
    }

    .principle {
        border-bottom: 1px solid var(--border);
    }

    .introduction-layout,
    .corporate-layout,
    .enquiry-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .delivery-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .delivery-grid article:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

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

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

@media (max-width: 680px) {
    .container,
    .header-shell {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-full {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
        padding-block: 64px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .hero-introduction {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-visual {
        min-height: 390px;
        transform: scale(0.88);
        transform-origin: center top;
    }

    .hero-globe {
        width: 290px;
        height: 290px;
    }

    .hero-orbit-one {
        width: 360px;
        height: 190px;
    }

    .hero-orbit-two {
        width: 395px;
        height: 235px;
    }

    .hero-card-main {
        right: -22px;
        bottom: 36px;
        width: 236px;
        padding: 20px;
    }

    .hero-card-main strong {
        font-size: 20px;
    }

    .hero-card-small {
        width: 170px;
    }

    .hero-card-leadership {
        left: -20px;
    }

    .hero-card-growth {
        right: -20px;
    }

    .principles-grid,
    .programme-grid,
    .masterclass-grid,
    .delivery-grid,
    .team-grid,
    .form-grid,
    .check-list,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .principle::after {
        display: none;
    }

    .principle {
        min-height: 88px;
    }

    .section {
        padding-block: 72px;
    }

    .introduction-layout {
        gap: 25px;
    }

    .section-heading h2,
    .section-header h2,
    .corporate-content h2,
    .enquiry-content h2 {
        font-size: 40px;
    }

    .programme-card {
        min-height: auto;
    }

    .masterclass-card {
        min-height: 250px;
    }

    .corporate-panel {
        min-height: 430px;
        padding: 32px 26px;
    }

    .corporate-panel blockquote {
        font-size: 23px;
    }

    .corporate-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .corporate-metrics div {
        padding: 12px 0 0;
    }

    .delivery-grid article:nth-child(odd) {
        border-right: 0;
    }

    .delivery-grid article:last-child {
        border-bottom: 0;
    }

    .form-field-wide {
        grid-column: auto;
    }

    .enquiry-form {
        padding: 26px 20px;
    }

    .footer-main {
        gap: 36px;
    }

    .footer-bottom {
        padding-block: 24px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   IBLA ORIGINAL BRAND ASSETS
   ========================================================= */

.brand-header {
    width: clamp(185px, 17vw, 235px);
    height: 82px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo-header {
    max-height: 78px;
    object-position: left center;
}

.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-mark {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    object-fit: contain;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer-brand-copy strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0.08em;
}

.footer-brand-copy span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

@media (max-width: 1220px) {
    .brand-header {
        width: 190px;
    }
}

@media (max-width: 1020px) {
    .brand-header {
        width: 185px;
        height: 68px;
    }

    .brand-logo-header {
        max-height: 66px;
    }
}

@media (max-width: 680px) {
    .brand-header {
        width: 158px;
        height: 60px;
    }

    .brand-logo-header {
        max-height: 57px;
    }

    .footer-logo-mark {
        width: 60px;
        height: 60px;
    }

    .footer-brand-copy strong {
        font-size: 28px;
    }
}

/* =========================================================
   IBLA FOOTER LOGO
   ========================================================= */

.brand-footer {
    width: min(100%, 290px);
    display: inline-flex;
    align-items: center;
}

.brand-logo-footer {
    width: 100%;
    max-width: 290px;
    height: auto;
    max-height: 105px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 1020px) {
    .brand-footer {
        width: min(100%, 260px);
    }

    .brand-logo-footer {
        max-width: 260px;
        max-height: 95px;
    }
}

@media (max-width: 680px) {
    .brand-footer {
        width: min(100%, 230px);
    }

    .brand-logo-footer {
        max-width: 230px;
        max-height: 86px;
    }
}

/* =========================================================
   IBLA APPROVED PHOTOGRAPHIC HERO
   Visual source of truth: approved homepage mockup
   ========================================================= */

.hero {
    min-height: 610px;
    background-image:
        linear-gradient(
            90deg,
            rgba(4, 18, 38, 0.99) 0%,
            rgba(5, 22, 43, 0.96) 33%,
            rgba(6, 27, 51, 0.76) 53%,
            rgba(7, 30, 53, 0.22) 76%,
            rgba(7, 30, 53, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 18, 38, 0.08) 0%,
            rgba(4, 18, 38, 0.18) 100%
        ),
        url("../images/home/ibla-home-hero.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 38, 0.32) 0%,
            transparent 58%
        );
}

.hero-pattern {
    display: none;
}

.hero-layout {
    min-height: 610px;
    grid-template-columns: minmax(520px, 0.93fr) minmax(390px, 1.07fr);
    gap: 40px;
    padding-block: 76px 82px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero .eyebrow {
    margin-bottom: 17px;
    color: var(--gold-400);
    font-size: 11px;
    letter-spacing: 0.16em;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 22px;
    font-size: clamp(52px, 5vw, 75px);
    line-height: 1.01;
    text-wrap: balance;
}

.hero-introduction {
    max-width: 625px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions .button {
    min-width: 180px;
}

.hero-trust {
    display: none;
}

.hero-visual {
    position: relative;
    min-height: 455px;
    pointer-events: none;
}

.hero-insight-card {
    position: absolute;
    right: 14px;
    bottom: 22px;
    width: 294px;
    min-height: 96px;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--white);
    border: 1px solid rgba(225, 195, 125, 0.32);
    border-radius: 5px;
    background:
        linear-gradient(
            135deg,
            rgba(11, 41, 73, 0.94),
            rgba(4, 18, 38, 0.94)
        );
    box-shadow: 0 22px 50px rgba(2, 12, 27, 0.36);
    backdrop-filter: blur(12px);
}

.hero-insight-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--gold-400);
    border: 1px solid rgba(225, 195, 125, 0.26);
    border-radius: 50%;
}

.hero-insight-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.hero-insight-copy {
    display: flex;
    flex-direction: column;
}

.hero-insight-copy small {
    margin-bottom: 3px;
    color: var(--gold-400);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-insight-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.hero-bottom-line {
    height: 3px;
}

@media (max-width: 1020px) {
    .hero {
        background-position: 61% center;
    }

    .hero-layout {
        min-height: 650px;
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
        gap: 20px;
    }

    .hero h1 {
        font-size: clamp(47px, 7vw, 66px);
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-insight-card {
        right: 0;
        bottom: 18px;
        width: 255px;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
        background-image:
            linear-gradient(
                180deg,
                rgba(4, 18, 38, 0.98) 0%,
                rgba(4, 18, 38, 0.92) 55%,
                rgba(4, 18, 38, 0.64) 100%
            ),
            url("../images/home/ibla-home-hero.webp");
        background-size: auto 100%;
        background-position: 66% center;
    }

    .hero-layout {
        min-height: 720px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 12px;
        padding-block: 58px 42px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        max-width: 580px;
        font-size: clamp(43px, 12vw, 59px);
    }

    .hero-introduction {
        max-width: 520px;
        font-size: 15px;
    }

    .hero-visual {
        min-height: 190px;
        transform: none;
    }

    .hero-insight-card {
        right: 0;
        bottom: 0;
        width: min(290px, 88vw);
    }
}

/* IBLA HERO RESPONSIVE POLISH START */

/* ---------------------------------------------------------
   Desktop header refinement
   --------------------------------------------------------- */

:root {
    --header-height: 88px;
}

.header-shell {
    min-height: var(--header-height);
}

.brand-header {
    width: 218px;
    height: 76px;
}

.brand-logo-header {
    max-height: 72px;
}

.primary-navigation a {
    padding-block: 31px 27px;
}

.primary-navigation a::after {
    bottom: 18px;
}

.header-cta {
    min-height: 46px;
    padding: 12px 22px;
}

/* ---------------------------------------------------------
   Desktop hero refinement
   --------------------------------------------------------- */

.hero {
    min-height: 540px;
    background-position: center center;
}

.hero-layout {
    min-height: 540px;
    grid-template-columns: minmax(500px, 0.92fr) minmax(400px, 1.08fr);
    gap: 34px;
    padding-block: 62px 68px;
}

.hero-content {
    max-width: 660px;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(51px, 4.7vw, 70px);
    line-height: 1.01;
}

.hero-introduction {
    max-width: 590px;
    margin-bottom: 27px;
    font-size: 15.5px;
    line-height: 1.62;
}

.hero-actions {
    gap: 12px;
}

.hero-actions .button {
    min-width: 176px;
    min-height: 46px;
    padding: 12px 21px;
}

.hero-visual {
    min-height: 410px;
}

.hero-insight-card {
    right: 8px;
    bottom: 12px;
    width: 270px;
    min-height: 92px;
    padding: 17px 19px;
}

.hero-insight-icon {
    width: 45px;
    height: 45px;
}

.hero-insight-icon svg {
    width: 28px;
    height: 28px;
}

.hero-insight-copy strong {
    font-size: 17px;
}

/* ---------------------------------------------------------
   Desktop principles strip
   --------------------------------------------------------- */

.principles-grid {
    min-height: 92px;
}

.principle {
    padding: 20px 17px;
    gap: 12px;
}

.principle-icon {
    min-width: 38px;
    font-size: 26px;
}

.principle h2 {
    font-size: 10px;
}

.principle p {
    font-size: 10.5px;
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 1180px) {
    .brand-header {
        width: 190px;
    }

    .primary-navigation {
        gap: 13px;
    }

    .primary-navigation a {
        font-size: 9.5px;
    }

    .hero {
        background-position: 58% center;
    }

    .hero-layout {
        grid-template-columns: minmax(450px, 1fr) minmax(310px, 0.75fr);
    }

    .hero-insight-card {
        width: 245px;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 76px;
    }

    .header-shell {
        min-height: var(--header-height);
    }

    .brand-header {
        width: 176px;
        height: 64px;
    }

    .brand-logo-header {
        max-height: 61px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 9px;
    }

    .primary-navigation {
        top: var(--header-height);
    }

    .hero {
        min-height: 570px;
        background-position: 61% center;
    }

    .hero-layout {
        min-height: 570px;
        grid-template-columns: minmax(420px, 1fr) minmax(250px, 0.55fr);
        gap: 16px;
        padding-block: 58px 58px;
    }

    .hero h1 {
        font-size: clamp(46px, 6.5vw, 62px);
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-insight-card {
        right: 0;
        bottom: 8px;
        width: 232px;
    }

    .principles {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .principles-grid {
        width: max-content;
        min-width: 100%;
        grid-template-columns: repeat(5, minmax(210px, 1fr));
    }

    .principle {
        min-height: 90px;
        border-bottom: 0;
    }

    .principle:nth-child(2)::after,
    .principle:nth-child(4)::after {
        display: block;
    }
}

/* ---------------------------------------------------------
   Mobile header
   --------------------------------------------------------- */

@media (max-width: 760px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        min-height: var(--header-height);
    }

    .header-shell {
        width: calc(100% - 24px);
        min-height: var(--header-height);
        gap: 10px;
    }

    .brand-header {
        width: 154px;
        height: 56px;
        flex: 0 0 154px;
        overflow: visible;
    }

    .brand-logo-header {
        width: 154px;
        max-width: 154px;
        max-height: 46px;
        object-fit: contain;
        object-position: left center;
    }

    .menu-toggle {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin-left: auto;
    }

    .primary-navigation {
        top: var(--header-height);
        width: min(340px, 100%);
        padding: 18px 22px 30px;
    }

    .primary-navigation a {
        padding: 15px 3px;
        font-size: 11px;
    }

    /* -----------------------------------------------------
       Mobile hero
       ----------------------------------------------------- */

    .hero {
        min-height: 640px;
        background-image:
            linear-gradient(
                90deg,
                rgba(4, 18, 38, 0.98) 0%,
                rgba(4, 18, 38, 0.92) 45%,
                rgba(4, 18, 38, 0.58) 100%
            ),
            linear-gradient(
                180deg,
                rgba(4, 18, 38, 0.08) 0%,
                rgba(4, 18, 38, 0.38) 100%
            ),
            url("../images/home/ibla-home-hero.webp");
        background-size: auto 100%;
        background-position: 64% center;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(4, 18, 38, 0.12) 0%,
                rgba(4, 18, 38, 0.34) 100%
            );
    }

    .hero-layout {
        min-height: 640px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 20px;
        padding-block: 46px 32px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero .eyebrow {
        margin-bottom: 13px;
        font-size: 9px;
        line-height: 1.5;
    }

    .hero h1 {
        max-width: 390px;
        margin-bottom: 17px;
        font-size: clamp(40px, 12vw, 53px);
        line-height: 1.01;
    }

    .hero-introduction {
        max-width: 375px;
        margin-bottom: 23px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 14px;
        line-height: 1.58;
    }

    .hero-actions {
        width: min(100%, 355px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        margin: 0;
        padding: 12px 16px;
        isolation: isolate;
        background-clip: padding-box;
    }

    .hero-actions .button-primary {
        background:
            linear-gradient(135deg, var(--gold-600), var(--gold-500));
    }

    .hero-actions .button-outline {
        color: var(--white);
        border: 1px solid var(--gold-500);
        background: rgba(4, 18, 38, 0.78);
        box-shadow: none;
    }

    .hero-visual {
        min-height: 135px;
        margin: 0;
        transform: none;
    }

    .hero-insight-card {
        right: auto;
        bottom: 0;
        left: 0;
        width: min(100%, 310px);
        min-height: 82px;
        padding: 14px 16px;
        border-radius: 5px;
    }

    .hero-insight-icon {
        width: 40px;
        height: 40px;
    }

    .hero-insight-icon svg {
        width: 25px;
        height: 25px;
    }

    .hero-insight-copy small {
        font-size: 8px;
    }

    .hero-insight-copy strong {
        font-size: 15px;
    }

    /* -----------------------------------------------------
       Mobile horizontal principles strip
       ----------------------------------------------------- */

    .principles {
        overflow-x: auto;
        background: var(--white);
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .principles-grid {
        width: max-content;
        min-width: 0;
        grid-template-columns: repeat(5, 230px);
    }

    .principle {
        min-height: 88px;
        padding: 18px 16px;
        scroll-snap-align: start;
        border-bottom: 0;
    }

    .principle:not(:last-child)::after,
    .principle:nth-child(2)::after,
    .principle:nth-child(4)::after {
        top: 20px;
        right: 0;
        bottom: 20px;
        display: block;
    }

    .principle-icon {
        min-width: 36px;
        font-size: 24px;
    }

    .principle h2 {
        font-size: 9.5px;
    }

    .principle p {
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .brand-header {
        width: 142px;
        flex-basis: 142px;
    }

    .brand-logo-header {
        width: 142px;
        max-width: 142px;
    }

    .hero {
        background-position: 66% center;
    }

    .hero h1 {
        font-size: 39px;
    }
}

/* IBLA HERO RESPONSIVE POLISH END */

/* IBLA HOME CORE REBUILD START */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.home-training-section {
    padding: 24px 0 0;
    background:
        linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.home-training-panel {
    display: grid;
    grid-template-columns:
        minmax(450px, 1.18fr)
        minmax(300px, 0.82fr)
        minmax(345px, 0.94fr);
    min-height: 455px;
    overflow: hidden;
    border: 1px solid rgba(10, 31, 60, 0.1);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(4, 18, 38, 0.07);
}

.home-training-list {
    position: relative;
    z-index: 2;
    padding: 30px 28px 25px;
}

.home-training-heading {
    margin-bottom: 18px;
}

.home-training-heading .eyebrow {
    margin-bottom: 4px;
    color: var(--gold-600);
    font-size: 9px;
}

.home-training-heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(29px, 2.5vw, 39px);
    font-weight: 500;
    line-height: 1.08;
}

.training-list-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 23px;
}

.training-list-column {
    display: grid;
    align-content: start;
}

.training-list-item {
    min-height: 48px;
    display: grid;
    grid-template-columns: 33px 24px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(10, 31, 60, 0.07);
}

.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 33px minmax(0, 1fr);
}

.training-item-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    border: 1px solid rgba(199, 154, 46, 0.52);
    border-radius: 50%;
    background: #fffaf0;
}

.training-item-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.training-item-icon-ai {
    font-family: Georgia, serif;
    font-size: 11px;
    font-weight: 800;
}

.training-item-number {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--gold-500);
    font-size: 9px;
    font-weight: 900;
}

.training-list-item h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.32;
}

.training-view-button {
    min-height: 42px;
    margin-top: 19px;
    padding: 10px 19px;
    color: var(--white);
    background: var(--navy-900);
    font-size: 10px;
}

.home-training-visual {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    background: var(--navy-950);
}

.home-training-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -10%;
    bottom: -10%;
    left: -35px;
    width: 70px;
    background: var(--white);
    transform: rotate(8deg);
    transform-origin: center;
}

.home-training-visual::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: -10%;
    bottom: -10%;
    left: 3px;
    width: 3px;
    background: var(--gold-500);
    transform: rotate(8deg);
}

.home-training-visual img {
    width: 100%;
    height: 100%;
    min-height: 455px;
    display: block;
    object-fit: cover;
    object-position: 50% center;
}

.home-enquiry-panel {
    padding: 29px 27px 24px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(225, 195, 125, 0.13),
            transparent 26%
        ),
        linear-gradient(145deg, #0d3158, var(--navy-950));
}

.home-enquiry-heading {
    margin-bottom: 16px;
}

.home-enquiry-heading .eyebrow {
    margin-bottom: 4px;
    color: var(--gold-400);
    font-size: 8px;
}

.home-enquiry-heading h2 {
    margin: 0 0 7px;
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
}

.home-enquiry-heading p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.71);
    font-size: 11px;
    line-height: 1.55;
}

.home-enquiry-form {
    padding: 0;
    display: grid;
    gap: 9px;
    color: var(--text);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.home-enquiry-form label {
    display: block;
}

.home-enquiry-form input,
.home-enquiry-form select,
.home-enquiry-form textarea {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.98);
    font-size: 11px;
}

.home-enquiry-form input,
.home-enquiry-form select {
    height: 40px;
    padding-inline: 12px;
}

.home-enquiry-form textarea {
    min-height: 76px;
    padding: 10px 12px;
}

.home-form-button {
    width: 100%;
    min-height: 40px;
    margin-top: 1px;
    padding: 10px 16px;
    font-size: 10px;
}

.home-enquiry-form .form-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
}

.home-country-strip {
    min-height: 91px;
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(10, 31, 60, 0.1);
    border-radius: 10px 10px 0 0;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(4, 18, 38, 0.06);
}

.home-country-item {
    min-width: 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.home-country-item:not(:last-child) {
    border-right: 1px solid rgba(10, 31, 60, 0.1);
}

.country-flag {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.country-flag svg {
    width: 44px;
    height: 44px;
}

.country-flag-global {
    color: var(--navy-900);
}

.country-flag-global svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}

.home-country-item h3 {
    margin: 0 0 3px;
    color: var(--navy-900);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.home-country-item p {
    margin: 0;
    color: var(--slate);
    font-size: 9px;
    line-height: 1.4;
}

/* Tablet */

@media (max-width: 1120px) {
    .home-training-panel {
        grid-template-columns: minmax(430px, 1.2fr) minmax(280px, 0.8fr);
    }

    .home-enquiry-panel {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
        gap: 35px;
        align-items: start;
    }

    .home-country-strip {
        overflow-x: auto;
        grid-template-columns: repeat(5, minmax(210px, 1fr));
    }
}

/* Mobile */

@media (max-width: 760px) {
    .home-training-section {
        padding-top: 15px;
    }

    .home-training-section > .container {
        width: calc(100% - 20px);
    }

    .home-training-panel {
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
        border-radius: 11px;
    }

    .home-training-list {
        padding: 25px 19px 21px;
    }

    .home-training-heading {
        margin-bottom: 15px;
    }

    .home-training-heading h2 {
        font-size: 31px;
    }

    .training-list-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 55px;
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 10px;
    }

    .training-list-item .training-item-number {
        display: none;
    }

    .training-item-icon {
        width: 32px;
        height: 32px;
    }

    .training-list-item h3 {
        font-size: 11.5px;
    }

    .training-view-button {
        width: 100%;
        margin-top: 18px;
    }

    .home-training-visual {
        min-height: 280px;
        order: 2;
    }

    .home-training-visual::before {
        top: -40px;
        right: -10%;
        bottom: auto;
        left: -10%;
        width: 120%;
        height: 65px;
        transform: rotate(-3deg);
    }

    .home-training-visual::after {
        top: 0;
        right: -10%;
        bottom: auto;
        left: -10%;
        width: 120%;
        height: 3px;
        transform: rotate(-3deg);
    }

    .home-training-visual img {
        min-height: 280px;
        object-position: center center;
    }

    .home-enquiry-panel {
        order: 3;
        grid-column: auto;
        padding: 27px 19px 22px;
        display: block;
    }

    .home-enquiry-heading h2 {
        font-size: 28px;
    }

    .home-enquiry-heading p {
        max-width: 100%;
    }

    .home-form-row {
        grid-template-columns: 1fr;
    }

    .home-enquiry-form {
        gap: 9px;
    }

    .home-enquiry-form input,
    .home-enquiry-form select {
        height: 43px;
    }

    .home-enquiry-form textarea {
        min-height: 92px;
    }

    .home-country-strip {
        margin-top: 10px;
        grid-template-columns: repeat(5, 225px);
        overflow-x: auto;
        scroll-snap-type: x proximity;
        border-radius: 9px;
        scrollbar-width: thin;
    }

    .home-country-item {
        min-height: 91px;
        padding: 15px 17px;
        scroll-snap-align: start;
    }

    .home-country-item h3 {
        font-size: 9.5px;
    }

    .home-country-item p {
        font-size: 9px;
    }
}

/* IBLA HOME CORE REBUILD END */

/* IBLA APPROVED WIDTH ALIGNMENT START */

/* ---------------------------------------------------------
   Global desktop width
   --------------------------------------------------------- */

:root {
    --container: 1450px;
}

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

.header-shell {
    width: min(calc(100% - 64px), 1450px);
}

/* ---------------------------------------------------------
   Header proportions
   --------------------------------------------------------- */

.brand-header {
    width: 232px;
    height: 79px;
}

.brand-logo-header {
    max-height: 75px;
}

.primary-navigation {
    gap: clamp(18px, 1.45vw, 28px);
}

.primary-navigation a {
    font-size: 11px;
}

.header-cta {
    padding-inline: 26px;
}

/* ---------------------------------------------------------
   Hero proportions
   --------------------------------------------------------- */

.hero {
    min-height: 555px;
}

.hero-layout {
    min-height: 555px;
    grid-template-columns:
        minmax(560px, 0.88fr)
        minmax(610px, 1.12fr);
    gap: 22px;
    padding-block: 64px 70px;
}

.hero-content {
    max-width: 675px;
}

.hero h1 {
    max-width: 670px;
    font-size: clamp(54px, 4.65vw, 72px);
}

.hero-introduction {
    max-width: 600px;
}

.hero-visual {
    min-height: 420px;
}

.hero-insight-card {
    right: 30px;
    bottom: 14px;
    width: 288px;
}

/* ---------------------------------------------------------
   Principles strip
   --------------------------------------------------------- */

.principles-grid {
    min-height: 96px;
}

.principle {
    padding: 20px 22px;
}

.principle-icon {
    min-width: 43px;
    font-size: 29px;
}

.principle h2 {
    font-size: 10.5px;
}

.principle p {
    font-size: 11px;
}

/* ---------------------------------------------------------
   Core training block
   --------------------------------------------------------- */

.home-training-section {
    padding-top: 15px;
}

.home-training-panel {
    grid-template-columns:
        minmax(520px, 1.15fr)
        minmax(370px, 0.82fr)
        minmax(410px, 0.93fr);
    min-height: 515px;
    border-radius: 14px;
}

.home-training-list {
    padding: 34px 34px 29px;
}

.home-training-heading {
    margin-bottom: 23px;
}

.home-training-heading .eyebrow {
    margin-bottom: 6px;
}

.home-training-heading h2 {
    font-size: clamp(35px, 2.65vw, 43px);
}

.training-list-columns {
    gap: 7px 31px;
}

.training-list-item {
    min-height: 57px;
    grid-template-columns: 38px 27px minmax(0, 1fr);
    gap: 9px;
}

.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 38px minmax(0, 1fr);
}

.training-item-icon {
    width: 35px;
    height: 35px;
}

.training-item-icon svg {
    width: 21px;
    height: 21px;
}

.training-item-number {
    width: 22px;
    height: 22px;
    font-size: 9.5px;
}

.training-list-item h3 {
    font-size: 13px;
    line-height: 1.34;
}

.training-view-button {
    min-height: 45px;
    margin-top: 24px;
    padding-inline: 23px;
}

/* ---------------------------------------------------------
   Globe panel
   --------------------------------------------------------- */

.home-training-visual {
    min-height: 515px;
}

.home-training-visual::before {
    left: -47px;
    width: 87px;
    transform: rotate(7deg);
}

.home-training-visual::after {
    left: 1px;
    width: 3px;
    transform: rotate(7deg);
}

.home-training-visual img {
    min-height: 515px;
    object-fit: cover;
    object-position: 50% 53%;
    transform: scale(0.97);
}

/* ---------------------------------------------------------
   Enquiry panel
   --------------------------------------------------------- */

.home-enquiry-panel {
    padding: 35px 34px 28px;
}

.home-enquiry-heading {
    margin-bottom: 21px;
}

.home-enquiry-heading h2 {
    margin-bottom: 9px;
    font-size: 33px;
}

.home-enquiry-heading p {
    max-width: 340px;
    font-size: 12.5px;
}

.home-enquiry-form {
    gap: 11px;
}

.home-form-row {
    gap: 11px;
}

.home-enquiry-form input,
.home-enquiry-form select {
    height: 46px;
    padding-inline: 14px;
    font-size: 12px;
}

.home-enquiry-form textarea {
    min-height: 95px;
    padding: 12px 14px;
    font-size: 12px;
}

.home-form-button {
    min-height: 45px;
    font-size: 10.5px;
}

.home-enquiry-form .form-note {
    margin-top: 2px;
    font-size: 8.5px;
}

/* ---------------------------------------------------------
   Country strip
   --------------------------------------------------------- */

.home-country-strip {
    min-height: 104px;
    margin-top: 15px;
}

.home-country-item {
    padding: 18px 22px;
    gap: 15px;
}

.country-flag,
.country-flag svg {
    width: 49px;
    height: 49px;
}

.home-country-item h3 {
    font-size: 10.5px;
}

.home-country-item p {
    font-size: 10px;
}

/* ---------------------------------------------------------
   Sections below
   --------------------------------------------------------- */

.masterclasses-section {
    padding-block: 78px;
}

.masterclass-grid {
    gap: 18px;
}

.corporate-section,
.leadership-section {
    padding-block: 82px;
}

/* ---------------------------------------------------------
   Medium desktop and tablet
   --------------------------------------------------------- */

@media (max-width: 1320px) {
    .container,
    .header-shell {
        width: min(calc(100% - 48px), 1280px);
    }

    .home-training-panel {
        grid-template-columns:
            minmax(470px, 1.14fr)
            minmax(330px, 0.81fr)
            minmax(365px, 0.95fr);
    }

    .training-list-item h3 {
        font-size: 12px;
    }
}

@media (max-width: 1120px) {
    .container,
    .header-shell {
        width: min(calc(100% - 40px), 1060px);
    }

    .home-training-panel {
        grid-template-columns:
            minmax(440px, 1.15fr)
            minmax(310px, 0.85fr);
    }

    .home-training-visual {
        min-height: 500px;
    }

    .home-enquiry-panel {
        grid-column: 1 / -1;
        padding: 32px;
    }
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 760px) {
    .container,
    .header-shell {
        width: calc(100% - 22px);
    }

    .brand-header {
        width: 150px;
        height: 55px;
        flex-basis: 150px;
    }

    .brand-logo-header {
        width: 150px;
        max-width: 150px;
        max-height: 53px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-layout {
        min-height: 620px;
        padding-block: 43px 28px;
    }

    .hero h1 {
        font-size: clamp(39px, 11.5vw, 51px);
    }

    .hero-insight-card {
        right: auto;
        left: 0;
        width: min(100%, 300px);
    }

    .home-training-section > .container {
        width: calc(100% - 14px);
    }

    .home-training-panel {
        min-height: 0;
    }

    .home-training-list {
        padding: 25px 19px 22px;
    }

    .home-training-heading h2 {
        font-size: 31px;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 57px;
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .training-list-item h3 {
        font-size: 11.5px;
    }

    .home-training-visual,
    .home-training-visual img {
        min-height: 315px;
    }

    .home-training-visual img {
        transform: none;
        object-position: center 55%;
    }

    .home-enquiry-panel {
        padding: 28px 20px 23px;
    }

    .home-enquiry-form input,
    .home-enquiry-form select {
        height: 44px;
    }

    .home-country-strip {
        grid-template-columns: repeat(5, 235px);
    }
}

/* IBLA APPROVED WIDTH ALIGNMENT END */

/* IBLA MOBILE LAYOUT RESET START */

@media (max-width: 760px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        min-width: 0;
    }

    main,
    section,
    header,
    footer,
    .container,
    .header-shell,
    .hero-layout,
    .home-training-panel,
    .masterclass-grid,
    .corporate-layout,
    .team-grid,
    .footer-main {
        min-width: 0;
        max-width: 100%;
    }

    .container {
        width: calc(100% - 24px);
        margin-inline: auto;
    }

    /* Header */

    .header-shell {
        width: calc(100% - 20px);
        min-height: 66px;
    }

    .brand-header {
        width: 146px;
        height: 46px;
        flex: 0 0 146px;
    }

    .brand-logo-header {
        width: 146px;
        max-width: 146px;
        max-height: 52px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 42px;
        margin-left: auto;
    }

    /* Hero */

    .hero {
        min-height: 590px;
        background-size: auto 100%;
        background-position: 69% center;
    }

    .hero-layout {
        width: calc(100% - 28px);
        min-height: 590px;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 42px 0 28px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero .eyebrow {
        max-width: 290px;
        font-size: 8px;
        line-height: 1.45;
    }

    .hero h1 {
        width: 100%;
        max-width: 310px;
        margin-bottom: 16px;
        font-size: clamp(35px, 10.7vw, 44px);
        line-height: 0.99;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero h1 span {
        display: block;
    }

    .hero-introduction {
        width: 100%;
        max-width: 310px;
        font-size: 12.5px;
        line-height: 1.55;
    }

    .hero-actions {
        width: min(100%, 310px);
    }

    .hero-actions .button {
        width: 100%;
        min-height: 43px;
        font-size: 9px;
    }

    .hero-visual {
        min-height: 118px;
    }

    .hero-insight-card {
        left: 0;
        right: auto;
        bottom: 0;
        width: min(100%, 280px);
        min-height: 76px;
        padding: 12px 14px;
    }

    .hero-insight-icon {
        width: 37px;
        height: 37px;
    }

    .hero-insight-copy strong {
        font-size: 14px;
    }

    /* Principles: horizontal swipe without widening page */

    .principles {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .principles-grid {
        width: max-content;
        min-width: 0;
        grid-template-columns: repeat(5, 210px);
    }

    .principle {
        width: 210px;
        min-width: 210px;
        min-height: 82px;
        padding: 15px 14px;
    }

    /* Core Areas */

    .home-training-section {
        width: 100%;
        padding-top: 14px;
    }

    .home-training-section > .container {
        width: calc(100% - 14px);
    }

    .home-training-panel {
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .home-training-list {
        width: 100%;
        order: 1;
        padding: 24px 17px 20px;
    }

    .home-training-heading h2 {
        font-size: 29px;
        line-height: 1.08;
    }

    .training-list-columns {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .training-list-column {
        width: 100%;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        width: 100%;
        min-height: 46px;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 9px;
    }

    .training-list-item h3 {
        min-width: 0;
        font-size: 11px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .training-item-number {
        display: none;
    }

    .training-view-button {
        width: 100%;
    }

    .home-training-visual {
        width: 100%;
        min-height: 285px;
        order: 2;
    }

    .home-training-visual img {
        width: 100%;
        min-height: 285px;
        transform: none;
        object-fit: cover;
        object-position: center 52%;
    }

    .home-enquiry-panel {
        width: 100%;
        order: 3;
        display: block;
        padding: 25px 17px 21px;
    }

    .home-enquiry-heading h2 {
        font-size: 27px;
    }

    .home-form-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-enquiry-form,
    .home-enquiry-form label,
    .home-enquiry-form input,
    .home-enquiry-form select,
    .home-enquiry-form textarea {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .home-country-strip {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(5, 215px);
        overflow-x: auto;
        overflow-y: hidden;
    }

    .home-country-item {
        width: 215px;
        min-width: 215px;
    }

    /* Masterclasses */

    .masterclasses-section {
        padding-block: 62px;
    }

    .masterclasses-section .section-header {
        margin-bottom: 28px;
    }

    .masterclasses-section .section-header h2 {
        max-width: 100%;
        font-size: 36px;
    }

    .masterclass-grid {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .masterclass-card {
        width: 100%;
        min-width: 0;
        min-height: 230px;
        padding: 23px 20px;
    }

    .masterclass-card h3 {
        font-size: 23px;
    }

    /* Corporate */

    .corporate-section {
        padding-block: 64px;
    }

    .corporate-layout {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .corporate-content {
        width: 100%;
        min-width: 0;
    }

    .corporate-content h2 {
        width: 100%;
        font-size: 37px;
        overflow-wrap: normal;
    }

    .check-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .corporate-panel {
        width: 100%;
        min-width: 0;
        min-height: 390px;
        padding: 29px 23px;
    }

    .corporate-panel blockquote {
        font-size: 21px;
    }

    /* Team */

    .leadership-section {
        padding-block: 64px;
    }

    .leadership-section .section-header {
        margin-bottom: 30px;
    }

    .leadership-section .section-header h2 {
        font-size: 36px;
    }

    .team-grid {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .team-card {
        width: 100%;
        min-width: 0;
        min-height: 105px;
        padding: 18px;
    }

    /* Footer */

    .footer-main {
        width: calc(100% - 28px);
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        padding-block: 54px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
        min-width: 0;
    }

    .brand-footer {
        width: min(100%, 245px);
    }

    .brand-logo-footer {
        max-width: 245px;
    }

    .footer-bottom {
        width: calc(100% - 28px);
        padding-block: 22px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 390px) {
    .container {
        width: calc(100% - 18px);
    }

    .hero-layout {
        width: calc(100% - 22px);
    }

    .hero h1 {
        max-width: 285px;
        font-size: 36px;
    }

    .hero-introduction {
        max-width: 285px;
        font-size: 12px;
    }

    .brand-header {
        width: 138px;
        flex-basis: 138px;
    }

    .brand-logo-header {
        width: 138px;
        max-width: 138px;
    }
}

/* IBLA MOBILE LAYOUT RESET END */

/* IBLA ICON AND MOBILE POLISH START */

/* Professional feature-strip SVG icons */

.principle-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
}

.principle-icon img {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
}

/* More consistent masterclass cards */

.masterclass-grid {
    align-items: stretch;
}

.masterclass-card {
    height: 100%;
}

.masterclass-card h3 {
    min-height: 64px;
}

.masterclass-card p {
    flex-grow: 1;
}

/* Refined form note */

.home-enquiry-form .form-note {
    color: rgba(255, 255, 255, 0.67);
}

/* Desktop footer refinement */

.footer-main {
    align-items: start;
}

/* Mobile-only visual polish */

@media (max-width: 760px) {
    .hero {
        min-height: 555px;
    }

    .hero-layout {
        min-height: 555px;
        padding-top: 37px;
        padding-bottom: 24px;
    }

    .hero h1 {
        margin-bottom: 14px;
        font-size: clamp(34px, 10.4vw, 42px);
    }

    .hero-introduction {
        margin-bottom: 19px;
    }

    .hero-visual {
        min-height: 105px;
    }

    .hero-insight-card {
        min-height: 72px;
    }

    .principles,
    .home-country-strip {
        position: relative;
    }

    .principles::after,
    .home-country-strip::after {
        content: "Swipe →";
        position: sticky;
        right: 8px;
        z-index: 5;
        width: max-content;
        margin-left: auto;
        padding: 3px 7px;
        display: block;
        color: var(--navy-900);
        border: 1px solid rgba(199, 154, 46, 0.22);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.94);
        font-size: 7px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        pointer-events: none;
    }

    .principles::after {
        margin-top: -19px;
        margin-bottom: 4px;
    }

    .home-country-strip::after {
        align-self: end;
        margin-top: 62px;
        margin-right: 7px;
    }

    .principle {
        gap: 12px;
    }

    .principle-icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
    }

    .principle-icon img {
        width: 39px;
        height: 39px;
    }

    .principle h2 {
        font-size: 10px;
    }

    .principle p {
        font-size: 9.5px;
    }

    .training-item-icon {
        width: 35px;
        height: 35px;
    }

    .training-item-icon svg {
        width: 21px;
        height: 21px;
    }

    .training-list-item h3 {
        font-size: 11.5px;
    }

    .masterclass-grid {
        gap: 11px;
    }

    .masterclass-card {
        min-height: 220px;
    }

    .masterclass-card h3 {
        min-height: auto;
        margin-bottom: 12px;
    }

    .corporate-layout {
        gap: 28px;
    }

    .corporate-content h2 {
        margin-bottom: 20px;
    }

    .corporate-panel {
        min-height: 365px;
    }

    .leadership-section .section-header {
        gap: 13px;
    }

    .team-card {
        min-height: 98px;
    }

    .footer-main {
        gap: 25px;
        padding-top: 46px;
        padding-bottom: 42px;
    }

    .footer-brand > p {
        margin-top: 20px;
    }

    .footer-links,
    .footer-contact {
        gap: 7px;
    }
}

/* IBLA ICON AND MOBILE POLISH END */

/* IBLA CORE AREAS REFINE START */

/* Desktop */
.home-training-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
}

.home-training-heading h2 {
    font-size: clamp(42px, 3vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.training-list-columns {
    gap: 8px 38px;
}

.training-list-item {
    min-height: 64px;
    grid-template-columns: 44px 28px minmax(0, 1fr);
    gap: 11px;
}

.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 44px minmax(0, 1fr);
}

.training-item-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(199, 154, 46, 0.65);
    background: #fffdf8;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.training-item-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.training-item-icon-ai {
    font-size: 14px;
    font-weight: 700;
}

.training-item-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
    font-weight: 800;
}

.training-list-item h3 {
    font-size: 13.8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.training-view-button {
    min-height: 48px;
    margin-top: 26px;
    padding-inline: 25px;
    font-size: 11px;
}

/* Slightly improve list panel breathing space */
.home-training-list {
    padding-top: 38px;
    padding-bottom: 32px;
}

/* Tablet */
@media (max-width: 1120px) {
    .home-training-heading h2 {
        font-size: clamp(38px, 3.4vw, 48px);
    }

    .training-list-columns {
        gap: 6px 28px;
    }

    .training-list-item {
        min-height: 60px;
        grid-template-columns: 40px 26px minmax(0, 1fr);
    }

    .training-list-column:nth-child(2) .training-list-item {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .training-item-icon {
        width: 37px;
        height: 37px;
    }

    .training-item-icon svg {
        width: 20px;
        height: 20px;
    }

    .training-list-item h3 {
        font-size: 12.8px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .home-training-heading .eyebrow {
        font-size: 9px;
        margin-bottom: 7px;
    }

    .home-training-heading h2 {
        font-size: 30px;
        line-height: 1.1;
    }

    .training-list-columns {
        gap: 0;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 58px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .training-item-icon {
        width: 34px;
        height: 34px;
    }

    .training-item-icon svg {
        width: 19px;
        height: 19px;
    }

    .training-item-icon-ai {
        font-size: 13px;
    }

    .training-list-item h3 {
        font-size: 11.6px;
        line-height: 1.35;
    }

    .training-view-button {
        min-height: 46px;
        margin-top: 20px;
        font-size: 10px;
    }
}

/* IBLA CORE AREAS REFINE END */

/* IBLA FINAL CORE TYPOGRAPHY START */

.home-training-heading {
    margin-bottom: 23px;
}

.home-training-heading .eyebrow {
    margin-bottom: 9px;
    color: #b97800;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.home-training-heading h2 {
    margin: 0;
    color: #0a1f3c;
    font-family: "Cinzel", Georgia, "Times New Roman", serif;
    font-size: clamp(33px, 2.65vw, 45px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.training-list-columns {
    gap: 3px 31px;
}

.training-list-item {
    min-height: 57px;
    grid-template-columns: 39px 25px minmax(0, 1fr);
    gap: 9px;
    border-bottom: 1px solid rgba(10, 31, 60, 0.09);
}

.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 39px minmax(0, 1fr);
}

.training-item-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.training-item-icon img {
    width: 37px;
    height: 37px;
    display: block;
    object-fit: contain;
}

.training-item-number {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #cf9515;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
}

.training-list-item h3 {
    margin: 0;
    color: #0a1f3c;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12.2px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.015em;
}

.training-view-button {
    min-height: 45px;
    margin-top: 24px;
    padding: 11px 24px;
    color: #ffffff;
    background: #071f3d;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.045em;
}

@media (min-width: 1321px) {
    .home-training-list {
        padding: 34px 34px 29px;
    }

    .home-training-heading h2 {
        font-size: 41px;
    }

    .training-list-item {
        min-height: 58px;
    }

    .training-list-item h3 {
        font-size: 12.5px;
    }
}

@media (max-width: 1120px) {
    .home-training-heading h2 {
        font-size: 36px;
    }

    .training-list-item {
        min-height: 55px;
        grid-template-columns: 37px 24px minmax(0, 1fr);
    }

    .training-list-column:nth-child(2) .training-list-item {
        grid-template-columns: 37px minmax(0, 1fr);
    }

    .training-item-icon,
    .training-item-icon img {
        width: 35px;
        height: 35px;
    }

    .training-list-item h3 {
        font-size: 11.8px;
    }
}

@media (max-width: 760px) {
    .home-training-heading {
        margin-bottom: 17px;
    }

    .home-training-heading .eyebrow {
        margin-bottom: 8px;
        font-size: 8px;
    }

    .home-training-heading h2 {
        max-width: 100%;
        font-size: 27px;
        line-height: 1.12;
    }

    .training-list-columns {
        gap: 0;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 55px;
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
    }

    .training-item-icon,
    .training-item-icon img {
        width: 34px;
        height: 34px;
    }

    .training-list-item h3 {
        font-size: 11px;
        line-height: 1.35;
    }

    .training-view-button {
        min-height: 44px;
        margin-top: 19px;
        font-size: 9px;
    }
}

/* IBLA FINAL CORE TYPOGRAPHY END */

/* IBLA CORE PROPORTION FIX START */

/* Give the training list more horizontal room */
.home-training-panel {
    grid-template-columns:
        minmax(590px, 1.28fr)
        minmax(340px, 0.75fr)
        minmax(405px, 0.89fr);
}

/* Reference-aligned single-line heading */
.home-training-heading h2 {
    max-width: none;
    font-size: clamp(31px, 2.25vw, 38px);
    line-height: 1.08;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

/* Improve visual rhythm */
.home-training-list {
    padding-right: 36px;
    padding-left: 36px;
}

.training-list-columns {
    gap: 4px 34px;
}

.training-list-item {
    min-height: 59px;
    grid-template-columns: 40px 25px minmax(0, 1fr);
    gap: 10px;
}

.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 40px minmax(0, 1fr);
}

.training-item-icon,
.training-item-icon img {
    width: 38px;
    height: 38px;
}

.training-list-item h3 {
    font-size: 12.4px;
    line-height: 1.34;
}

/* Medium desktop */
@media (max-width: 1320px) {
    .home-training-panel {
        grid-template-columns:
            minmax(535px, 1.23fr)
            minmax(315px, 0.76fr)
            minmax(370px, 0.91fr);
    }

    .home-training-heading h2 {
        font-size: 32px;
    }

    .training-list-item h3 {
        font-size: 11.8px;
    }
}

/* Tablet: allow natural wrapping */
@media (max-width: 1120px) {
    .home-training-heading h2 {
        font-size: 35px;
        white-space: normal;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .home-training-heading h2 {
        max-width: 270px;
        font-size: 27px;
        line-height: 1.12;
        white-space: normal;
    }

    .home-training-list {
        padding-right: 17px;
        padding-left: 17px;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 56px;
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
    }

    .training-item-icon,
    .training-item-icon img {
        width: 34px;
        height: 34px;
    }

    .training-list-item h3 {
        font-size: 11px;
    }
}

/* IBLA CORE PROPORTION FIX END */

/* IBLA HERO CARD FIX START */

.hero-insight-card {
    right: 42px;
    bottom: 22px;
    width: 402px;
    min-height: 162px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    border: 1.6px solid rgba(211, 155, 24, 0.82);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(4, 26, 56, 0.96), rgba(7, 37, 78, 0.96));
    box-shadow: 0 18px 40px rgba(2, 14, 33, 0.34);
}

.hero-insight-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.hero-insight-icon img {
    width: 72px;
    height: 72px;
    display: block;
    object-fit: contain;
}

.hero-insight-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-insight-text-line {
    margin: 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: 0.005em;
}

.hero-insight-line {
    width: 64px;
    height: 3px;
    margin-top: 16px;
    border-radius: 999px;
    background: #D39B18;
}

@media (max-width: 1320px) {
    .hero-insight-card {
        width: 360px;
        min-height: 150px;
        padding: 22px 24px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .hero-insight-text-line {
        font-size: 20px;
    }
}

@media (max-width: 760px) {
    .hero-insight-card {
        left: 0;
        right: auto;
        bottom: 0;
        width: min(100%, 280px);
        min-height: 92px;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .hero-insight-text-line {
        font-size: 13.5px;
        line-height: 1.28;
    }

    .hero-insight-line {
        width: 44px;
        height: 2px;
        margin-top: 10px;
    }
}

/* IBLA HERO CARD FIX END */

/* IBLA MOCKUP DESIGN SYSTEM START */

:root {
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-ui: "Montserrat", Arial, sans-serif;
    --font-body: "Lato", Arial, sans-serif;
    --header-height: 88px;
}

body {
    font-family: var(--font-body);
}

/* Header */

.site-header {
    background: rgba(255, 255, 255, 0.985);
}

.header-shell {
    min-height: var(--header-height);
    gap: 24px;
}

.brand-header {
    width: 212px;
    height: 75px;
}

.brand-logo-header {
    max-height: 71px;
}

.primary-navigation {
    gap: clamp(20px, 1.55vw, 30px);
}

.primary-navigation a {
    padding-block: 32px 27px;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.055em;
}

.primary-navigation a::after {
    bottom: 18px;
    height: 1.5px;
}

.header-cta {
    min-height: 46px;
    padding: 12px 25px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.055em;
    border-radius: 4px;
}

/* Hero */

.hero {
    min-height: 555px;
}

.hero-layout {
    min-height: 555px;
    grid-template-columns: minmax(540px, 0.9fr) minmax(580px, 1.1fr);
    gap: 22px;
    padding-block: 65px 70px;
}

.hero-content {
    max-width: 650px;
}

.hero .eyebrow {
    margin-bottom: 15px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(58px, 5.05vw, 78px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.025em;
}

.hero-introduction {
    max-width: 575px;
    margin-bottom: 28px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.58;
}

.hero-actions {
    gap: 12px;
}

.hero-actions .button {
    min-width: 188px;
    min-height: 46px;
    padding: 12px 21px;
    font-family: var(--font-ui);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.045em;
    border-radius: 3px;
}

/* Hero insight card */

.hero-insight-card {
    right: 32px;
    bottom: 20px;
    width: 310px;
    min-height: 138px;
    gap: 18px;
    padding: 22px 23px;
    border-width: 1px;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 38, 74, 0.97),
            rgba(3, 22, 48, 0.97)
        );
}

.hero-insight-icon,
.hero-insight-icon img {
    width: 58px;
    height: 58px;
    min-width: 58px;
}

.hero-insight-copy {
    min-width: 0;
}

.hero-insight-text-line {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}

.hero-insight-line {
    width: 45px;
    height: 2px;
    margin-top: 13px;
}

/* Feature strip */

.principles-grid {
    min-height: 96px;
}

.principle {
    padding: 19px 22px;
    gap: 14px;
}

.principle-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
}

.principle-icon img {
    width: 43px;
    height: 43px;
}

.principle h2 {
    margin-bottom: 4px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.055em;
}

.principle p {
    font-family: var(--font-body);
    font-size: 10.5px;
    line-height: 1.45;
}

/* Tablet */

@media (max-width: 1180px) {
    .brand-header {
        width: 190px;
    }

    .primary-navigation {
        gap: 15px;
    }

    .primary-navigation a {
        font-size: 9px;
    }

    .hero-layout {
        grid-template-columns: minmax(470px, 1fr) minmax(330px, 0.72fr);
    }

    .hero h1 {
        font-size: clamp(52px, 6vw, 69px);
    }
}

/* Mobile */

@media (max-width: 760px) {
    :root {
        --header-height: 66px;
    }

    .header-shell {
        min-height: var(--header-height);
    }

    .brand-header {
        width: 145px;
        height: 53px;
        flex-basis: 145px;
    }

    .brand-logo-header {
        width: 145px;
        max-width: 145px;
        max-height: 51px;
    }

    .hero {
        min-height: 540px;
    }

    .hero-layout {
        min-height: 540px;
        padding-top: 37px;
        padding-bottom: 23px;
    }

    .hero .eyebrow {
        font-size: 8px;
    }

    .hero h1 {
        max-width: 305px;
        margin-bottom: 15px;
        font-size: clamp(38px, 11vw, 45px);
        line-height: 0.97;
    }

    .hero-introduction {
        max-width: 300px;
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-actions {
        width: min(100%, 300px);
    }

    .hero-actions .button {
        min-height: 42px;
        font-size: 8.5px;
    }

    .hero-visual {
        min-height: 100px;
    }

    .hero-insight-card {
        width: min(100%, 278px);
        min-height: 86px;
        gap: 12px;
        padding: 13px 15px;
        border-radius: 10px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }

    .hero-insight-text-line {
        font-size: 13px;
    }

    .hero-insight-line {
        width: 38px;
        margin-top: 8px;
    }

    .principles-grid {
        grid-template-columns: repeat(5, 215px);
    }

    .principle {
        width: 215px;
        min-width: 215px;
        padding: 15px;
    }
}

/* IBLA MOCKUP DESIGN SYSTEM END */

/* IBLA HEADER NAVIGATION FIX START */

:root {
    --header-height: 98px;
}

.site-header {
    background: #ffffff;
}

.header-shell {
    width: min(calc(100% - 72px), 1450px);
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 32px;
}

/* Logo */

.brand-header {
    width: 225px;
    height: 82px;
    justify-self: start;
}

.brand-logo-header {
    width: 225px;
    max-width: 225px;
    max-height: 80px;
}

/* Centred navigation group */

.primary-navigation {
    min-width: 0;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(19px, 1.45vw, 31px);
}

.primary-navigation a {
    min-width: 0;
    padding: 39px 0 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0a1f3c;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-navigation a::after {
    bottom: 24px;
    height: 1px;
}

.primary-navigation a.is-active {
    color: #b97800;
}

/* CSS chevrons—no text symbol */

.nav-chevron {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    display: inline-block;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg);
}

/* CTA */

.header-cta {
    min-width: 136px;
    min-height: 46px;
    padding: 12px 21px;
    justify-self: end;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.045em;
    border-radius: 3px;
}

/* Medium desktop */

@media (max-width: 1320px) {
    .header-shell {
        width: min(calc(100% - 48px), 1260px);
        grid-template-columns: 205px minmax(0, 1fr) auto;
        column-gap: 21px;
    }

    .brand-header,
    .brand-logo-header {
        width: 198px;
        max-width: 198px;
    }

    .primary-navigation {
        gap: 17px;
    }

    .primary-navigation a {
        font-size: 8.8px;
        letter-spacing: 0.035em;
    }

    .header-cta {
        min-width: 122px;
        padding-inline: 16px;
        font-size: 8.7px;
    }
}

/* Tablet/mobile menu retains existing drawer behaviour */

@media (max-width: 1020px) {
    :root {
        --header-height: 68px;
    }

    .header-shell {
        width: calc(100% - 22px);
        min-height: var(--header-height);
        display: flex;
        gap: 10px;
    }

    .brand-header {
        width: 150px;
        height: 55px;
        flex: 0 0 150px;
    }

    .brand-logo-header {
        width: 150px;
        max-width: 150px;
        max-height: 53px;
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(360px, 100%);
        margin: 0;
        padding: 22px 25px 35px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
    }

    .primary-navigation a {
        width: 100%;
        padding: 17px 3px;
        justify-content: space-between;
        font-size: 11px;
        font-weight: 600;
        border-bottom: 1px solid rgba(10, 31, 60, 0.1);
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

/* IBLA HEADER NAVIGATION FIX END */

/* IBLA MENU TYPOGRAPHY REFINE START */

@media (min-width: 1021px) {
    .primary-navigation {
        gap: clamp(18px, 1.3vw, 27px);
    }

    .primary-navigation a {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.035em;
    }

    .header-cta {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .nav-chevron {
        width: 6px;
        height: 6px;
        border-right-width: 1.5px;
        border-bottom-width: 1.5px;
    }
}

@media (min-width: 1021px) and (max-width: 1320px) {
    .primary-navigation {
        gap: 15px;
    }

    .primary-navigation a {
        font-size: 9.5px;
        font-weight: 600;
        letter-spacing: 0.025em;
    }
}

/* IBLA MENU TYPOGRAPHY REFINE END */

/* IBLA UPPER SECTION POLISH START */

/* ---------------------------------------------------------
   Header refinement
   --------------------------------------------------------- */

@media (min-width: 1021px) {
    :root {
        --header-height: 94px;
    }

    .header-shell {
        min-height: var(--header-height);
        grid-template-columns: 225px minmax(0, 1fr) auto;
        column-gap: 34px;
    }

    .brand-header {
        width: 218px;
        height: 78px;
        transform: translateY(-2px);
    }

    .brand-logo-header {
        width: 218px;
        max-width: 218px;
        max-height: 76px;
    }

    .primary-navigation {
        gap: clamp(20px, 1.42vw, 29px);
    }

    .primary-navigation a {
        padding-top: 37px;
        padding-bottom: 33px;
        font-size: 10.5px;
        font-weight: 500;
        letter-spacing: 0.04em;
    }

    .primary-navigation a::after {
        bottom: 22px;
    }

    .header-cta {
        min-width: 132px;
        min-height: 44px;
        padding: 11px 20px;
        font-size: 9.5px;
        font-weight: 600;
    }
}

/* ---------------------------------------------------------
   Hero balance
   --------------------------------------------------------- */

@media (min-width: 1021px) {
    .hero {
        min-height: 535px;
    }

    .hero-layout {
        min-height: 535px;
        grid-template-columns:
            minmax(520px, 0.88fr)
            minmax(590px, 1.12fr);
        gap: 24px;
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .hero-content {
        max-width: 625px;
        transform: translateY(-6px);
    }

    .hero .eyebrow {
        margin-bottom: 14px;
        font-size: 9.5px;
    }

    .hero h1 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(54px, 4.55vw, 70px);
        line-height: 0.985;
        letter-spacing: -0.02em;
    }

    .hero-introduction {
        max-width: 555px;
        margin-bottom: 25px;
        font-size: 14.5px;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .button {
        min-width: 176px;
        min-height: 44px;
        padding: 11px 20px;
        font-size: 9px;
        font-weight: 600;
    }
}

/* ---------------------------------------------------------
   Hero insight card
   --------------------------------------------------------- */

@media (min-width: 1021px) {
    .hero-insight-card {
        right: 40px;
        bottom: 25px;
        width: 330px;
        min-height: 126px;
        gap: 17px;
        padding: 20px 22px;
        border-radius: 10px;
        box-shadow: 0 18px 38px rgba(2, 14, 33, 0.3);
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .hero-insight-text-line {
        font-size: 17px;
        line-height: 1.25;
    }

    .hero-insight-line {
        width: 42px;
        margin-top: 11px;
    }
}

/* ---------------------------------------------------------
   Feature strip refinement
   --------------------------------------------------------- */

.principles-grid {
    min-height: 92px;
}

.principle {
    padding: 17px 20px;
    gap: 13px;
}

.principle:not(:last-child)::after {
    top: 24px;
    bottom: 24px;
    background: rgba(10, 31, 60, 0.09);
}

.principle-icon {
    width: 43px;
    min-width: 43px;
    height: 43px;
}

.principle-icon img {
    width: 40px;
    height: 40px;
}

.principle h2 {
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.045em;
}

.principle p {
    color: #697586;
    font-size: 10.7px;
    line-height: 1.42;
}

/* ---------------------------------------------------------
   Medium desktop
   --------------------------------------------------------- */

@media (min-width: 1021px) and (max-width: 1320px) {
    .header-shell {
        grid-template-columns: 198px minmax(0, 1fr) auto;
        column-gap: 21px;
    }

    .brand-header,
    .brand-logo-header {
        width: 194px;
        max-width: 194px;
    }

    .primary-navigation {
        gap: 15px;
    }

    .primary-navigation a {
        font-size: 9.3px;
        font-weight: 500;
        letter-spacing: 0.028em;
    }

    .hero h1 {
        font-size: clamp(52px, 5.4vw, 66px);
    }

    .hero-insight-card {
        right: 24px;
        width: 300px;
    }
}

/* ---------------------------------------------------------
   Mobile preserves responsive composition
   --------------------------------------------------------- */

@media (max-width: 760px) {
    .hero h1 {
        font-size: clamp(37px, 10.6vw, 43px);
        line-height: 0.99;
    }

    .hero-introduction {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-insight-card {
        width: min(100%, 274px);
    }

    .principle {
        padding: 14px;
    }

    .principle-icon,
    .principle-icon img {
        width: 39px;
        height: 39px;
        min-width: 39px;
    }
}

/* IBLA UPPER SECTION POLISH END */

/* IBLA READABILITY FIX START */

@media (min-width: 1021px) {
    /* Header menu */
    .primary-navigation {
        gap: clamp(17px, 1.2vw, 25px);
    }

    .primary-navigation a {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.015em;
    }

    .header-cta {
        min-width: 142px;
        min-height: 46px;
        font-size: 11px;
        font-weight: 700;
    }

    /* Hero */
    .hero-content {
        transform: translateY(4px);
    }

    .hero h1 {
        max-width: 610px;
        font-size: clamp(56px, 4.35vw, 68px);
        line-height: 0.99;
    }

    .hero-introduction {
        max-width: 555px;
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.88);
    }

    .hero-actions .button {
        min-height: 46px;
        font-size: 10.5px;
        font-weight: 700;
    }

    /* Hero card */
    .hero-insight-card {
        right: 48px;
        bottom: 30px;
        width: 315px;
        min-height: 122px;
        gap: 14px;
        padding: 19px 20px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .hero-insight-text-line {
        font-size: 18px;
        line-height: 1.28;
    }

    .hero-insight-line {
        width: 48px;
    }

    /* Feature strip */
    .principle h2 {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .principle p {
        font-size: 12px;
        line-height: 1.4;
        color: #566579;
    }

    .principle-icon,
    .principle-icon img {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .principle:not(:last-child)::after {
        top: 28px;
        bottom: 28px;
        opacity: 0.65;
    }
}

@media (min-width: 1021px) and (max-width: 1320px) {
    .primary-navigation a {
        font-size: 10.5px;
    }

    .header-cta {
        font-size: 9.8px;
    }

    .hero-introduction {
        font-size: 15px;
    }

    .principle h2 {
        font-size: 10.5px;
    }

    .principle p {
        font-size: 11px;
    }
}

@media (max-width: 760px) {
    .primary-navigation a {
        font-size: 12px;
    }

    .hero-introduction {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .hero-actions .button {
        font-size: 9.5px;
    }

    .principle h2 {
        font-size: 10.5px;
    }

    .principle p {
        font-size: 10.5px;
    }
}

/* IBLA READABILITY FIX END */

/* IBLA CORE BLOCK POLISH START */

/* Core Areas panel */

.home-training-list {
    padding-top: 36px;
    padding-bottom: 31px;
}

.home-training-heading {
    margin-bottom: 25px;
}

.home-training-heading .eyebrow {
    margin-bottom: 8px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.home-training-heading h2 {
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: clamp(37px, 2.55vw, 45px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-transform: none;
    white-space: nowrap;
}

.training-list-columns {
    gap: 4px 36px;
}

.training-list-item {
    min-height: 61px;
}

.training-item-icon,
.training-item-icon img {
    width: 39px;
    height: 39px;
}

.training-item-number {
    width: 23px;
    height: 23px;
    font-size: 10px;
}

.training-list-item h3 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.training-view-button {
    min-height: 46px;
    margin-top: 25px;
    padding-inline: 24px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
}

/* Globe */

.home-training-visual img {
    object-position: center 52%;
    transform: scale(0.94);
}

.home-training-visual::before {
    width: 76px;
}

.home-training-visual::after {
    left: 0;
}

/* Enquiry panel */

.home-enquiry-panel {
    padding: 34px 32px 27px;
}

.home-enquiry-heading {
    margin-bottom: 20px;
}

.home-enquiry-heading .eyebrow {
    margin-bottom: 7px;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.home-enquiry-heading h2 {
    margin-bottom: 9px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.05;
}

.home-enquiry-heading p {
    max-width: 345px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
}

.home-enquiry-form {
    gap: 11px;
}

.home-enquiry-form input,
.home-enquiry-form select,
.home-enquiry-form textarea {
    font-family: var(--font-body);
    font-size: 13px;
}

.home-enquiry-form input,
.home-enquiry-form select {
    height: 46px;
}

.home-enquiry-form textarea {
    min-height: 96px;
}

.home-form-button {
    min-height: 45px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
}

.home-enquiry-form .form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
}

/* Country strip */

.home-country-strip {
    min-height: 105px;
}

.home-country-item {
    padding: 18px 21px;
    gap: 14px;
}

.country-flag,
.country-flag svg {
    width: 47px;
    height: 47px;
}

.home-country-item h3 {
    margin-bottom: 4px;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-country-item p {
    color: #5f6d7e;
    font-family: var(--font-body);
    font-size: 10.5px;
    line-height: 1.42;
}

/* Medium desktop */

@media (min-width: 1021px) and (max-width: 1320px) {
    .home-training-heading h2 {
        font-size: 35px;
    }

    .training-list-item h3 {
        font-size: 12px;
    }

    .home-enquiry-heading h2 {
        font-size: 31px;
    }

    .home-enquiry-heading p {
        font-size: 12px;
    }

    .home-country-item h3 {
        font-size: 9.8px;
    }

    .home-country-item p {
        font-size: 9.8px;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .home-training-list {
        padding: 25px 18px 21px;
    }

    .home-training-heading h2 {
        max-width: 280px;
        font-size: 30px;
        white-space: normal;
    }

    .training-list-item {
        min-height: 57px;
    }

    .training-item-icon,
    .training-item-icon img {
        width: 35px;
        height: 35px;
    }

    .training-list-item h3 {
        font-size: 11.5px;
    }

    .home-training-visual img {
        transform: none;
    }

    .home-enquiry-heading h2 {
        font-size: 29px;
    }

    .home-enquiry-heading p {
        font-size: 12.5px;
    }

    .home-enquiry-form input,
    .home-enquiry-form select,
    .home-enquiry-form textarea {
        font-size: 12.5px;
    }

    .home-country-item h3 {
        font-size: 10px;
    }

    .home-country-item p {
        font-size: 10px;
    }
}

/* IBLA CORE BLOCK POLISH END */

/* IBLA MASTERCLASSES POLISH START */

.masterclasses-section {
    padding-block: 78px 82px;
}

.masterclasses-section .section-header {
    margin-bottom: 35px;
    align-items: end;
}

.masterclasses-section .section-header .eyebrow {
    margin-bottom: 9px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.masterclasses-section .section-header h2 {
    max-width: 700px;
    font-family: var(--font-display);
    font-size: clamp(45px, 3.4vw, 57px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.masterclasses-section .section-header > p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.58;
}

.masterclass-grid {
    gap: 18px;
    align-items: stretch;
}

.masterclass-card {
    min-height: 285px;
    height: 100%;
    padding: 28px 27px 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            rgba(22, 48, 79, 0.95),
            rgba(15, 38, 69, 0.95)
        );
    box-shadow: none;
}

.masterclass-card .card-kicker,
.masterclass-card .eyebrow {
    margin-bottom: 12px;
    color: var(--gold-400);
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.masterclass-card h3 {
    min-height: 61px;
    margin: 0 0 16px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.012em;
}

.masterclass-card p {
    flex-grow: 1;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.58;
}

.masterclass-card a {
    margin-top: auto;
    color: var(--gold-400);
    font-family: var(--font-ui);
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.masterclasses-note {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.56);
    font-family: var(--font-body);
    font-size: 10.5px;
    line-height: 1.5;
    text-align: center;
}

/* Medium desktop */

@media (min-width: 1021px) and (max-width: 1320px) {
    .masterclasses-section .section-header h2 {
        font-size: 48px;
    }

    .masterclasses-section .section-header > p {
        font-size: 13px;
    }

    .masterclass-card {
        min-height: 275px;
        padding: 25px 23px 23px;
    }

    .masterclass-card h3 {
        font-size: 22px;
    }

    .masterclass-card p {
        font-size: 12px;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .masterclasses-section {
        padding-block: 58px 62px;
    }

    .masterclasses-section .section-header {
        margin-bottom: 25px;
        align-items: start;
    }

    .masterclasses-section .section-header h2 {
        max-width: 100%;
        font-size: 38px;
        line-height: 1.02;
    }

    .masterclasses-section .section-header > p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.55;
    }

    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .masterclass-card {
        min-height: 225px;
        padding: 23px 20px 21px;
        border-radius: 8px;
    }

    .masterclass-card .card-kicker,
    .masterclass-card .eyebrow {
        margin-bottom: 9px;
        font-size: 8px;
    }

    .masterclass-card h3 {
        min-height: 0;
        margin-bottom: 12px;
        font-size: 23px;
        line-height: 1.06;
    }

    .masterclass-card p {
        margin-bottom: 17px;
        font-size: 12.5px;
        line-height: 1.55;
    }

    .masterclass-card a {
        font-size: 9px;
    }

    .masterclasses-note {
        margin-top: 20px;
        font-size: 9.5px;
    }
}

/* IBLA MASTERCLASSES POLISH END */

/* IBLA GLOBAL TYPOGRAPHY START */

:root {
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-ui: "Montserrat", Arial, sans-serif;
    --font-body: "Lato", Arial, sans-serif;

    --type-navy: #0a1f3c;
    --type-slate: #5c697b;
}

html {
    font-size: 16px;
}

body,
input,
select,
textarea,
button {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: var(--type-navy);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   GLOBAL DISPLAY HEADINGS
   ========================================================= */

h1,
h2,
h3,
blockquote {
    text-wrap: balance;
}

.section-header h2,
.corporate-content h2,
.leadership-section .section-header h2,
.home-training-heading h2,
.home-enquiry-heading h2,
.masterclasses-section .section-header h2,
.masterclass-card h3,
.corporate-panel blockquote {
    font-family: var(--font-display);
    font-weight: 600;
}

/* =========================================================
   HEADER
   ========================================================= */

.primary-navigation a {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.012em;
}

.header-cta {
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

/* =========================================================
   HERO
   ========================================================= */

.hero .eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(60px, 4.6vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.hero-introduction {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.hero-actions .button {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.hero-insight-text-line {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
}

/* =========================================================
   FEATURE / PRINCIPLE STRIP
   ========================================================= */

.principle h2 {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.018em;
}

.principle p {
    color: #566579;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.45;
}

/* =========================================================
   EYEBROWS / LABELS
   ========================================================= */

.eyebrow,
.card-kicker,
.masterclass-card .eyebrow,
.masterclass-card .card-kicker,
.home-training-heading .eyebrow,
.home-enquiry-heading .eyebrow,
.masterclasses-section .section-header .eyebrow {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================
   CORE AREAS
   ========================================================= */

.home-training-heading h2 {
    font-size: clamp(39px, 2.6vw, 47px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-transform: none;
}

.training-list-item h3 {
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -0.008em;
}

.training-item-number {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
}

.training-view-button {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

/* =========================================================
   TRAINING ENQUIRY
   ========================================================= */

.home-enquiry-heading h2 {
    font-size: 36px;
    line-height: 1.08;
}

.home-enquiry-heading p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.home-enquiry-form input,
.home-enquiry-form select,
.home-enquiry-form textarea {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.45;
}

.home-form-button {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
}

.home-enquiry-form .form-note {
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.45;
}

/* =========================================================
   COUNTRY STRIP
   ========================================================= */

.home-country-item h3 {
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.012em;
}

.home-country-item p {
    color: #5c697b;
    font-family: var(--font-body);
    font-size: 11.5px;
    line-height: 1.45;
}

/* =========================================================
   MASTERCLASSES
   ========================================================= */

.masterclasses-section .section-header h2 {
    font-size: clamp(48px, 3.4vw, 58px);
    line-height: 1;
    letter-spacing: -0.02em;
}

.masterclasses-section .section-header > p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
}

.masterclass-card h3 {
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -0.012em;
}

.masterclass-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.62;
}

.masterclass-card a {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

.masterclasses-note {
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.55;
}

/* =========================================================
   CORPORATE TRAINING
   ========================================================= */

.corporate-content h2 {
    font-size: clamp(49px, 3.55vw, 61px);
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.corporate-content > p {
    color: var(--type-slate);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
}

.check-list li {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
}

.corporate-content .button {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
}

.corporate-panel h3 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
}

.corporate-panel .eyebrow {
    font-size: 10px;
}

.corporate-panel blockquote {
    font-size: 25px;
    line-height: 1.3;
}

.corporate-panel-meta strong {
    font-family: var(--font-ui);
    font-size: 10.5px;
}

.corporate-panel-meta span {
    font-family: var(--font-body);
    font-size: 11px;
}

/* =========================================================
   TEAM
   ========================================================= */

.leadership-section .section-header h2 {
    font-size: clamp(47px, 3.25vw, 57px);
    line-height: 1;
}

.leadership-section .section-header > p {
    color: var(--type-slate);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.team-card h3 {
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
}

.team-card p {
    color: #647184;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.45;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-brand > p {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.65;
}

.footer-links h2,
.footer-contact h2 {
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.55;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 11.5px;
    line-height: 1.5;
}

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

@media (min-width: 761px) and (max-width: 1320px) {
    .primary-navigation a {
        font-size: 10.5px;
    }

    .header-cta {
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(53px, 5.4vw, 66px);
    }

    .hero-introduction {
        font-size: 15px;
    }

    .principle h2 {
        font-size: 10.5px;
    }

    .principle p {
        font-size: 11px;
    }

    .training-list-item h3 {
        font-size: 12px;
    }

    .home-country-item h3,
    .home-country-item p {
        font-size: 10px;
    }
}

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

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .primary-navigation a {
        font-size: 13px;
    }

    .hero .eyebrow {
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 45px);
        line-height: 0.98;
    }

    .hero-introduction {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-actions .button {
        font-size: 10px;
    }

    .hero-insight-text-line {
        font-size: 14px;
    }

    .principle h2 {
        font-size: 11px;
    }

    .principle p {
        font-size: 11px;
    }

    .home-training-heading h2 {
        font-size: 31px;
        line-height: 1.08;
    }

    .training-list-item h3 {
        font-size: 12px;
    }

    .home-enquiry-heading h2 {
        font-size: 31px;
    }

    .home-enquiry-heading p,
    .home-enquiry-form input,
    .home-enquiry-form select,
    .home-enquiry-form textarea {
        font-size: 13.5px;
    }

    .home-country-item h3,
    .home-country-item p {
        font-size: 10.5px;
    }

    .masterclasses-section .section-header h2 {
        font-size: 40px;
    }

    .masterclasses-section .section-header > p {
        font-size: 14px;
    }

    .masterclass-card h3 {
        font-size: 24px;
    }

    .masterclass-card p {
        font-size: 13.5px;
    }

    .corporate-content h2 {
        font-size: 41px;
    }

    .corporate-content > p {
        font-size: 14px;
    }

    .check-list li {
        font-size: 12px;
    }

    .corporate-panel blockquote {
        font-size: 22px;
    }

    .leadership-section .section-header h2 {
        font-size: 39px;
    }

    .leadership-section .section-header > p {
        font-size: 13.5px;
    }

    .team-card h3 {
        font-size: 13px;
    }

    .team-card p {
        font-size: 11.5px;
    }

    .footer-brand > p,
    .footer-links a,
    .footer-contact p,
    .footer-contact a {
        font-size: 12px;
    }

    .footer-links h2,
    .footer-contact h2 {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10.5px;
    }
}

/* IBLA GLOBAL TYPOGRAPHY END */

/* IBLA MENU SPACING FINAL START */

@media (min-width: 1321px) {
    .header-shell {
        grid-template-columns: 225px minmax(0, 1fr) 145px;
        column-gap: 38px;
    }

    .primary-navigation {
        gap: clamp(25px, 1.65vw, 35px);
    }

    .primary-navigation a {
        padding-inline: 2px;
    }
}

@media (min-width: 1021px) and (max-width: 1320px) {
    .primary-navigation {
        gap: 18px;
    }

    .header-shell {
        column-gap: 24px;
    }
}

/* IBLA MENU SPACING FINAL END */

/* IBLA FINAL MOBILE READABILITY START */

@media (max-width: 760px) {
    /* Header and logo */

    :root {
        --header-height: 70px;
    }

    .header-shell {
        width: calc(100% - 18px);
        min-height: var(--header-height);
    }

    .brand-header {
        width: 158px;
        height: 58px;
        flex: 0 0 158px;
        transform: none;
    }

    .brand-logo-header {
        width: 158px;
        max-width: 158px;
        max-height: 56px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .primary-navigation {
        top: var(--header-height);
    }

    /* Hero readability */

    .hero {
        min-height: 565px;
    }

    .hero-layout {
        min-height: 565px;
        width: calc(100% - 24px);
        padding-top: 38px;
        padding-bottom: 25px;
    }

    .hero .eyebrow {
        max-width: 300px;
        margin-bottom: 11px;
        font-size: 9.5px;
        line-height: 1.45;
    }

    .hero h1 {
        max-width: 310px;
        margin-bottom: 16px;
        font-size: clamp(39px, 11.2vw, 46px);
        line-height: 0.99;
    }

    .hero-introduction {
        max-width: 315px;
        margin-bottom: 21px;
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-actions {
        width: min(100%, 315px);
    }

    .hero-actions .button {
        min-height: 44px;
        font-size: 10px;
    }

    .hero-visual {
        min-height: 112px;
    }

    .hero-insight-card {
        width: min(100%, 292px);
        min-height: 94px;
        gap: 13px;
        padding: 14px 16px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 47px;
        height: 47px;
        min-width: 47px;
    }

    .hero-insight-text-line {
        font-size: 14.5px;
        line-height: 1.3;
    }

    .hero-insight-line {
        width: 43px;
        margin-top: 9px;
    }

    /* Principles strip */

    .principles-grid {
        grid-template-columns: repeat(5, 225px);
    }

    .principle {
        width: 225px;
        min-width: 225px;
        min-height: 88px;
        padding: 15px 16px;
    }

    .principle h2 {
        font-size: 11.2px;
    }

    .principle p {
        font-size: 11px;
        line-height: 1.42;
    }

    /* Core Areas */

    .home-training-list {
        padding: 26px 17px 22px;
    }

    .home-training-heading h2 {
        max-width: 290px;
        font-size: 31px;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        min-height: 59px;
        grid-template-columns: 37px minmax(0, 1fr);
    }

    .training-item-icon,
    .training-item-icon img {
        width: 35px;
        height: 35px;
    }

    .training-list-item h3 {
        font-size: 12.2px;
        line-height: 1.4;
    }

    .training-view-button {
        min-height: 45px;
        font-size: 9.8px;
    }

    /* Enquiry form */

    .home-enquiry-panel {
        padding: 27px 15px 22px;
    }

    .home-enquiry-heading h2 {
        font-size: 31px;
    }

    .home-enquiry-heading p {
        font-size: 13.5px;
    }

    .home-enquiry-form input,
    .home-enquiry-form select {
        height: 45px;
    }

    .home-enquiry-form input,
    .home-enquiry-form select,
    .home-enquiry-form textarea {
        font-size: 13.5px;
    }

    .home-enquiry-form textarea {
        min-height: 96px;
    }

    .home-form-button {
        min-height: 44px;
        font-size: 10px;
    }

    .home-enquiry-form .form-note {
        font-size: 10px;
        line-height: 1.45;
    }

    /* Country strip */

    .home-country-strip {
        grid-template-columns: repeat(5, 230px);
    }

    .home-country-item {
        width: 230px;
        min-width: 230px;
        min-height: 96px;
        padding: 16px 18px;
    }

    .home-country-item h3 {
        font-size: 11px;
        line-height: 1.35;
    }

    .home-country-item p {
        font-size: 10.8px;
        line-height: 1.45;
    }

    /* Masterclasses */

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

    .masterclass-card h3 {
        font-size: 24px;
    }

    .masterclass-card p {
        font-size: 13.5px;
    }

    /* Corporate */

    .corporate-content h2 {
        max-width: 320px;
        font-size: 38px;
        line-height: 1;
    }

    .corporate-content > p {
        font-size: 14px;
        line-height: 1.62;
    }

    .check-list li {
        font-size: 12.2px;
        line-height: 1.5;
    }

    .corporate-panel {
        min-height: 350px;
        padding: 27px 20px;
    }

    .corporate-panel blockquote {
        font-size: 22px;
        line-height: 1.32;
    }

    /* Team */

    .leadership-section .section-header h2 {
        font-size: 38px;
    }

    .leadership-section .section-header > p {
        font-size: 13.5px;
    }

    .team-card {
        min-height: 100px;
    }

    .team-card h3 {
        font-size: 13.2px;
    }

    .team-card p {
        font-size: 11.8px;
        line-height: 1.45;
    }

    /* Footer */

    .footer-main {
        gap: 29px;
        padding-top: 48px;
        padding-bottom: 44px;
    }

    .footer-brand > p {
        font-size: 12.2px;
        line-height: 1.65;
    }

    .footer-links,
    .footer-contact {
        gap: 9px;
    }

    .footer-links h2,
    .footer-contact h2 {
        margin-bottom: 5px;
        font-size: 11.5px;
    }

    .footer-links a,
    .footer-contact p,
    .footer-contact a {
        font-size: 12.2px;
        line-height: 1.6;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 10.5px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .brand-header {
        width: 150px;
        flex-basis: 150px;
    }

    .brand-logo-header {
        width: 150px;
        max-width: 150px;
    }

    .hero h1 {
        max-width: 292px;
        font-size: 39px;
    }

    .hero-introduction {
        max-width: 292px;
        font-size: 13.5px;
    }

    .corporate-content h2 {
        max-width: 290px;
        font-size: 36px;
    }
}

/* IBLA FINAL MOBILE READABILITY END */

/* IBLA MOBILE FINAL CORRECTION START */

@media (max-width: 760px) {
    /*
     * Restore a compact version of the approved hero insight card.
     */
    .hero-layout {
        gap: 15px;
    }

    .hero-visual {
        min-height: 106px;
        display: block;
    }

    .hero-insight-card {
        position: absolute;
        right: auto;
        bottom: 4px;
        left: 0;
        width: min(100%, 292px);
        min-height: 88px;
        display: flex;
        visibility: visible;
        opacity: 1;
        gap: 12px;
        padding: 13px 15px;
        border-radius: 10px;
    }

    .hero-insight-icon,
    .hero-insight-icon img {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .hero-insight-text-line {
        font-size: 14px;
        line-height: 1.27;
    }

    .hero-insight-line {
        width: 42px;
        margin-top: 8px;
    }

    /*
     * Reduce excessive wrapping while retaining the editorial hierarchy.
     */
    .corporate-content h2 {
        max-width: 330px;
        font-size: 35px;
        line-height: 1.02;
        letter-spacing: -0.02em;
    }
}

@media (max-width: 390px) {
    .hero-insight-card {
        width: min(100%, 286px);
    }

    .corporate-content h2 {
        max-width: 310px;
        font-size: 34px;
    }
}

/* IBLA MOBILE FINAL CORRECTION END */

/* IBLA CORPORATE MOBILE SPACING START */

@media (max-width: 760px) {
    .corporate-section > .container {
        width: calc(100% - 28px);
        margin-inline: auto;
    }

    .corporate-layout {
        width: 100%;
        gap: 30px;
    }

    .corporate-content {
        width: 100%;
        padding-inline: 2px;
    }

    .corporate-content .eyebrow {
        margin-bottom: 12px;
    }

    .corporate-content h2 {
        max-width: 320px;
        margin-bottom: 20px;
    }

    .corporate-content > p {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .check-list {
        margin-bottom: 24px;
    }

    .corporate-content .button {
        max-width: 100%;
    }

    .corporate-panel {
        width: 100%;
        margin-inline: auto;
        border-radius: 18px;
    }
}

@media (max-width: 390px) {
    .corporate-section > .container {
        width: calc(100% - 24px);
    }

    .corporate-content {
        padding-inline: 0;
    }
}

/* IBLA CORPORATE MOBILE SPACING END */

/* IBLA GLOBE MOBILE FIX START */

@media (max-width: 760px) {
    .home-training-visual,
    .home-training-visual::before,
    .home-training-visual::after,
    .home-training-visual picture,
    .home-training-visual img {
        border-top-left-radius: 0 !important;
        clip-path: none !important;
    }

    .home-training-visual {
        overflow: hidden;
        background: transparent;
    }

    .home-training-visual::before,
    .home-training-visual::after {
        display: none !important;
        content: none !important;
    }

    .home-training-visual picture,
    .home-training-visual img {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* IBLA GLOBE MOBILE FIX END */

/* IBLA MASTERCLASS VISUAL POLISH START */

.masterclass-grid {
    align-items: stretch;
}

.masterclass-card {
    position: relative;
    min-height: 310px;
    height: 100%;
    padding: 28px 27px 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(211, 155, 24, 0.1),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(24, 54, 90, 0.98),
            rgba(10, 31, 60, 0.98)
        );
    box-shadow: 0 14px 30px rgba(2, 14, 33, 0.12);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.masterclass-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(211, 155, 24, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.masterclass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 155, 24, 0.45);
    box-shadow: 0 22px 44px rgba(2, 14, 33, 0.2);
}

.masterclass-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
}

.masterclass-card-icon img {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.masterclass-card .card-label,
.masterclass-card .card-kicker,
.masterclass-card .eyebrow {
    margin-bottom: 10px;
    color: var(--gold-400);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.masterclass-card h3 {
    min-height: 58px;
    margin: 0 0 15px;
    font-size: 27px;
    line-height: 1.08;
}

.masterclass-card p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.62;
}

.masterclass-card a {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.masterclass-card a::after {
    content: "→";
    transition: transform 160ms ease;
}

.masterclass-card a:hover::after {
    transform: translateX(4px);
}

@media (min-width: 1021px) and (max-width: 1320px) {
    .masterclass-card {
        min-height: 295px;
        padding: 25px 23px 23px;
    }

    .masterclass-card-icon,
    .masterclass-card-icon img {
        width: 47px;
        height: 47px;
    }

    .masterclass-card h3 {
        font-size: 24px;
    }

    .masterclass-card p {
        font-size: 13px;
    }
}

@media (max-width: 760px) {
    .masterclass-card {
        min-height: 250px;
        padding: 23px 20px 21px;
        border-radius: 10px;
    }

    .masterclass-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 15px;
    }

    .masterclass-card-icon img {
        width: 46px;
        height: 46px;
    }

    .masterclass-card .card-label,
    .masterclass-card .card-kicker,
    .masterclass-card .eyebrow {
        margin-bottom: 8px;
        font-size: 9px;
    }

    .masterclass-card h3 {
        min-height: 0;
        margin-bottom: 12px;
        font-size: 24px;
    }

    .masterclass-card p {
        margin-bottom: 18px;
        font-size: 13.5px;
    }

    .masterclass-card a {
        font-size: 10px;
    }
}

/* IBLA MASTERCLASS VISUAL POLISH END */

/* IBLA MASTERCLASS DETAIL REFINE START */

.masterclass-card {
    min-height: 285px;
}

.masterclass-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(211, 155, 24, 0.08);
    box-shadow: 0 0 0 1px rgba(211, 155, 24, 0.12);
}

.masterclass-card-icon img {
    width: 46px;
    height: 46px;
    filter:
        brightness(0)
        saturate(100%)
        invert(68%)
        sepia(70%)
        saturate(780%)
        hue-rotate(2deg)
        brightness(91%)
        contrast(88%);
}

.masterclass-card .card-label,
.masterclass-card .card-kicker,
.masterclass-card .eyebrow {
    margin-bottom: 9px;
}

.masterclass-card h3 {
    min-height: 0;
    margin-bottom: 13px;
}

.masterclass-card p {
    margin-bottom: 18px;
}

/* Existing text already contains an arrow */
.masterclass-card a::after {
    content: none;
}

.masterclass-card a {
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.masterclass-card a:hover {
    transform: translateX(3px);
}

@media (max-width: 760px) {
    .masterclass-card {
        min-height: 235px;
    }

    .masterclass-card-icon,
    .masterclass-card-icon img {
        width: 48px;
        height: 48px;
    }
}

/* IBLA MASTERCLASS DETAIL REFINE END */

/* IBLA MASTERCLASS VIEWPORT FIT START */

/*
 * Compact only on desktop/laptop screens with limited vertical space.
 * Hero, Core Areas, mobile and taller desktop screens remain unchanged.
 */
@media (min-width: 1024px) and (max-height: 900px) {
    .masterclasses-section,
    .masterclass-section,
    #masterclasses {
        padding-top: 54px;
        padding-bottom: 30px;
    }

    .masterclasses-header,
    .masterclass-header,
    .masterclasses-section .section-header,
    #masterclasses .section-header {
        margin-bottom: 26px;
    }

    .masterclass-grid {
        gap: 18px;
    }

    .masterclass-card {
        min-height: 255px;
        padding: 22px 25px 20px;
    }

    .masterclass-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 11px;
    }

    .masterclass-card-icon img {
        width: 48px;
        height: 48px;
    }

    .masterclass-card .card-label,
    .masterclass-card .card-kicker,
    .masterclass-card .eyebrow {
        margin-bottom: 7px;
    }

    .masterclass-card h3 {
        margin-bottom: 10px;
        font-size: 25px;
        line-height: 1.06;
    }

    .masterclass-card p {
        margin-bottom: 13px;
        font-size: 13.5px;
        line-height: 1.5;
    }

    .masterclass-disclaimer,
    .masterclasses-disclaimer {
        margin-top: 20px;
    }
}

@media (min-width: 1024px) and (max-height: 780px) {
    .masterclasses-section,
    .masterclass-section,
    #masterclasses {
        padding-top: 38px;
        padding-bottom: 22px;
    }

    .masterclasses-header,
    .masterclass-header,
    .masterclasses-section .section-header,
    #masterclasses .section-header {
        margin-bottom: 18px;
    }

    .masterclass-grid {
        gap: 14px;
    }

    .masterclass-card {
        min-height: 225px;
        padding: 18px 22px 17px;
    }

    .masterclass-card-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 8px;
    }

    .masterclass-card-icon img {
        width: 43px;
        height: 43px;
    }

    .masterclass-card h3 {
        font-size: 23px;
        margin-bottom: 8px;
    }

    .masterclass-card p {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.42;
    }

    .masterclass-disclaimer,
    .masterclasses-disclaimer {
        margin-top: 14px;
    }
}

/* IBLA MASTERCLASS VIEWPORT FIT END */

/* IBLA CORPORATE VISUAL POLISH START */

.corporate-section {
    position: relative;
    overflow: hidden;
}

.corporate-layout {
    align-items: stretch;
}

.check-list {
    display: grid;
    gap: 11px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.corporate-check-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: grid;
    place-items: center;
}

.corporate-check-icon img {
    width: 21px;
    height: 21px;
    display: block;
}

.corporate-content .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 25px rgba(173, 121, 0, 0.18);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.corporate-content .button::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
    transition: transform 180ms ease;
}

.corporate-content .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(173, 121, 0, 0.25);
}

.corporate-content .button:hover::after {
    transform: translateX(4px);
}

.corporate-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(211, 155, 24, 0.28);
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(211, 155, 24, 0.18),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #163b60 0%,
            #0a2343 58%,
            #071b34 100%
        );
    box-shadow:
        0 24px 50px rgba(4, 21, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.corporate-panel::before {
    content: "";
    position: absolute;
    top: -88px;
    right: -72px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(211, 155, 24, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.corporate-panel::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 27px;
    width: 62px;
    height: 2px;
    background: var(--gold-400);
    opacity: 0.8;
    pointer-events: none;
}

.corporate-panel > * {
    position: relative;
    z-index: 1;
}

.corporate-panel-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corporate-panel-top > span {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(211, 155, 24, 0.72);
    border-radius: 50%;
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.corporate-panel-top small {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.corporate-panel blockquote {
    position: relative;
    max-width: 650px;
    margin-block: 35px;
    padding-left: 25px;
    color: #fff;
}

.corporate-panel blockquote::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 3px;
    border-radius: 20px;
    background: var(--gold-400);
}

.corporate-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.corporate-metric {
    min-width: 0;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(4px);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.corporate-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 155, 24, 0.45);
    background: rgba(255, 255, 255, 0.075);
}

.corporate-metric-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
}

.corporate-metric-icon img {
    width: 43px;
    height: 43px;
    display: block;
}

.corporate-metric-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.corporate-metric-copy strong {
    color: #fff;
}

.corporate-metric-copy > span {
    color: rgba(255, 255, 255, 0.66);
}

@media (min-width: 1024px) and (max-width: 1240px) {
    .corporate-metrics {
        gap: 9px;
    }

    .corporate-metric {
        padding: 13px 10px;
        gap: 8px;
    }

    .corporate-metric-icon,
    .corporate-metric-icon img {
        width: 37px;
        height: 37px;
    }
}

@media (max-width: 760px) {
    .check-list {
        gap: 10px;
    }

    .check-list li {
        align-items: flex-start;
        gap: 10px;
    }

    .corporate-check-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        margin-top: 1px;
    }

    .corporate-check-icon img {
        width: 20px;
        height: 20px;
    }

    .corporate-content .button {
        width: 100%;
    }

    .corporate-panel {
        padding: 27px 20px;
    }

    .corporate-panel blockquote {
        margin-block: 27px;
        padding-left: 20px;
    }

    .corporate-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .corporate-metric {
        padding: 13px 14px;
    }

    .corporate-metric-icon,
    .corporate-metric-icon img {
        width: 42px;
        height: 42px;
    }
}

/* IBLA CORPORATE VISUAL POLISH END */

/* IBLA CORPORATE CHECK DUPLICATE FIX START */

.check-list li::before,
.check-list li::after {
    content: none !important;
    display: none !important;
}

/* IBLA CORPORATE CHECK DUPLICATE FIX END */

/* IBLA CORPORATE BRAND ENHANCEMENT START */

.corporate-section {
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(211, 155, 24, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(10, 31, 60, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            #fbfaf7 0%,
            #ffffff 52%,
            #f8f7f3 100%
        );
    background-size:
        52px 52px,
        52px 52px,
        auto;
}

.corporate-section::before {
    content: "IBLA";
    position: absolute;
    z-index: -1;
    left: clamp(44%, 47vw, 51%);
    bottom: 4%;
    color: rgba(10, 31, 60, 0.025);
    font-family: var(--font-display);
    font-size: clamp(150px, 17vw, 290px);
    font-weight: 600;
    line-height: 0.8;
    letter-spacing: -0.055em;
    pointer-events: none;
    user-select: none;
}

.corporate-content {
    position: relative;
}

.corporate-content::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -28px;
    width: 3px;
    height: 102px;
    border-radius: 999px;
    background:
        linear-gradient(
            to bottom,
            var(--gold-400),
            rgba(211, 155, 24, 0.12)
        );
}

.corporate-heading-meta {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.corporate-heading-meta .eyebrow {
    margin: 0;
}

.corporate-audience-badge {
    min-height: 28px;
    padding: 6px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(211, 155, 24, 0.27);
    border-radius: 999px;
    background: rgba(211, 155, 24, 0.065);
    color: #755400;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.corporate-audience-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(211, 155, 24, 0.11);
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .corporate-content::before {
        left: -18px;
    }

    .corporate-section::before {
        left: 43%;
        font-size: 170px;
    }
}

@media (max-width: 760px) {
    .corporate-section {
        background:
            linear-gradient(
                135deg,
                #fbfaf7 0%,
                #ffffff 58%,
                #f8f7f3 100%
            );
    }

    .corporate-section::before {
        right: -10px;
        bottom: 47%;
        left: auto;
        font-size: 112px;
        opacity: 0.55;
    }

    .corporate-content::before {
        top: 5px;
        left: -12px;
        width: 2px;
        height: 78px;
    }

    .corporate-heading-meta {
        margin-bottom: 15px;
        gap: 10px;
    }

    .corporate-audience-badge {
        min-height: 26px;
        padding: 6px 9px;
        font-size: 8px;
    }
}

@media (max-width: 390px) {
    .corporate-audience-badge {
        width: fit-content;
    }

    .corporate-section::before {
        display: none;
    }
}

/* IBLA CORPORATE BRAND ENHANCEMENT END */

/* IBLA TEAM PHOTO POLISH START */

.team-grid {
    align-items: stretch;
}

.team-card {
    position: relative;
    min-width: 0;
    min-height: 154px;
    height: 100%;
    padding: 24px 25px;
    display: flex;
    align-items: center;
    gap: 19px;
    overflow: hidden;
}

.team-card > div:last-child {
    min-width: 0;
    flex: 1;
}

.team-avatar {
    position: relative;
    width: 82px;
    height: 82px;
    min-width: 82px;
    flex: 0 0 82px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(211, 155, 24, 0.44);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        #09203d;
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.team-avatar-photo img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
    background: #e9edf2;
}

.team-avatar-fallback {
    position: relative;
    z-index: 1;
}

.team-avatar-photo img[src] + .team-avatar-fallback {
    visibility: hidden;
}

.team-card h3 {
    max-width: 100%;
    margin: 0 0 7px;
    overflow-wrap: anywhere;
}

.team-card p {
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
}

.team-card-featured {
    border-color: rgba(211, 155, 24, 0.47);
    background:
        radial-gradient(
            circle at 14% 50%,
            rgba(211, 155, 24, 0.075),
            transparent 46%
        ),
        #fff;
}

.team-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 155, 24, 0.4);
    box-shadow: 0 16px 34px rgba(10, 31, 60, 0.09);
}

@media (min-width: 1024px) and (max-width: 1320px) {
    .team-card {
        min-height: 142px;
        padding: 21px 20px;
        gap: 15px;
    }

    .team-avatar {
        width: 72px;
        height: 72px;
        min-width: 72px;
        flex-basis: 72px;
        font-size: 21px;
    }
}

@media (max-width: 760px) {
    .team-card {
        min-height: 112px;
        padding: 17px 16px;
        gap: 14px;
        border-radius: 15px;
    }

    .team-avatar {
        width: 68px;
        height: 68px;
        min-width: 68px;
        flex-basis: 68px;
        font-size: 20px;
    }

    .team-card h3 {
        margin-bottom: 5px;
    }
}

@media (max-width: 390px) {
    .team-card {
        padding: 15px 14px;
        gap: 12px;
    }

    .team-avatar {
        width: 62px;
        height: 62px;
        min-width: 62px;
        flex-basis: 62px;
        font-size: 18px;
    }
}

/* IBLA TEAM PHOTO POLISH END */

/* ==========================================================
   HOMEPAGE ENQUIRY FORM — FUNCTIONAL STATES
   ========================================================== */

.home-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.home-form-feedback {
    display: none;
    margin: 0 0 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.55;
    outline: none;
}

.home-form-feedback.is-visible {
    display: block;
}

.home-form-feedback.is-success {
    color: #174c35;
    background: #edf8f2;
    border-color: #b7ddc7;
}

.home-form-feedback.is-error {
    color: #7b2525;
    background: #fff2f2;
    border-color: #e5bcbc;
}

.home-form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 0.7rem;
    color: inherit;
    font-size: 0.8rem;
    line-height: 1.5;
}

.home-form-consent input {
    flex: 0 0 auto;
    width: 1rem !important;
    height: 1rem !important;
    min-height: 0 !important;
    margin-top: 0.15rem;
}

.home-form-button:disabled,
.home-form-button[aria-disabled="true"] {
    cursor: wait;
    opacity: 0.72;
}

/* ==========================================================
   HOMEPAGE ENQUIRY — FINAL VISIBILITY AND CLEANUP FIX
   ========================================================== */

.home-enquiry-panel .home-form-consent,
.home-enquiry-panel .home-form-consent span {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.home-enquiry-panel .home-form-consent {
    display: grid !important;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
    width: 100%;
}

.home-enquiry-panel .home-form-consent input[type="checkbox"] {
    display: block !important;
    width: 1rem !important;
    height: 1rem !important;
    min-height: 0 !important;
    margin: 0.18rem 0 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    accent-color: #d79b14;
}

.home-enquiry-panel .home-form-consent span {
    display: block !important;
    font-size: 0.82rem;
    line-height: 1.55;
}

.home-enquiry-form .form-note {
    display: none !important;
}

.home-form-button:disabled {
    pointer-events: none;
}

.home-training-number,
.training-number,
.training-item-number,
.training-index,
.training-badge,
.core-training-number,
.core-area-number {
    display: none !important;
}

/* ==========================================================
   IBLA CORE AREAS NUMBERLESS GRID FIX
   ========================================================== */

/*
 * The numbered badge column was removed from the markup.
 * Both desktop columns now use the same icon + content grid.
 */
.training-list-item,
.training-list-column:nth-child(2) .training-list-item {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
}

.training-list-item h3 {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

/*
 * Keep the two-column desktop presentation readable without
 * altering the approved overall panel proportions.
 */
@media (min-width: 1200px) {
    .training-list-columns {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(0, 0.92fr);
        column-gap: 36px;
    }

    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .training-list-item h3 {
        font-size: 13px;
        line-height: 1.35;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        grid-template-columns: 37px minmax(0, 1fr);
        gap: 10px;
    }

    .training-list-item h3 {
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 768px) {
    .training-list-item,
    .training-list-column:nth-child(2) .training-list-item {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
    }

    .training-list-item h3 {
        overflow-wrap: normal;
        word-break: normal;
    }
}

/* ==========================================================
   IBLA MASTERCLASS ORIGINAL SVG COLOR FIX
   ========================================================== */

/*
 * Masterclass SVG assets already contain the approved navy,
 * white and gold palette. Do not recolour the whole SVG image.
 */
.masterclass-card-icon {
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.masterclass-card-icon img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: none !important;
    opacity: 1;
}

@media (max-width: 1199px) {
    .masterclass-card-icon,
    .masterclass-card-icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .masterclass-card-icon,
    .masterclass-card-icon img {
        width: 43px;
        height: 43px;
    }
}

/* ==========================================================
   IBLA GLOBAL MOBILE NAVIGATION V1
   ========================================================== */

.mobile-navigation-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 998;
    visibility: hidden;
    background: rgba(4, 18, 38, 0.56);
    opacity: 0;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.mobile-navigation-backdrop.is-visible {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-cta {
    display: none;
}

@media (max-width: 1020px) {
    body.menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    /*
     * backdrop-filter can create a containing block for fixed children.
     * Disable it while the mobile drawer is open so the navigation uses
     * the full viewport height.
     */
    body.menu-open .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header {
        z-index: 1000;
    }

    .header-shell {
        position: relative;
        z-index: 1001;
    }

    .menu-toggle {
        position: relative;
        z-index: 1003;
        flex: 0 0 auto;
        border-radius: 6px;
    }

    .menu-toggle:focus-visible {
        outline: 3px solid rgba(199, 154, 46, 0.42);
        outline-offset: 3px;
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: auto;
        z-index: 1002;
        width: min(430px, 100vw);
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        margin: 0;
        padding: 18px 26px 30px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--white);
        box-shadow: -24px 28px 70px rgba(4, 18, 38, 0.24);
        visibility: hidden;
        opacity: 0;
        transform: translateX(104%);
        transition:
            transform 240ms ease,
            opacity 200ms ease,
            visibility 240ms ease;
        -webkit-overflow-scrolling: touch;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .primary-navigation > a {
        min-height: 58px;
        padding: 17px 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        color: var(--navy-900);
        border-bottom: 1px solid var(--border);
        font-size: 13px;
        font-weight: 800;
        line-height: 1.35;
        letter-spacing: 0.045em;
        white-space: normal;
    }

    .primary-navigation > a:first-child {
        border-top: 0;
    }

    .primary-navigation > a.is-active {
        color: var(--gold-600);
    }

    .primary-navigation > a::after {
        display: none;
    }

    .primary-navigation .nav-dropdown {
        gap: 18px;
    }

    .primary-navigation .nav-chevron {
        width: 9px;
        height: 9px;
        flex: 0 0 auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-45deg);
    }

    .primary-navigation .mobile-nav-cta {
        min-height: 52px;
        margin-top: 22px;
        padding: 14px 20px;
        display: inline-flex;
        justify-content: center;
        color: var(--white);
        border: 0;
        border-radius: 4px;
        background:
            linear-gradient(135deg, var(--gold-600), var(--gold-500));
        box-shadow: 0 12px 24px rgba(185, 120, 0, 0.22);
        text-align: center;
    }

    .primary-navigation .mobile-nav-cta:hover {
        color: var(--white);
    }
}

@media (max-width: 600px) {
    .primary-navigation {
        width: 100vw;
        padding: 14px 22px 26px;
    }

    .primary-navigation > a {
        min-height: 56px;
        padding-inline: 5px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .primary-navigation,
    .mobile-navigation-backdrop,
    .menu-toggle span {
        transition: none;
    }
}

/* ==========================================================
   IBLA MOBILE CTA DESKTOP VISIBILITY FIX
   ========================================================== */

/*
 * The JavaScript-generated Enquire Now link belongs only inside
 * the mobile navigation drawer. The separate .header-cta remains
 * the desktop Enquire Now button.
 */
.primary-navigation > .mobile-nav-cta {
    display: none !important;
}

@media (max-width: 1020px) {
    .primary-navigation > .mobile-nav-cta {
        display: inline-flex !important;
    }
}

/* IBLA SAUDI FLAG FINAL DISPLAY */

.region-flag.region-flag-saudi {
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex: 0 0 46px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: transparent;
}

.region-flag.region-flag-saudi img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}
