@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/fonts/ibm-plex-sans-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
    --ink: #f7f9fb;
    --paper: #f3f5f7;
    --charcoal: #0b0d10;
    --graphite: #151a20;
    --panel: #1d232b;
    --steel: #9aa7b5;
    --muted: #c7d0da;
    --line: rgba(247, 249, 251, 0.14);
    --line-dark: rgba(11, 13, 16, 0.12);
    --blue: #1f6fd1;
    --red: #d92032;
    --ice: #dcecff;
    --gold: #c8a35c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --font-display: "IBM Plex Sans", Arial, Helvetica, sans-serif;
    --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --header-height: 76px;
    --max: 1180px;
}

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

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

body {
    margin: 0;
    background: var(--charcoal);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(31, 111, 209, 0.22), transparent 34rem),
        radial-gradient(circle at 12% 90%, rgba(217, 32, 50, 0.12), transparent 28rem),
        var(--charcoal);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

button {
    cursor: pointer;
}

::selection {
    background: var(--red);
    color: var(--ink);
}

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

.eyebrow {
    margin: 0 0 1rem;
    color: var(--steel);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 1.02;
}

h1 {
    max-width: 880px;
    margin-bottom: 1.2rem;
    font-size: 4.75rem;
    font-weight: 800;
}

h2 {
    margin-bottom: 1.2rem;
    font-size: 3rem;
    font-weight: 800;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    padding: 0.86rem 1.15rem;
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(220, 236, 255, 0.8);
    outline-offset: 3px;
}

.button-primary {
    background: var(--red);
    color: var(--ink);
    border-color: var(--red);
}

.button-primary:hover {
    background: #f22c41;
    border-color: #f22c41;
}

.button-secondary {
    color: var(--ink);
    border-color: rgba(247, 249, 251, 0.36);
    background: rgba(247, 249, 251, 0.06);
}

.button-secondary:hover {
    border-color: var(--ice);
    background: rgba(220, 236, 255, 0.12);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(247, 249, 251, 0.1);
    background: rgba(11, 13, 16, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    padding: 0.36rem 0.7rem 0.36rem 0.42rem;
    border: 1px solid rgba(247, 249, 251, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 111, 209, 0.16), rgba(217, 32, 50, 0.06)),
        rgba(247, 249, 251, 0.045);
    box-shadow: inset 0 1px 0 rgba(247, 249, 251, 0.08);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand:hover {
    border-color: rgba(220, 236, 255, 0.36);
    background:
        linear-gradient(135deg, rgba(31, 111, 209, 0.22), rgba(217, 32, 50, 0.08)),
        rgba(247, 249, 251, 0.07);
    transform: translateY(-1px);
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(247, 249, 251, 0.42);
    border-radius: 8px;
    background: #f7f9fb;
    box-shadow:
        0 0 0 1px rgba(11, 13, 16, 0.82),
        0 10px 24px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.brand-text,
.brand-subtext {
    font-family: var(--font-display);
    text-transform: uppercase;
}

.brand-text {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
}

.brand-subtext {
    margin-top: 0.26rem;
    color: var(--steel);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--ink);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    margin-left: 1.1rem;
    color: var(--steel);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lang-switch a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
    color: var(--ink);
}

.lang-switch a[aria-current="true"] {
    font-weight: 900;
}

.lang-switch a[aria-disabled="true"] {
    opacity: 0.46;
    pointer-events: none;
}

.lang-sep {
    color: var(--gold);
}

.nav-cta {
    padding: 0.62rem 0.88rem;
    border: 1px solid rgba(247, 249, 251, 0.24);
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgba(247, 249, 251, 0.18);
    border-radius: 6px;
    background: rgba(247, 249, 251, 0.06);
    color: var(--ink);
}

.menu-toggle-line {
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.menu-toggle.active {
    background: rgba(247, 249, 251, 0.16);
}

.hero {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: grid;
    align-items: end;
    padding: calc(var(--header-height) + 5rem) 2rem 2rem;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.54;
    filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(11, 13, 16, 0.96) 0%, rgba(11, 13, 16, 0.74) 43%, rgba(11, 13, 16, 0.28) 100%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.1) 0%, rgba(11, 13, 16, 0.95) 100%);
}

