:root {
    --abm-ink: #18221d;
    --abm-ink-soft: #34413a;

    --abm-forest: #174d3b;
    --abm-forest-dark: #10392d;
    --abm-forest-soft: #e7eee9;

    --abm-bronze: #9a7044;
    --abm-bronze-soft: #eee4d7;

    --abm-paper: #fbf8f2;
    --abm-cream: #f4eee4;
    --abm-white: #fffdfa;

    --abm-muted: #6b756f;
    --abm-border: #ddd9d0;

    --abm-page: 1220px;
    --abm-reading: 760px;

    --abm-radius-small: 6px;
    --abm-radius-medium: 10px;

    --abm-shadow-soft:
        0 18px 50px rgba(24, 34, 29, 0.07);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--abm-paper);
    color: var(--abm-ink);
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 1rem;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--abm-bronze-soft);
    color: var(--abm-ink);
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

a {
    color: inherit;
}

p {
    margin-block: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-start: 0;
    color: var(--abm-ink);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

.abm-shell {
    width: min(
        calc(100% - 2.5rem),
        var(--abm-page)
    );
    margin-inline: auto;
}

.abm-reading-width {
    max-width: var(--abm-reading);
}

.abm-site-main {
    min-height: 60vh;
}

.abm-skip-link {
    position: fixed;
    z-index: 9999;
    inset-block-start: 1rem;
    inset-inline-start: 1rem;
    transform: translateY(-220%);
    padding: 0.75rem 1rem;
    border-radius: var(--abm-radius-small);
    background: var(--abm-ink);
    color: #fff;
    text-decoration: none;
}

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


/* =========================================================
   HEADER
   ========================================================= */

.abm-site-header {
    position: relative;
    z-index: 50;
    border-block-end: 1px solid rgba(24, 34, 29, 0.1);
    background: rgba(251, 248, 242, 0.97);
}

.abm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    gap: 2rem;
}

.abm-brand {
    flex: 0 0 auto;
}

.abm-brand-name {
    color: var(--abm-ink);
    font-size: 1rem;
    font-weight: 720;
    letter-spacing: -0.015em;
    text-decoration: none;
}

.custom-logo {
    width: auto;
    max-height: 3rem;
}

.abm-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.abm-menu,
.abm-footer-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abm-menu a,
.abm-footer-menu a {
    color: var(--abm-ink-soft);
    font-size: 0.93rem;
    font-weight: 540;
    text-decoration: none;
}

.abm-menu a:hover,
.abm-footer-menu a:hover {
    color: var(--abm-forest);
}


/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.abm-language-switcher {
    flex: 0 0 auto;
}

.abm-language-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abm-language-link {
    display: grid;
    place-items: center;
    min-width: 2.2rem;
    min-height: 2.2rem;
    padding: 0.3rem 0.42rem;
    border: 1px solid transparent;
    border-radius: var(--abm-radius-small);
    color: var(--abm-muted);
    font-size: 0.69rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.045em;
    text-decoration: none;
}

.abm-language-link:hover {
    color: var(--abm-ink);
    border-color: var(--abm-border);
}

.abm-language-link:focus-visible {
    outline: 2px solid var(--abm-forest);
    outline-offset: 2px;
}