.hero-content {
    width: min(100%, var(--max));
    margin: 0 auto 3rem;
}

.hero-lede {
    max-width: 690px;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-proof {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(247, 249, 251, 0.16);
    background: rgba(11, 13, 16, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-proof span {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-right: 1px solid rgba(247, 249, 251, 0.12);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-proof span:last-child {
    border-right: 0;
}

.intro-section,
.section-pad {
    padding: 7rem 2rem;
}

.section-pad + .section-pad,
.legacy-section + .section-pad,
.section-pad + .legacy-section {
    border-top: 1px solid rgba(247, 249, 251, 0.06);
}

.intro-grid,
.section-heading,
.service-grid,
.profile-section,
.legacy-section,
.speaking-section > *,
.program-section,
.journal-section > *,
.contact-section,
.site-footer {
    width: min(100%, var(--max));
    margin-left: auto;
    margin-right: auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: end;
}

.intro-grid p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.section-heading {
    margin-bottom: 2.8rem;
}

.section-heading h2 {
    max-width: 850px;
}

.section-heading.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(247, 249, 251, 0.16);
    border: 1px solid rgba(247, 249, 251, 0.16);
}

.service-card {
    min-height: 310px;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(29, 35, 43, 0.94), rgba(21, 26, 32, 0.94));
}

.service-card span,
.topic-list span {
    display: inline-flex;
    margin-bottom: 2rem;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
}

.service-card h3,
.topic-list h3 {
    margin-bottom: 1rem;
}

.service-card p,
.topic-list p,
.program-copy p,
.article-card p,
.contact-copy p,
.profile-copy p,
.legacy-copy p {
    color: var(--muted);
}

.profile-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) 1.12fr;
    gap: 5rem;
    align-items: center;
}

.profile-media {
    position: relative;
}

.profile-media::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    bottom: -1.2rem;
    width: 58%;
    height: 42%;
    border-left: 5px solid var(--red);
    border-bottom: 5px solid var(--blue);
    z-index: -1;
}

.profile-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 2rem;
    background: rgba(247, 249, 251, 0.14);
    border: 1px solid rgba(247, 249, 251, 0.14);
}

.timeline div {
    min-height: 104px;
    padding: 1rem;
    background: var(--graphite);
}

.timeline strong,
.program-grid strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.timeline span {
    display: block;
    margin-top: 0.45rem;
    color: var(--steel);
}

.legacy-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 520px;
    border: 1px solid rgba(247, 249, 251, 0.14);
    background:
        linear-gradient(180deg, rgba(29, 35, 43, 0.7), rgba(21, 26, 32, 0.7)),
        var(--graphite);
    color: var(--ink);
}

.legacy-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.legacy-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.legacy-copy .eyebrow,
.legacy-copy p {
    color: var(--muted);
}

.legacy-copy h2 {
    color: var(--ink);
    font-size: 2.45rem;
}

.speaking-section {
    background:
        linear-gradient(180deg, rgba(247, 249, 251, 0.04), rgba(247, 249, 251, 0)),
        transparent;
}

.topic-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: 1px solid rgba(247, 249, 251, 0.14);
    background: rgba(247, 249, 251, 0.14);
}

.topic-list article {
    min-height: 238px;
    padding: 1.5rem;
    background: rgba(11, 13, 16, 0.72);
}

.program-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
    margin-top: 1rem;
    padding: 2rem;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 111, 209, 0.18), rgba(217, 32, 50, 0.08) 46%, rgba(11, 13, 16, 0.96)),
        var(--graphite);
    box-shadow: var(--shadow);
}

.program-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.08rem;
}

.program-copy .button {
    margin-top: 0.6rem;
}

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

.program-grid article {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border: 1px solid rgba(247, 249, 251, 0.16);
    border-radius: 8px;
    background: rgba(11, 13, 16, 0.68);
}

.program-grid article > span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(200, 163, 92, 0.55);
    border-radius: 999px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
}