.abm-language-item.is-current .abm-language-link {
    border-color: rgba(23, 77, 59, 0.18);
    background: var(--abm-forest-soft);
    color: var(--abm-forest-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.abm-home-hero {
    position: relative;
    overflow: hidden;
    padding-block:
        clamp(5rem, 10vw, 9.5rem)
        clamp(4rem, 8vw, 7rem);
    background: var(--abm-paper);
}

.abm-home-hero::after {
    content: "";
    position: absolute;
    inset-block-start: 5rem;
    inset-inline-end: -8rem;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(154, 112, 68, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.abm-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(18rem, 0.55fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 7.5rem);
}

.abm-hero-copy {
    max-width: 52rem;
}

.abm-kicker,
.abm-section-label,
.abm-panel-label {
    margin-block-end: 1.35rem;
    color: var(--abm-bronze);
    font-size: 0.72rem;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.abm-hero-copy h1 {
    max-width: 13ch;
    margin-block-end: 1.75rem;
    font-size: clamp(3rem, 7.3vw, 6.75rem);
    font-weight: 610;
    line-height: 0.99;
    letter-spacing: -0.055em;
}

.abm-hero-lead {
    max-width: 39rem;
    margin-block-end: 2rem;
    color: var(--abm-ink-soft);
    font-size: clamp(1.08rem, 2vw, 1.33rem);
    line-height: 1.62;
}

.abm-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
}

.abm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 1.15rem;
    border-radius: var(--abm-radius-small);
    font-size: 0.93rem;
    font-weight: 650;
    text-decoration: none;
}

.abm-button-primary {
    border: 1px solid var(--abm-forest);
    background: var(--abm-forest);
    color: #fff;
}

.abm-button-primary:hover {
    background: var(--abm-forest-dark);
}

.abm-text-link {
    color: var(--abm-ink);
    font-size: 0.93rem;
    font-weight: 610;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25rem;
}

.abm-hero-panel {
    position: relative;
    padding:
        clamp(1.7rem, 4vw, 2.5rem);
    border-block-start: 2px solid var(--abm-forest);
    background: var(--abm-white);
    box-shadow: var(--abm-shadow-soft);
}

.abm-panel-quote {
    margin-block-end: 1.5rem;
    color: var(--abm-ink);
    font-family:
        ui-serif,
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.35;
}

.abm-panel-rule {
    width: 2.5rem;
    height: 1px;
    margin-block: 1.5rem;
    background: var(--abm-bronze);
}

.abm-panel-note {
    margin: 0;
    color: var(--abm-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.abm-section {
    padding-block: clamp(5rem, 9vw, 8rem);
}

.abm-section-heading {
    display: grid;
    grid-template-columns: 12rem minmax(0, 42rem);
    gap: 2rem;
    align-items: start;
    margin-block-end: clamp(3rem, 7vw, 5.5rem);
}

.abm-section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    font-weight: 590;
}

.abm-section-heading-narrow {
    display: block;
    margin-block-end: 0;
}

.abm-section-heading-narrow h2 {
    max-width: 10ch;
}


/* =========================================================
   PROGRAMS
   ========================================================= */

.abm-programs-section {
    border-block:
        1px solid var(--abm-border);
    background: var(--abm-white);
}

.abm-program-list {
    border-block-start:
        1px solid var(--abm-border);
}

.abm-program-item {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 2rem;
    padding-block: clamp(2rem, 5vw, 3.25rem);
    border-block-end:
        1px solid var(--abm-border);
}

.abm-program-number {
    margin: 0;
    color: var(--abm-bronze);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.08em;
}

.abm-program-item h3 {
    margin-block-end: 0.65rem;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 610;
}

.abm-program-item p:last-child {
    max-width: 46rem;
    margin: 0;
    color: var(--abm-muted);
}


/* =========================================================
   APPROACH
   ========================================================= */

.abm-approach-section {
    background: var(--abm-cream);
}

.abm-approach-layout {
    display: grid;
    grid-template-columns:
        minmax(15rem, 0.65fr)
        minmax(0, 1.35fr);
    gap: clamp(3rem, 9vw, 8rem);
}

.abm-principles {
    display: grid;
}

.abm-principle {
    padding-block: 1.8rem;
    border-block-start:
        1px solid rgba(24, 34, 29, 0.16);
}

.abm-principle:last-child {
    border-block-end:
        1px solid rgba(24, 34, 29, 0.16);
}

.abm-principle h3 {
    margin-block-end: 0.65rem;
    font-size: 1.18rem;
    font-weight: 670;
}

.abm-principle p {
    max-width: 37rem;
    margin: 0;
    color: var(--abm-ink-soft);
}


/* =========================================================
   LANGUAGE NOTE
   ========================================================= */

.abm-language-note {
    padding-block: 2rem;
    background: var(--abm-forest-dark);
    color: #fff;
}

.abm-language-note-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.abm-language-note p {
    margin: 0;
}

.abm-language-note-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}


/* =========================================================
   CONTENT TEMPLATES
   ========================================================= */

.abm-content-area {
    padding-block: clamp(4rem, 9vw, 7rem);
}

.abm-entry-header,
.abm-archive-header {
    margin-block-end: 2.5rem;
}

.abm-entry-header h1,
.abm-archive-header h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.abm-entry-content {
    max-width: var(--abm-reading);
}

.abm-entry-content > * + * {
    margin-block-start: 1.2em;
}

.abm-entry-content img {
    border-radius: var(--abm-radius-small);
}

.abm-entry-meta,
.abm-archive-description {
    color: var(--abm-muted);
}

.abm-entry-list {
    display: grid;
}

.abm-list-entry {
    padding-block: 1.75rem;
    border-block-end:
        1px solid var(--abm-border);
}

.abm-list-entry h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.abm-list-entry h2 a {
    text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.abm-site-footer {
    border-block-start:
        1px solid rgba(255, 255, 255, 0.08);
    background: var(--abm-ink);
    color: rgba(255, 255, 255, 0.76);
}

.abm-footer-inner {
    display: grid;
    gap: 1.1rem;
    padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.abm-footer-brand {
    color: #fff;
    font-weight: 660;
}

.abm-footer-menu a {
    color: rgba(255, 255, 255, 0.68);
}

.abm-footer-menu a:hover {
    color: #fff;
}

.abm-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    background: #fff;
    color: #111;
    white-space: normal;
}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] body {
    font-family:
        Tahoma,
        Arial,
        system-ui,
        sans-serif;
}

html[dir="rtl"] .abm-kicker,
html[dir="rtl"] .abm-section-label,
html[dir="rtl"] .abm-panel-label {
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .abm-language-list {
    direction: rtl;
}

html[dir="rtl"] .abm-hero-copy h1 {
    letter-spacing: -0.025em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 920px) {

    .abm-hero-layout,
    .abm-approach-layout {
        grid-template-columns: 1fr;
    }

    .abm-hero-panel {
        max-width: 34rem;
    }

    .abm-section-heading {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .abm-section-heading-narrow h2 {
        max-width: 16ch;
    }

    .abm-language-note-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .abm-shell {
        width: min(
            calc(100% - 2rem),
            var(--abm-page)
        );
    }

    .abm-header-inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding-block: 1rem;
        gap: 1rem;
    }

    .abm-header-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.9rem;
    }

    .abm-menu {
        gap: 0.5rem 1rem;
    }

    .abm-language-list {
        flex-wrap: wrap;
    }

    .abm-home-hero {
        padding-block: 4.5rem 4rem;
    }

    .abm-home-hero::after {
        width: 12rem;
        height: 12rem;
    }

    .abm-hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4.25rem);
    }

    .abm-program-item {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        gap: 1rem;
    }

    .abm-language-note-list {
        line-height: 1.8;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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






/* BEGIN ABM CLEAN TOPBAR V2 */

.abm-v2-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #fbf8f2;

    box-shadow:
        0 1px 0
        rgba(16, 57, 45, 0.08);
}


.abm-v2-bar {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    min-height: 78px;

    gap:
        clamp(
            1.5rem,
            3vw,
            3.75rem
        );
}


/* BRAND */

.abm-v2-brand {
    display: inline-flex;

    align-items: center;

    gap: 0.8rem;

    min-width: max-content;

    color: #10392d;

    text-decoration: none;
}


.abm-v2-logo {
    display: grid;

    place-items: center;

    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    padding: 5px;

    overflow: hidden;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 5px 18px
        rgba(16, 57, 45, 0.07);
}


.abm-v2-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.abm-v2-brand-name {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.08rem,
            1.5vw,
            1.35rem
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.025em;

    white-space: nowrap;
}


/* NAVIGATION */

.abm-v2-nav {
    min-width: 0;
}


.abm-v2-nav ul {
    display: flex;

    align-items: center;

    justify-content: center;

    gap:
        clamp(
            1.15rem,
            2.25vw,
            2rem
        );

    margin: 0;

    padding: 0;

    list-style: none;
}


.abm-v2-nav li {
    position: relative;

    margin: 0;

    padding: 0;
}


.abm-v2-nav a {
    position: relative;

    display: inline-block;

    padding:
        1rem
        0;

    color: #36423c;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.91rem;

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.01em;

    text-decoration: none;

    white-space: nowrap;
}


.abm-v2-nav a::after {
    content: "";

    position: absolute;

    inset-inline-start: 0;

    inset-block-end: 0.65rem;

    width: 0;

    height: 1px;

    background: #9a7044;

    transition:
        width
        150ms
        ease;
}


.abm-v2-nav a:hover {
    color: #10392d;
}


.abm-v2-nav a:hover::after {
    width: 100%;
}


.abm-v2-nav .is-current a {
    color: #10392d;

    font-weight: 600;
}


.abm-v2-nav .is-current a::after {
    width: 22px;
}


/* TOOLS */

.abm-v2-tools {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 1rem;

    min-width: max-content;
}


/* FLAGS */

.abm-v2-languages {
    display: flex;

    align-items: center;

    gap: 0.42rem;
}


.abm-v2-flag {
    display: grid;

    place-items: center;

    width: 29px;
    height: 29px;

    overflow: hidden;

    border: 0;

    border-radius: 50%;

    background: #fff;

    font-size: 1rem;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 2px 8px
        rgba(16, 57, 45, 0.07);

    transition:
        transform
        120ms
        ease;
}


.abm-v2-flag:hover {
    transform:
        translateY(-1px);
}


.abm-v2-flag.is-current {
    transform:
        translateY(-1px);

    box-shadow:
        0 3px 10px
        rgba(154, 112, 68, 0.16);
}


/* DARK MODE ICON */

.abm-v2-dark {
    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #304039;

    font-family: Georgia, serif;

    font-size: 1.35rem;

    line-height: 1;

    cursor: pointer;
}


.abm-v2-sun {
    display: none;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI Symbol",
        sans-serif;

    font-size: 1rem;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-moon {
    display: none;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-sun {
    display: inline;
}


/* DARK MODE — TOP BAR ONLY */

html[data-abm-topbar-theme="dark"]
.abm-v2-header {
    background: #13231d;

    box-shadow:
        0 1px 0
        rgba(255, 255, 255, 0.07);
}


html[data-abm-topbar-theme="dark"]
.abm-v2-brand,
html[data-abm-topbar-theme="dark"]
.abm-v2-nav a,
html[data-abm-topbar-theme="dark"]
.abm-v2-dark {
    color: #f6f1e8;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-nav .is-current a {
    color: #fff;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-logo,
html[data-abm-topbar-theme="dark"]
.abm-v2-flag {
    background: #fff;
}


/* MOBILE MENU */

.abm-v2-mobile {
    display: none;
}


.abm-v2-mobile > summary {
    display: grid;

    gap: 5px;

    width: 24px;

    padding: 5px 0;

    list-style: none;

    cursor: pointer;
}


.abm-v2-mobile > summary::-webkit-details-marker {
    display: none;
}


.abm-v2-mobile > summary span {
    display: block;

    width: 23px;
    height: 1px;

    background: currentColor;
}


.abm-v2-mobile nav {
    position: absolute;

    inset-inline: 1rem;

    inset-block-start: calc(100% + 1px);

    display: grid;

    padding:
        1.1rem
        1.25rem;

    background: #fbf8f2;

    box-shadow:
        0 12px 30px
        rgba(16, 57, 45, 0.08);
}


.abm-v2-mobile nav a {
    padding:
        0.7rem
        0;

    color: #17221d;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.96rem;

    text-decoration: none;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-mobile {
    color: #fff;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-mobile nav {
    background: #13231d;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-mobile nav a {
    color: #f6f1e8;
}


/* TABLET */

@media (max-width: 1100px) {

    .abm-v2-brand-name {
        display: none;
    }

    .abm-v2-bar {
        gap: 1.25rem;
    }

    .abm-v2-nav ul {
        gap: 1.15rem;
    }

    .abm-v2-nav a {
        font-size: 0.84rem;
    }
}


/* MOBILE */

@media (max-width: 820px) {

    .abm-v2-bar {
        display: flex;

        align-items: center;

        justify-content: space-between;

        min-height: 68px;

        gap: 0.75rem;
    }

    .abm-v2-logo {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .abm-v2-nav {
        display: none;
    }

    .abm-v2-tools {
        margin-inline-start: auto;

        gap: 0.7rem;
    }

    .abm-v2-languages {
        gap: 0.3rem;
    }

    .abm-v2-flag {
        width: 27px;
        height: 27px;

        font-size: 0.9rem;
    }

    .abm-v2-mobile {
        position: static;

        display: block;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .abm-v2-languages {
        gap: 0.2rem;
    }

    .abm-v2-flag {
        width: 24px;
        height: 24px;

        font-size: 0.79rem;
    }

    .abm-v2-dark {
        width: 25px;
    }
}


/* RTL */

html[dir="rtl"] .abm-v2-nav a {
    letter-spacing: 0;
}


html[dir="rtl"] .abm-v2-languages {
    direction: ltr;
}


/* END ABM CLEAN TOPBAR V2 */


/* BEGIN ABM LANGUAGE DROPDOWN V1 */


/*
 * Language selector
 * Deliberately separate from the main navigation.
 */

.abm-v3-language {
    position: relative;

    flex: 0 0 auto;
}


/*
 * Remove browser default details marker.
 */

.abm-v3-language > summary {
    list-style: none;
}


.abm-v3-language > summary::-webkit-details-marker {
    display: none;
}


/*
 * Current language trigger.
 */

.abm-v3-language-trigger {
    display: flex;

    align-items: center;

    gap: 0.55rem;

    min-height: 42px;

    padding:
        0.35rem
        0.72rem
        0.35rem
        0.42rem;

    border:
        1.5px solid
        rgba(204, 151, 61, 0.72);

    border-radius: 14px;

    background: transparent;

    color: #17241f;

    cursor: pointer;

    user-select: none;
}


.abm-v3-language-trigger:hover {
    border-color: #b78634;
}


.abm-v3-current-flag,
.abm-v3-option-flag {
    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 50%;

    background: #fff;

    line-height: 1;
}


.abm-v3-current-flag {
    width: 30px;
    height: 30px;

    font-size: 1.05rem;
}


.abm-v3-current-code {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.82rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.02em;
}


/*
 * Small handmade chevron.
 */

.abm-v3-language-arrow {
    width: 6px;
    height: 6px;

    margin-inline-start: 0.08rem;

    border-inline-end:
        1.5px solid
        currentColor;

    border-block-end:
        1.5px solid
        currentColor;

    transform:
        rotate(45deg)
        translateY(-2px);

    opacity: 0.55;
}


.abm-v3-language[open]
.abm-v3-language-arrow {
    transform:
        rotate(225deg)
        translate(-1px, -1px);
}


/*
 * Dropdown.
 */

.abm-v3-language-menu {
    position: absolute;

    z-index: 9999;

    inset-block-start:
        calc(100% + 10px);

    inset-inline-end: 0;

    display: grid;

    width: 245px;

    padding: 0.55rem;

    border:
        1px solid
        rgba(23, 36, 31, 0.10);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 14px 35px
        rgba(20, 35, 29, 0.12);
}


/*
 * Language row.
 */

.abm-v3-language-option {
    display: flex;

    align-items: center;

    gap: 0.8rem;

    min-height: 52px;

    padding:
        0.55rem
        0.65rem;

    border-radius: 9px;

    color: #202d3d;

    text-decoration: none;
}


.abm-v3-language-option:hover {
    background: #f5f8fa;
}


.abm-v3-language-option.is-current {
    background: #eaf3fa;

    box-shadow:
        inset 0 0 0 1px
        rgba(78, 137, 183, 0.18);
}


.abm-v3-option-flag {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    font-size: 1.12rem;
}


.abm-v3-option-name {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.94rem;

    font-weight: 650;

    line-height: 1.2;

    white-space: nowrap;
}


/*
 * Dark topbar mode.
 */

html[data-abm-topbar-theme="dark"]
.abm-v3-language-trigger {
    border-color:
        rgba(204, 151, 61, 0.7);

    color: #f5f2eb;
}


html[data-abm-topbar-theme="dark"]
.abm-v3-language-menu {
    border-color:
        rgba(255, 255, 255, 0.09);

    background: #182a23;

    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, 0.24);
}


html[data-abm-topbar-theme="dark"]
.abm-v3-language-option {
    color: #f4f2ec;
}


html[data-abm-topbar-theme="dark"]
.abm-v3-language-option:hover {
    background:
        rgba(255, 255, 255, 0.06);
}


html[data-abm-topbar-theme="dark"]
.abm-v3-language-option.is-current {
    background:
        rgba(115, 166, 199, 0.15);

    box-shadow:
        inset 0 0 0 1px
        rgba(153, 196, 224, 0.14);
}


/*
 * RTL:
 * dropdown opens toward the natural reading side.
 */

html[dir="rtl"]
.abm-v3-language-menu {
    inset-inline-end: auto;
    inset-inline-start: 0;
}


html[dir="rtl"]
.abm-v3-language-trigger {
    padding:
        0.35rem
        0.42rem
        0.35rem
        0.72rem;
}


/*
 * Mobile.
 */

@media (max-width: 600px) {

    .abm-v3-language-trigger {
        min-height: 38px;

        padding:
            0.25rem
            0.55rem
            0.25rem
            0.3rem;

        border-radius: 12px;
    }


    .abm-v3-current-flag {
        width: 27px;
        height: 27px;

        font-size: 0.94rem;
    }


    .abm-v3-current-code {
        font-size: 0.74rem;
    }


    .abm-v3-language-menu {
        width: 220px;
    }


    .abm-v3-language-option {
        min-height: 48px;
    }

}


/* END ABM LANGUAGE DROPDOWN V1 */


/* BEGIN ABM FIXED TOPBAR V3 */


/* =========================================================
   KEEP THE HEADER PHYSICALLY FIXED BETWEEN LANGUAGES
   ========================================================= */

/*
 * The page itself can become RTL,
 * but the global header keeps the same physical structure:
 *
 * logo     navigation     tools
 *
 * This prevents the whole bar jumping when language changes.
 */

.abm-v2-bar {
    direction: ltr;

    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr)
        158px;

    align-items: center;

    min-height: 78px;

    column-gap:
        clamp(
            1.25rem,
            2.25vw,
            2.5rem
        );
}


/* Brand always keeps the same footprint */

.abm-v2-brand {
    direction: ltr;

    width: 250px;

    min-width: 250px;

    justify-self: start;
}


.abm-v2-logo {
    width: 56px;
    height: 56px;

    flex:
        0
        0
        56px;
}


.abm-v2-brand-name {
    width: 170px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   FIXED NAVIGATION CELLS
   ========================================================= */

.abm-v2-nav {
    direction: ltr;

    width: 100%;

    min-width: 0;
}


.abm-v2-nav ul {
    display: grid;

    grid-template-columns:
        72px
        96px
        96px
        164px
        70px;

    justify-content: center;

    align-items: center;

    gap:
        clamp(
            0.65rem,
            1.15vw,
            1.15rem
        );

    width: 100%;

    margin: 0;

    padding: 0;

    list-style: none;
}


.abm-v2-nav li {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 0;
}


.abm-v2-nav a {
    max-width: 100%;

    text-align: center;

    direction: auto;

    unicode-bidi: plaintext;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/*
 * Underline stays centered in its own cell,
 * so the navigation doesn't visually shift.
 */

.abm-v2-nav a::after {
    inset-inline-start: 50%;

    transform:
        translateX(-50%);
}


.abm-v2-nav a:hover::after {
    width: 100%;
}


.abm-v2-nav .is-current a::after {
    width: 22px;
}


/* =========================================================
   TOOLS COLUMN
   ========================================================= */

.abm-v2-tools {
    direction: ltr;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 0.85rem;

    width: 158px;

    min-width: 158px;

    justify-self: end;
}


/* =========================================================
   LANGUAGE SELECTOR
   FIXED SIZE REGARDLESS OF LANGUAGE
   ========================================================= */

.abm-v3-language {
    width: 108px;

    min-width: 108px;
}


.abm-v3-language-trigger {
    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        30px
        28px
        8px;

    align-items: center;

    justify-content: center;

    column-gap: 0.42rem;

    width: 108px;

    min-width: 108px;
    max-width: 108px;

    min-height: 44px;

    padding:
        0.35rem
        0.55rem;

    overflow: hidden;
}


.abm-v3-current-flag {
    justify-self: center;

    width: 30px;
    height: 30px;
}


.abm-v3-current-code {
    justify-self: center;

    width: 28px;

    text-align: center;
}


.abm-v3-language-arrow {
    justify-self: center;

    margin: 0;
}


/*
 * Dropdown itself also stays the same size.
 */

.abm-v3-language-menu {
    width: 245px;
    min-width: 245px;
    max-width: 245px;
}


/*
 * Always open from the physical right edge of the selector,
 * including Arabic.
 */

html[dir="rtl"] .abm-v3-language-menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
}


html[dir="rtl"] .abm-v3-language-trigger {
    padding:
        0.35rem
        0.55rem;
}


/* =========================================================
   HUMAN GREEN CRESCENT DARK-MODE ICON
   ========================================================= */

.abm-v2-dark {
    position: relative;

    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    flex:
        0
        0
        34px;

    padding: 0;

    border: 0;

    border-radius: 0;

    outline: 0;

    background: transparent;

    cursor: pointer;
}


/*
 * Hide character glyphs.
 * We draw the crescent ourselves so it looks consistent
 * on Windows, Android, macOS and Linux.
 */

.abm-v2-moon {
    position: relative;

    display: block;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: #176b5b;

    font-size: 0;

    line-height: 0;
}


/*
 * Cut the circle to form the crescent.
 */

.abm-v2-moon::after {
    content: "";

    position: absolute;

    inset-block-start: -2px;
    inset-inline-start: 7px;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: #fbf8f2;
}


.abm-v2-dark:hover .abm-v2-moon {
    background: #10392d;
}


.abm-v2-dark:focus-visible {
    outline:
        2px solid
        rgba(23, 107, 91, 0.35);

    outline-offset: 3px;
}


/* Sun shown when dark mode is active */

.abm-v2-sun {
    display: none;

    color: #d9b66f;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI Symbol",
        sans-serif;

    font-size: 1.05rem;

    line-height: 1;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-moon {
    display: none;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-sun {
    display: block;
}


/* =========================================================
   DARK HEADER
   ========================================================= */

html[data-abm-topbar-theme="dark"]
.abm-v2-header {
    background: #13231d;
}


html[data-abm-topbar-theme="dark"]
.abm-v2-brand,
html[data-abm-topbar-theme="dark"]
.abm-v2-nav a,
html[data-abm-topbar-theme="dark"]
.abm-v2-dark {
    color: #f8f4ed;
}


html[data-abm-topbar-theme="dark"]
.abm-v3-language-trigger {
    color: #f8f4ed;
}


/* =========================================================
   RTL
   ========================================================= */

/*
 * Only the text itself changes direction.
 * Physical positions remain unchanged.
 */

html[dir="rtl"] .abm-v2-bar {
    direction: ltr;
}


html[dir="rtl"] .abm-v2-brand {
    direction: ltr;
}


html[dir="rtl"] .abm-v2-tools {
    direction: ltr;
}


html[dir="rtl"] .abm-v2-nav {
    direction: ltr;
}


html[dir="rtl"] .abm-v2-nav a {
    direction: rtl;

    letter-spacing: 0;
}


/* =========================================================
   MEDIUM WIDTH
   ========================================================= */

@media (max-width: 1180px) {

    .abm-v2-bar {
        grid-template-columns:
            70px
            minmax(0, 1fr)
            158px;
    }


    .abm-v2-brand {
        width: 70px;
        min-width: 70px;
    }


    .abm-v2-brand-name {
        display: none;
    }


    .abm-v2-nav ul {
        grid-template-columns:
            68px
            90px
            90px
            150px
            65px;

        gap: 0.65rem;
    }


    .abm-v2-nav a {
        font-size: 0.82rem;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

    .abm-v2-bar {
        direction: ltr;

        display: flex;

        align-items: center;

        justify-content: space-between;

        min-height: 68px;

        gap: 0.65rem;
    }


    .abm-v2-brand {
        width: 52px;
        min-width: 52px;
    }


    .abm-v2-logo {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }


    .abm-v2-nav {
        display: none;
    }


    .abm-v2-tools {
        width: auto;
        min-width: 0;

        margin-inline-start: auto;
    }


    .abm-v3-language {
        width: 102px;
        min-width: 102px;
    }


    .abm-v3-language-trigger {
        width: 102px;
        min-width: 102px;
        max-width: 102px;

        grid-template-columns:
            27px
            26px
            7px;

        min-height: 40px;

        border-radius: 12px;
    }


    .abm-v3-current-flag {
        width: 27px;
        height: 27px;
    }


    .abm-v2-dark {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }


    .abm-v2-moon {
        width: 18px;
        height: 18px;
    }


    .abm-v2-moon::after {
        width: 16px;
        height: 16px;

        inset-inline-start: 7px;
    }

}


/* END ABM FIXED TOPBAR V3 */




/* BEGIN ABM REAL CIRCLE FLAGS V2 */


/*
 * These are real local SVG flags.
 * The old emoji text remains in the HTML only as fallback,
 * but it is visually hidden.
 */

.abm-v3-current-flag,
.abm-v3-option-flag {
    display: block !important;

    width: 32px !important;
    height: 32px !important;

    min-width: 32px !important;
    min-height: 32px !important;

    max-width: 32px !important;
    max-height: 32px !important;

    flex:
        0
        0
        32px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border: 0 !important;
    border-radius: 50% !important;

    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;

    color: transparent !important;

    font-size: 0 !important;
    line-height: 0 !important;

    text-indent: -9999px !important;

    box-sizing: border-box !important;
}


/* Current language in trigger */

html[lang^="en"]
.abm-v3-current-flag {
    background-image:
        url("../images/language-flags/us.svg") !important;
}


html[lang^="ar"]
.abm-v3-current-flag {
    background-image:
        url("../images/language-flags/sa.svg") !important;
}


html[lang^="fr"]
.abm-v3-current-flag {
    background-image:
        url("../images/language-flags/fr.svg") !important;
}


html[lang^="de"]
.abm-v3-current-flag {
    background-image:
        url("../images/language-flags/de.svg") !important;
}


html[lang^="it"]
.abm-v3-current-flag {
    background-image:
        url("../images/language-flags/it.svg") !important;
}


/* Dropdown flags */

.abm-v3-language-option[lang="en"]
.abm-v3-option-flag {
    background-image:
        url("../images/language-flags/us.svg") !important;
}


.abm-v3-language-option[lang="ar"]
.abm-v3-option-flag {
    background-image:
        url("../images/language-flags/sa.svg") !important;
}


.abm-v3-language-option[lang="fr"]
.abm-v3-option-flag {
    background-image:
        url("../images/language-flags/fr.svg") !important;
}


.abm-v3-language-option[lang="de"]
.abm-v3-option-flag {
    background-image:
        url("../images/language-flags/de.svg") !important;
}


.abm-v3-language-option[lang="it"]
.abm-v3-option-flag {
    background-image:
        url("../images/language-flags/it.svg") !important;
}


/*
 * Keep the current trigger geometry stable.
 */

.abm-v3-language-trigger {
    grid-template-columns:
        32px
        28px
        8px !important;
}


/*
 * Flag fills the entire circular crop.
 * No white padding inside.
 */

.abm-v3-current-flag,
.abm-v3-option-flag {
    background-clip:
        border-box !important;
}


/* Mobile */

@media (max-width: 600px) {

    .abm-v3-current-flag,
    .abm-v3-option-flag {
        width: 30px !important;
        height: 30px !important;

        min-width: 30px !important;
        min-height: 30px !important;

        max-width: 30px !important;
        max-height: 30px !important;

        flex-basis: 30px !important;
    }


    .abm-v3-language-trigger {
        grid-template-columns:
            30px
            27px
            8px !important;
    }

}


/* END ABM REAL CIRCLE FLAGS V2 */


/* BEGIN ABM HOME COVER V1 */


/* =========================================================
   HOME COVER
   ========================================================= */

.abm-home-cover {
    padding:
        1.45rem
        0
        clamp(4.5rem, 8vw, 7rem);

    background: #fff;
}


.abm-home-cover > .abm-shell {
    position: relative;
}


/*
 * Large quiet visual field.
 * No stock image, no AI illustration, no decorative clutter.
 */

.abm-home-cover-art {
    position: relative;

    height:
        clamp(
            255px,
            31vw,
            390px
        );

    overflow: hidden;

    border-radius: 11px;

    background:
        linear-gradient(
            112deg,
            #edf6fb 0%,
            #f8fbfc 31%,
            #ffffff 53%,
            #fffaf1 76%,
            #fff3d9 100%
        );
}


/*
 * Very soft light movement.
 * Deliberately subtle.
 */

.abm-cover-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(48px);

    opacity: 0.6;

    pointer-events: none;
}


.abm-cover-glow-left {
    inset-block-start: -7rem;
    inset-inline-start: -6rem;

    width: 24rem;
    height: 24rem;

    background:
        rgba(200, 229, 243, 0.52);
}


.abm-cover-glow-right {
    inset-inline-end: -5rem;
    inset-block-end: -7rem;

    width: 25rem;
    height: 25rem;

    background:
        rgba(247, 219, 155, 0.38);
}


/* =========================================================
   CONTENT OVERLAP
   ========================================================= */

.abm-home-cover-content {
    position: relative;

    z-index: 2;

    width:
        min(
            850px,
            calc(100% - 2rem)
        );

    margin:
        -56px
        auto
        0;

    text-align: center;
}


/* Logo floating over lower edge */

.abm-home-cover-logo {
    display: grid;

    place-items: center;

    width: 114px;
    height: 114px;

    margin:
        0
        auto
        1.7rem;

    padding: 10px;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 9px 28px
        rgba(16, 57, 45, 0.09);
}


.abm-home-cover-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* Small academy label */

.abm-home-cover-eyebrow {
    margin:
        0
        0
        1.05rem;

    color: #9a7044;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* Main title */

.abm-home-cover-title {
    max-width: 900px;

    margin:
        0
        auto
        1.15rem;

    color: #10392d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.65rem,
            5.4vw,
            5.25rem
        );

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: -0.045em;

    text-wrap: balance;
}


/* Subtitle */

.abm-home-cover-text {
    max-width: 690px;

    margin:
        0
        auto;

    color: #66716b;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:
        clamp(
            0.98rem,
            1.5vw,
            1.08rem
        );

    font-weight: 400;

    line-height: 1.75;

    text-wrap: pretty;
}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .abm-home-cover-eyebrow {
    letter-spacing: 0;
    text-transform: none;
}


html[dir="rtl"] .abm-home-cover-title {
    font-family:
        Tahoma,
        Arial,
        sans-serif;

    font-weight: 700;

    letter-spacing: -0.025em;

    line-height: 1.16;
}


html[dir="rtl"] .abm-home-cover-text {
    font-family:
        Tahoma,
        Arial,
        sans-serif;

    line-height: 1.9;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .abm-home-cover {
        padding-block-start: 0.8rem;
    }


    .abm-home-cover-art {
        height: 220px;

        border-radius: 8px;
    }


    .abm-home-cover-content {
        margin-block-start: -45px;
    }


    .abm-home-cover-logo {
        width: 90px;
        height: 90px;

        padding: 8px;

        margin-block-end: 1.4rem;
    }


    .abm-home-cover-title {
        font-size:
            clamp(
                2.15rem,
                10vw,
                3.4rem
            );
    }


    .abm-home-cover-text {
        max-width: 34rem;
    }

}


/* END ABM HOME COVER V1 */


/* BEGIN ABM COVER DISTANCE FIX */

/*
 * Bring the homepage cover and its copy closer together.
 * No structural changes.
 */

.abm-home-cover {
    padding-top: 12px;
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
}


.abm-home-cover-art {
    height: clamp(
        235px,
        22vw,
        315px
    );
}


.abm-home-cover-content {
    margin-top: -50px;
}


.abm-home-cover-logo {
    width: 100px;
    height: 100px;

    margin-bottom: 1.25rem;

    padding: 9px;
}


.abm-home-cover-eyebrow {
    margin-bottom: 0.8rem;
}


.abm-home-cover-title {
    margin-bottom: 0.9rem;
}


@media (max-width: 900px) {

    .abm-home-cover-art {
        height: 250px;
    }

    .abm-home-cover-content {
        margin-top: -46px;
    }

}


@media (max-width: 600px) {

    .abm-home-cover {
        padding-top: 8px;
    }

    .abm-home-cover-art {
        height: 190px;
    }

    .abm-home-cover-content {
        margin-top: -40px;
    }

    .abm-home-cover-logo {
        width: 80px;
        height: 80px;

        padding: 7px;
    }

}

/* END ABM COVER DISTANCE FIX */


/* BEGIN ABM COVER CLOSER V2 */


/* Pull the whole hero together */

.abm-home-cover {
    padding-top: 10px;
    padding-bottom: clamp(2.8rem, 4.5vw, 4rem);
}


/* Shorter visual cover */

.abm-home-cover-art {
    height: clamp(
        205px,
        17vw,
        235px
    );
}


/*
 * Pull the logo and text upward
 * so the cover and copy feel like one composition.
 */

.abm-home-cover-content {
    margin-top: -66px;
}


/* Slightly smaller logo */

.abm-home-cover-logo {
    width: 92px;
    height: 92px;

    margin:
        0
        auto
        0.85rem;

    padding: 8px;
}


/* Tighten label */

.abm-home-cover-eyebrow {
    margin-bottom: 0.55rem;
}


/* Tighten headline */

.abm-home-cover-title {
    margin-bottom: 0.75rem;
}


/* Keep intro close to headline */

.abm-home-cover-text {
    margin-top: 0;
}


/* Tablet */

@media (max-width: 900px) {

    .abm-home-cover-art {
        height: 215px;
    }

    .abm-home-cover-content {
        margin-top: -60px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .abm-home-cover {
        padding-top: 7px;
        padding-bottom: 2.8rem;
    }

    .abm-home-cover-art {
        height: 170px;
    }

    .abm-home-cover-content {
        margin-top: -50px;
    }

    .abm-home-cover-logo {
        width: 76px;
        height: 76px;

        padding: 7px;

        margin-bottom: 0.75rem;
    }

    .abm-home-cover-eyebrow {
        margin-bottom: 0.45rem;
    }

}


/* END ABM COVER CLOSER V2 */