.program-grid strong {
    font-size: 1.14rem;
    line-height: 1.08;
}

.program-grid p {
    margin: 0;
    margin-top: auto;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.journal-section {
    background: transparent;
    color: var(--ink);
}

.journal-section .eyebrow,
.journal-section .article-card p,
.journal-section .newsletter-form p {
    color: var(--steel);
}

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

.article-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.7);
    color: var(--ink);
    transition: transform 280ms ease, border-color 280ms ease;
}

.article-card:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 236, 255, 0.32);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-card div {
    padding: 1.2rem;
}

.article-card h3,
.article-card h3 a {
    color: var(--ink);
    font-size: 1.22rem;
}

.article-meta {
    margin-bottom: 0.65rem;
    color: var(--red) !important;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-form {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
    padding: 1.5rem;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(247, 249, 251, 0.06), transparent 38%),
        linear-gradient(135deg, rgba(31, 111, 209, 0.16), rgba(217, 32, 50, 0.08) 45%, rgba(11, 13, 16, 0.98)),
        var(--charcoal);
    color: var(--ink);
    box-shadow: 0 22px 70px rgba(11, 13, 16, 0.22);
}

.newsletter-form h3 {
    max-width: 520px;
    margin-bottom: 0.55rem;
    font-size: 1.28rem;
    line-height: 1.08;
}

.newsletter-form .eyebrow {
    margin-bottom: 0.65rem;
    color: var(--gold) !important;
}

.journal-section .newsletter-form p {
    color: var(--muted);
}

.newsletter-copy p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 0;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.8rem;
    align-items: start;
}

.newsletter-fields input {
    min-height: 54px;
    border-color: rgba(247, 249, 251, 0.18);
    background: rgba(11, 13, 16, 0.56);
}

.newsletter-fields .button {
    min-height: 54px;
    white-space: nowrap;
}

.newsletter-form.is-success {
    grid-template-columns: 1fr;
    min-height: 214px;
    padding: 2rem;
}

.newsletter-confirmation {
    max-width: 640px;
}

.confirmation-mark {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 163, 92, 0.55);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(200, 163, 92, 0.09);
    font-family: var(--font-display);
    font-weight: 800;
}

.newsletter-confirmation h3 {
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-size: 1.7rem;
}

.newsletter-confirmation p:last-child {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.direct-email {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--ice);
    font-family: var(--font-display);
    font-weight: 800;
}

.contact-form {
    padding: 1.4rem;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.78);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label,
.form-consent label {
    display: block;
    margin-bottom: 0.42rem;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(247, 249, 251, 0.18);
    border-radius: 6px;
    background: rgba(11, 13, 16, 0.64);
    color: var(--ink);
    padding: 0.82rem 0.9rem;
}

textarea {
    min-height: 148px;
    resize: vertical;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%), linear-gradient(135deg, var(--steel) 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
    color: rgba(199, 208, 218, 0.62);
}

input.error,
select.error,
textarea.error {
    border-color: #ff6877;
}

.field-error,
.form-error-message {
    color: #ff8a96;
    font-size: 0.84rem;
}

.field-error {
    margin-top: 0.35rem;
}

.form-error-message {
    margin-bottom: 1rem;
}

.form-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    margin-bottom: 1rem;
}

.form-consent input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 0.18rem;
}

.form-consent label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.form-consent a,
.recaptcha-note a {
    color: var(--ice);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.recaptcha-note {
    margin: 0 0 1rem;
    color: var(--steel);
    font-size: 0.78rem;
}

.grecaptcha-badge {
    visibility: hidden;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-message {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink);
}

.form-message .icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--red);
    font-family: var(--font-display);
    font-weight: 800;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid rgba(247, 249, 251, 0.12);
    color: var(--steel);
}

.footer-links,
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer a:hover {
    color: var(--ink);
}

.social-links {
    gap: 0.55rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(247, 249, 251, 0.16);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(247, 249, 251, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 236, 255, 0.45);
    background: rgba(220, 236, 255, 0.1);
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent__panel {
    width: min(100%, 980px);
    min-height: 92px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin: 0 auto;
    padding: 0.95rem;
    border: 1px solid rgba(247, 249, 251, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(247, 249, 251, 0.09), transparent 44%),
        rgba(11, 13, 16, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
}

.cookie-consent__mark {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 163, 92, 0.6);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 4px),
        conic-gradient(from 18deg, rgba(200, 163, 92, 0.9), rgba(217, 32, 50, 0.9), rgba(31, 111, 209, 0.9), rgba(200, 163, 92, 0.9));
    box-shadow: inset 0 0 0 10px rgba(11, 13, 16, 0.94);
}

.cookie-consent__copy .eyebrow {
    margin-bottom: 0.25rem;
    color: var(--gold);
}

.cookie-consent__copy h2 {
    margin: 0 0 0.2rem;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.1;
}

.cookie-consent__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.cookie-consent__copy a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 0.2rem;
    color: var(--ice);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.cookie-consent__button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0.78rem 1rem;
    border: 1px solid rgba(247, 249, 251, 0.2);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.cookie-consent__button--quiet {
    color: var(--muted);
    background: rgba(247, 249, 251, 0.04);
}

.cookie-consent__button--primary {
    color: var(--ink);
    border-color: var(--red);
    background: var(--red);
}

.cookie-consent__button:hover {
    transform: translateY(-1px);
}

.error-page {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-content: center;
    padding: 2rem;
    text-align: center;
}

.error-page h1 {
    font-size: 3rem;
}

.privacy-content {
    width: min(100%, 860px);
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 4rem);
}

.privacy-content h1 {
    font-size: 3.2rem;
}

.privacy-content h2 {
    margin-top: 2.3rem;
    font-size: 1.55rem;
}

.privacy-content p {
    color: var(--muted);
}

.privacy-content a {
    color: var(--ice);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-settings-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.2rem;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 111, 209, 0.18), rgba(217, 32, 50, 0.08)),
        rgba(29, 35, 43, 0.82);
    color: var(--ink);
}

.cookie-settings-panel .eyebrow {
    margin-bottom: 0.45rem;
    color: var(--gold);
}

.cookie-settings-panel h2 {
    margin: 0 0 0.35rem;
    color: var(--ink);
    font-size: 1.45rem;
}

.cookie-settings-panel p {
    margin: 0;
    color: var(--muted);
}

.cookie-settings-panel strong {
    color: var(--ink);
}

.cookie-settings-actions {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.privacy-updated {
    margin-top: 3rem;
    color: var(--steel) !important;
    font-size: 0.92rem;
}

.latest-insights-section {
    background: transparent;
    color: var(--ink);
}

.latest-insights-section .eyebrow,
.latest-insight-card p {
    color: var(--steel);
}

.latest-insights-section .button-secondary {
    color: var(--ink);
    border-color: rgba(247, 249, 251, 0.24);
    background: transparent;
}

.latest-insights-grid {
    width: min(100%, var(--max));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
}

.latest-insight-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.7);
    color: var(--ink);
    transition: transform 280ms ease, border-color 280ms ease;
}

.latest-insight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 236, 255, 0.32);
}

.latest-insight-image {
    display: block;
    background: #060200;
}

.latest-insight-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center center;
    background: #060200;
}

.latest-insight-card div {
    padding: 1.2rem;
}

.latest-insight-card h3 {
    color: var(--ink);
    font-size: 1.22rem;
}

.latest-insight-card h3 a {
    color: var(--ink);
}

.blog-index-page {
    background: transparent;
    color: var(--ink);
}

.blog-index-page .blog-hero {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 4rem;
    align-items: end;
    padding-top: calc(var(--header-height) + 5rem);
}

.blog-index-page .blog-hero h1 {
    margin-bottom: 0;
}

.blog-index-page .blog-hero > p {
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 1.18rem;
}

.blog-index-page .blog-feature {
    padding-top: 0;
}

.blog-index-page .featured-post {
    width: min(100%, var(--max));
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
    margin: 0 auto;
    border: 1px solid rgba(247, 249, 251, 0.14);
    background: rgba(29, 35, 43, 0.7);
    box-shadow: var(--shadow);
}

.blog-index-page .featured-post-image {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #060200;
}

.blog-index-page .featured-post-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center center;
    background: #060200;
}

.latest-insight-image img[src$=".png"],
.post-thumb img[src$=".png"] {
    object-fit: contain;
    object-position: center center;
    background: #060200;
}

.blog-index-page .featured-post-image img[src$=".png"] {
    object-fit: contain;
    object-position: center center;
    background: #060200;
}

.blog-index-page .featured-post-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1.55rem;
}

.blog-index-page .featured-post-copy h2 {
    font-size: clamp(1.86rem, 2.08vw, 2.12rem);
    line-height: 1.07;
}

.blog-index-page .featured-post-copy p {
    color: var(--muted);
}

.read-more {
    min-height: 44px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    color: var(--ice);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.read-more:hover {
    color: var(--ink);
}

.blog-index-page .blog-list {
    padding-top: 0;
}

.blog-index-page .post-list {
    width: min(100%, var(--max));
    margin: 0 auto;
    border-top: 1px solid rgba(247, 249, 251, 0.14);
}

.blog-index-page .post-list article {
    display: grid;
    grid-template-columns: 200px minmax(8.8rem, max-content) minmax(0, 1fr) auto;
    gap: 1.8rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(247, 249, 251, 0.14);
    transition: background 220ms ease;
}

.blog-index-page .post-list > article > .article-meta {
    min-width: 8.8rem;
    white-space: nowrap;
    line-height: 1.35;
}

.blog-index-page .post-list article:hover {
    background: rgba(247, 249, 251, 0.03);
}

.post-thumb {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 6px;
    background: #060200;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    background: #060200;
    transition: transform 380ms ease;
}

.blog-index-page .post-list article:hover .post-thumb img {
    transform: scale(1.04);
}

.blog-index-page .post-list h3 {
    margin-bottom: 0.35rem;
}

.blog-index-page .post-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.article-page {
    background: transparent;
    color: var(--ink);
}

.article-hero {
    width: min(100%, var(--max));
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 3rem;
    align-items: end;
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 5rem);
}

.article-back {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.4rem;
    color: var(--steel);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-hero .article-meta {
    color: var(--red) !important;
}

.article-hero h1 {
    color: var(--ink);
    font-size: 4.1rem;
}

.article-subtitle {
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1.5;
}

.article-byline {
    margin-bottom: 0;
    color: var(--steel);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-hero-image {
    min-width: 0;
    margin: 0;
}

.article-image-trigger {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #060200;
    box-shadow: var(--shadow);
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
}

.article-image-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(247, 249, 251, 0.18);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.article-image-trigger:hover::after,
.article-image-trigger:focus-visible::after {
    opacity: 1;
}

.article-image-trigger:focus-visible {
    outline: 2px solid rgba(220, 236, 255, 0.62);
    outline-offset: 5px;
}

.article-image-trigger img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center center;
    background: #060200;
}

.article-image-trigger img[src$=".png"] {
    object-fit: contain;
    background: #060200;
}

.article-hero-image figcaption {
    margin-top: 0.7rem;
    color: var(--steel);
    font-size: 0.84rem;
}

.article-shell {
    width: min(100%, var(--max));
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 760px) 300px;
    gap: 4rem;
    align-items: start;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.article-body {
    min-width: 0;
    max-width: 100%;
    overflow-x: visible;
    overflow-wrap: break-word;
}

.article-body .lead,
.article-body > p:first-child {
    padding: 1.4rem 0 2rem;
    border-top: 1px solid rgba(247, 249, 251, 0.14);
    border-bottom: 1px solid rgba(247, 249, 251, 0.14);
    color: var(--ink);
    font-size: 1.32rem;
    line-height: 1.58;
}

.article-body h2 {
    margin-top: 3rem;
    color: var(--ink);
    font-size: 2.05rem;
}

.article-body h3 {
    margin-top: 2rem;
    color: var(--ink);
}

.article-body p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.78;
    overflow-wrap: break-word;
}

.article-body h2,
.article-body h3,
.article-body li,
.article-body blockquote {
    overflow-wrap: break-word;
}

.article-body strong {
    color: var(--ink);
}

.article-body blockquote {
    margin: 2.2rem 0;
    padding: 1.4rem 1.6rem;
    border-left: 5px solid var(--red);
    background: rgba(29, 35, 43, 0.76);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.32;
}

.table-wrap {
    width: 100%;
    max-width: 100%;
    margin: 1.4rem 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.7);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.table-wrap:focus-visible {
    outline: 2px solid rgba(220, 236, 255, 0.44);
    outline-offset: 3px;
}

.article-body table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.7);
}

.article-body th,
.article-body td {
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid rgba(247, 249, 251, 0.12);
    color: var(--muted);
    text-align: left;
    vertical-align: top;
}

.article-body th {
    background: rgba(247, 249, 251, 0.08);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-body tr:last-child td {
    border-bottom: 0;
}

.table-note {
    color: var(--steel) !important;
    font-size: 0.92rem !important;
}

.article-signature {
    margin: 3rem 0 2rem;
    padding: 1.3rem;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 8px;
    background: rgba(29, 35, 43, 0.7);
}

.article-signature strong,
.article-signature span {
    display: block;
}

.article-signature strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
}

.article-signature span {
    margin-top: 0.25rem;
    color: var(--steel);
}

.references {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 249, 251, 0.14);
}

.references ol {
    padding-left: 1.2rem;
}

.references li {
    margin-bottom: 0.7rem;
    color: var(--muted);
}

.references a,
.article-body a {
    color: var(--ice);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.image-lightbox {
    --lightbox-vw: 100dvw;
    --lightbox-vh: 100dvh;
    --lightbox-scale: 1;
    --lightbox-x: 0px;
    --lightbox-y: 0px;
    position: fixed;
    inset: 0;
    z-index: 520;
    display: grid;
    place-items: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    opacity: 0;
    pointer-events: none;
    overscroll-behavior: contain;
    touch-action: none;
    transition: opacity 180ms ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(5, 7, 10, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.image-lightbox__frame {
    position: relative;
    z-index: 1;
    width: calc(var(--lightbox-vw) - 2rem);
    height: calc(var(--lightbox-vh) - 2rem);
    max-width: 1320px;
    max-height: calc(var(--lightbox-vh) - 2rem);
    display: grid;
    place-items: center;
    cursor: zoom-out;
    transform: scale(0.985);
    transition: transform 180ms ease;
}

.image-lightbox.is-open .image-lightbox__frame {
    transform: scale(1);
}

.image-lightbox__stage {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.image-lightbox__image {
    width: auto;
    height: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    background: #060200;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.54);
    cursor: zoom-in;
    touch-action: none;
    object-fit: contain;
    transform: translate3d(var(--lightbox-x), var(--lightbox-y), 0) scale(var(--lightbox-scale));
    transform-origin: center;
    transition: transform 160ms ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.image-lightbox.is-zoomed .image-lightbox__image {
    cursor: grab;
}

.image-lightbox.is-zoomed .image-lightbox__image:active {
    cursor: grabbing;
}

.image-lightbox__close {
    position: fixed;
    top: max(0.9rem, calc(env(safe-area-inset-top) + 0.75rem));
    right: max(0.9rem, calc(env(safe-area-inset-right) + 0.75rem));
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(247, 249, 251, 0.14);
    border-radius: 999px;
    background: rgba(11, 13, 16, 0.38);
    color: var(--ink);
    font-size: 0;
    line-height: 1;
    opacity: 0.82;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 160ms ease, background 160ms ease, border-color 160ms ease;
}

.image-lightbox__close:hover {
    opacity: 1;
    border-color: rgba(247, 249, 251, 0.28);
    background: rgba(11, 13, 16, 0.62);
}

.image-lightbox__close::before,
.image-lightbox__close::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.image-lightbox__close::before {
    transform: rotate(45deg);
}

.image-lightbox__close::after {
    transform: rotate(-45deg);
}

.image-lightbox__close:focus-visible {
    opacity: 1;
    outline: 2px solid rgba(220, 236, 255, 0.72);
    outline-offset: 4px;
}

.article-aside {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    display: grid;
    gap: 1rem;
}

.aside-card {
    padding: 1.2rem;
    border-radius: 8px;
    background: var(--charcoal);
    color: var(--ink);
}

.aside-card .eyebrow,
.aside-card p {
    color: var(--steel);
}

.aside-card h3 {
    margin-bottom: 0.7rem;
    color: var(--ink);
    font-size: 1.55rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1100px) {
    h1 {
        font-size: 3.65rem;
    }

    h2 {
        font-size: 2.45rem;
    }

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

    .service-card {
        min-height: 260px;
    }

    .program-section,
    .contact-section,
    .profile-section,
    .intro-grid {
        gap: 3rem;
    }
}

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

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2rem;
    }

    .site-header {
        padding: 0 1rem;
    }

    .brand {
        gap: 0.65rem;
        padding: 0.3rem 0.55rem 0.3rem 0.34rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 7px;
    }

    .brand-text {
        font-size: 0.86rem;
        letter-spacing: 0.04em;
    }

    .brand-subtext {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        border-color: rgba(247, 249, 251, 0.24);
        border-radius: 8px;
        background: rgba(247, 249, 251, 0.08);
    }

    .lang-switch {
        margin-left: auto;
        margin-right: 0.45rem;
    }

    .lang-switch a {
        min-width: 40px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.7rem;
        border-bottom: 1px solid rgba(247, 249, 251, 0.14);
        background: rgba(11, 13, 16, 0.98);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 0.8rem;
        border-bottom: 1px solid rgba(247, 249, 251, 0.08);
    }

    .nav-cta {
        margin-top: 0.7rem;
        justify-content: center;
    }

    .hero {
        min-height: 88vh;
        min-height: 88svh;
        padding: calc(var(--header-height) + 3rem) 1rem 1rem;
    }

    .hero-media img {
        object-position: 62% center;
        opacity: 0.42;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(11, 13, 16, 0.96), rgba(11, 13, 16, 0.7)),
            linear-gradient(180deg, rgba(11, 13, 16, 0.1), rgba(11, 13, 16, 0.95));
    }

    .hero-lede {
        font-size: 1rem;
    }

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

    .hero-proof span {
        min-height: 64px;
        font-size: 0.76rem;
    }

    .hero-proof span:nth-child(2) {
        border-right: 0;
    }

    .hero-proof span:nth-child(1),
    .hero-proof span:nth-child(2) {
        border-bottom: 1px solid rgba(247, 249, 251, 0.12);
    }

    .intro-section,
    .section-pad {
        padding: 4rem 1rem;
    }

    .blog-hero,
    .article-hero,
    .privacy-content {
        padding-top: calc(var(--header-height) + 2.5rem);
    }

    .intro-grid,
    .profile-section,
    .legacy-section,
    .program-section,
    .contact-section,
    .newsletter-form,
    .blog-hero,
    .featured-post,
    .article-hero,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .section-heading.split {
        display: block;
    }

    .section-heading.split .button {
        margin-top: 1rem;
    }

    .legacy-image img {
        min-height: 320px;
    }

    .legacy-copy {
        padding: 1.5rem;
    }

    .legacy-copy h2 {
        font-size: 1.85rem;
    }

    .program-grid,
    .article-grid,
    .latest-insights-grid,
    .newsletter-fields {
        grid-template-columns: 1fr;
    }

    .featured-post-image img {
        min-height: 300px;
    }

    .post-list article {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .post-thumb {
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .blog-index-page .blog-hero {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        padding-top: calc(var(--header-height) + 2.5rem);
    }

    .blog-index-page .blog-hero h1 {
        max-width: 11ch;
        font-size: clamp(3rem, 13vw, 4.4rem);
        line-height: 0.98;
    }

    .blog-index-page .blog-hero > p {
        max-width: 34rem;
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .blog-index-page .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-index-page .featured-post-image {
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }

    .blog-index-page .featured-post-image img {
        height: 100%;
        min-height: 0;
        object-fit: contain;
    }

    .blog-index-page .featured-post-image img[src$=".png"] {
        object-fit: contain;
    }

    .blog-index-page .post-list article {
        grid-template-columns: 1fr;
        gap: 0.95rem;
        align-items: start;
    }

    .blog-index-page .post-list > article > .article-meta {
        min-width: 0;
    }

    .article-hero h1 {
        font-size: 2.55rem;
    }

    .article-hero-image {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .article-image-trigger {
        border-radius: 0;
        box-shadow: none;
    }

    .article-image-trigger:focus-visible {
        outline-offset: -5px;
    }

    .article-shell {
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .article-body table {
        min-width: 620px;
    }

    .article-body th,
    .article-body td {
        padding: 0.68rem 0.75rem;
    }

    .cookie-settings-panel {
        grid-template-columns: 1fr;
    }

    .cookie-settings-actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .article-aside {
        position: static;
    }

    .article-body .lead {
        font-size: 1.12rem;
    }

    .article-body blockquote {
        font-size: 1.18rem;
    }

    .contact-section {
        gap: 2rem;
    }
}

@media (max-width: 900px) and (max-height: 520px) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 1.5rem) 1rem 1rem;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-content {
        margin-bottom: 1.25rem;
    }

    .hero-lede {
        margin-bottom: 1rem;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .hero-proof {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-proof span {
        min-height: 52px;
        padding: 0.65rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 620px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .brand {
        max-width: calc(100vw - 78px);
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-subtext {
        display: none;
    }

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

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

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof span,
    .hero-proof span:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(247, 249, 251, 0.12);
    }

    .hero-proof span:last-child {
        border-bottom: 0;
    }

    .service-grid,
    .topic-list,
    .timeline,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-card,
    .topic-list article {
        min-height: auto;
    }

    .blog-index-page .featured-post-copy {
        padding: 1.2rem;
    }

    .blog-index-page .featured-post-copy h2 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.02;
    }

    .article-hero h1 {
        font-size: 2.08rem;
    }

    .article-subtitle {
        font-size: 1.08rem;
    }

    .article-body h2 {
        font-size: 1.55rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .image-lightbox {
        padding:
            max(3.5rem, calc(env(safe-area-inset-top) + 3rem))
            max(0.75rem, env(safe-area-inset-right))
            max(1rem, calc(env(safe-area-inset-bottom) + 0.75rem))
            max(0.75rem, env(safe-area-inset-left));
    }

    .image-lightbox__frame {
        width: calc(var(--lightbox-vw) - 1.5rem);
        height: calc(var(--lightbox-vh) - 4.6rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        max-height: none;
    }

    .image-lightbox__image {
        border-radius: 6px;
    }

    .image-lightbox__close {
        width: 44px;
        height: 44px;
    }

    @media (orientation: landscape) {
        .image-lightbox {
            padding:
                max(0.55rem, env(safe-area-inset-top))
                max(0.75rem, calc(env(safe-area-inset-right) + 0.5rem))
                max(0.55rem, env(safe-area-inset-bottom))
                max(0.75rem, calc(env(safe-area-inset-left) + 0.5rem));
        }

        .image-lightbox__frame {
            width: calc(var(--lightbox-vw) - 1.5rem - env(safe-area-inset-left) - env(safe-area-inset-right));
            height: calc(var(--lightbox-vh) - 1.1rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        }

        .image-lightbox__close {
            top: max(0.55rem, calc(env(safe-area-inset-top) + 0.4rem));
            right: max(0.55rem, calc(env(safe-area-inset-right) + 0.4rem));
        }
    }

    .article-shell {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .article-body table {
        min-width: 560px;
    }

    .article-body th {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }

    .profile-media::before {
        left: -0.5rem;
        bottom: -0.5rem;
        border-left-width: 3px;
        border-bottom-width: 3px;
    }

    .contact-form,
    .newsletter-form {
        padding: 1rem;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 1rem;
    }

    .cookie-consent {
        padding: 0.75rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }

    .cookie-consent__panel {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }

    .cookie-consent__mark {
        display: none;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent__button {
        width: 100%;
    }
}
