@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
}

:root {
    --ink: #151515;
    --muted: #5f5f62;
    --surface: #ffffff;
    --soft: #f3ede5;
    --accent: #f6a935;
    --accent-dark: #9d5200;
    --accent-hover: #e89822;
    --focus-ring: rgba(246, 169, 53, .28);
    --line: #d8d8da;
    --content: 1400px;
    --text-base: 16px;
    --heading-4: 21px;
    --hero-content: 1920px;
    --gutter: clamp(20px, 4vw, 64px);
    --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { max-width: 15ch; font-size: clamp(42px, 4.5vw, 78px); }
h2 { font-size: clamp(30px, 2.3vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(22px, 2vw, 30px); }
h4 { font-size: var(--heading-4); line-height: 1.25; letter-spacing: -0.02em; }
p + p { margin-top: 1em; }

.sr-only, .skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    background: var(--ink);
    color: #fff;
}
:focus-visible {
    outline: 3px solid var(--surface);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--ink);
}

.section { padding: clamp(88px, 8vw, 150px) var(--gutter); }
.section-inner { width: min(100%, var(--content)); margin-inline: auto; padding: 0; }
.eyebrow {
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.section-heading { max-width: 760px; margin-bottom: clamp(42px, 5vw, 76px); }
.section-heading > p:last-child { max-width: 56ch; margin-top: 20px; color: var(--muted); font-size: var(--text-base); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; max-width: none; gap: 32px; }
.button,
.header-cta,
.rp-page .rp-button,
.dev-blog .blog-button,
.rp-page form button[type="submit"],
.rp-page form input[type="submit"] {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.header-cta {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.button-primary,
.header-cta,
.rp-page .rp-button,
.dev-blog .blog-button,
.rp-page form button[type="submit"],
.rp-page form input[type="submit"] {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}
.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.rp-page .rp-button:hover,
.rp-page .rp-button:focus-visible,
.dev-blog .blog-button:hover,
.dev-blog .blog-button:focus-visible,
.rp-page form button[type="submit"]:hover,
.rp-page form button[type="submit"]:focus-visible,
.rp-page form input[type="submit"]:hover,
.rp-page form input[type="submit"]:focus-visible {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 82, 0, .16);
}

.button::after,
.header-cta::after,
.rp-page .rp-button::after,
.dev-blog .blog-button::after,
.rp-page form button[type="submit"]::after,
.contact-line a::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -38%;
    width: 24%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
    transform: skewX(-22deg);
    opacity: 0;
    pointer-events: none;
}
.button:hover::after,
.button:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.rp-page .rp-button:hover::after,
.rp-page .rp-button:focus-visible::after,
.dev-blog .blog-button:hover::after,
.dev-blog .blog-button:focus-visible::after,
.rp-page form button[type="submit"]:hover::after,
.rp-page form button[type="submit"]:focus-visible::after,
.contact-line a:hover::after,
.contact-line a:focus-visible::after {
    animation: button-shine .65s ease-out;
}
@keyframes button-shine {
    0% { left: -38%; opacity: 0; }
    18% { opacity: 1; }
    100% { left: 118%; opacity: 0; }
}
.button:active,
.header-cta:active,
.rp-page .rp-button:active,
.dev-blog .blog-button:active,
.rp-page form button[type="submit"]:active,
.rp-page form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: none;
}
.button-dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.button-dark:hover,
.button-dark:focus-visible { border-color: #363636; background: #363636; color: #fff; }
.text-link { font-weight: 500; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 5px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr auto auto;
    align-items: center;
    gap: clamp(20px, 2vw, 36px);
    width: 100%;
    height: 100%;
    padding-inline: clamp(28px, 3.2vw, 64px);
}
.brand img { width: min(100%, 270px); }
.main-navigation { display: flex; align-items: stretch; justify-content: flex-end; gap: clamp(14px, 1.35vw, 27px); height: 100%; }
.main-navigation a, .nav-dropdown-root {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.main-navigation > a, .nav-dropdown-trigger { display: flex; align-items: center; height: 100%; }
.main-navigation > a { align-self: center; height: auto; }
.main-navigation > a, .nav-dropdown-trigger > a, .nav-dropdown-root { position: relative; }
.main-navigation > a::after, .nav-dropdown-trigger > a::after, .nav-dropdown-root::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-navigation > a:hover::after, .nav-dropdown:hover .nav-dropdown-trigger > a::after, .nav-dropdown:hover .nav-dropdown-root::after, .nav-dropdown:focus-within .nav-dropdown-trigger > a::after, .nav-dropdown:focus-within .nav-dropdown-root::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { gap: 5px; }
.nav-dropdown-trigger button { display: inline-flex; align-items: center; justify-content: center; padding: 5px 0 5px 5px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.nav-dropdown-root { align-self: center; gap: 7px; height: auto; padding: 0 !important; }
.nav-dropdown-trigger button span { display: block; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown-trigger button span { transform: translateY(2px) rotate(225deg); }
.nav-submenu { position: absolute; top: calc(100% - 1px); z-index: 110; display: none; background: #fff; border-top: 3px solid var(--accent); box-shadow: 0 20px 48px rgba(28,23,15,.15); }
.nav-dropdown:hover > .nav-submenu, .nav-dropdown:focus-within > .nav-submenu, .nav-dropdown.is-open > .nav-submenu { display: grid; }
.nav-submenu--compact { left: -24px; min-width: 260px; padding: 14px; gap: 2px; }
.nav-submenu--compact.nav-submenu--right { right: -20px; left: auto; }
.nav-submenu--compact a { padding: 11px 13px; font-weight: 400; }
.nav-submenu--compact a:hover { background: #fff6e8; color: var(--accent-dark); }
.nav-megamenu { position: fixed; top: var(--header-height); right: 0; left: 0; grid-template-columns: minmax(260px, .8fr) minmax(720px, 2.4fr); gap: clamp(40px, 5vw, 90px); padding: 42px clamp(40px, 5vw, 88px) 48px; }
.nav-megamenu-intro { max-width: 340px; }
.nav-megamenu-intro .eyebrow { margin-bottom: 11px; }
.nav-megamenu-intro h2 { margin-bottom: 17px; font-size: 30px; letter-spacing: -.025em; }
.nav-megamenu-intro p:not(.eyebrow) { margin-bottom: 20px; color: var(--muted); line-height: 1.5; }
.nav-megamenu-actions { display: grid; justify-items: start; gap: 14px; }
.nav-megamenu-actions .text-link { padding: 0; }
.nav-megamenu-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 18px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}
.nav-megamenu-button:hover,
.nav-megamenu-button:focus-visible { background: var(--ink); color: #fff; }
.language-menu-grid {
    display: grid;
    grid-template-columns: minmax(145px, 1fr) minmax(0, 4fr);
    align-content: start;
    column-gap: 0;
}
.language-menu-priority,
.language-menu-secondary {
    display: grid;
    align-content: start;
}
.language-menu-priority { grid-template-columns: minmax(145px, 1fr); }
.language-menu-secondary {
    grid-template-columns: repeat(4, minmax(115px, 1fr));
    border-left: 3px solid #b8b4ad;
}
.language-menu-grid a {
    padding: 8px 18px;
    font-weight: 400;
    transition: color 180ms ease, background-color 180ms ease;
}
.language-menu-secondary a:not(:nth-child(4n + 1)) { border-left: 1px solid var(--line); }
.language-menu-grid a:hover,
.language-menu-grid a:focus-visible { background: #fff8ee; color: var(--accent-dark); }
.language-switcher {
    position: relative;
    z-index: 120;
    min-width: 58px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}
.language-switcher summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    list-style: none;
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary::after {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}
.language-switcher[open] summary::after { transform: translateY(2px) rotate(225deg); }
.language-switcher-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    display: grid;
    min-width: 88px;
    padding: 6px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.language-switcher-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 10px 12px;
    color: var(--ink);
    text-align: center;
    text-decoration: none;
}
.language-switcher-menu a:hover,
.language-switcher-menu a:focus-visible,
.language-switcher-menu a[aria-current="page"] {
    background: var(--paper);
    color: var(--accent-text);
}
.menu-toggle { display: none; }

.hero {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 112px;
    height: calc(100svh - var(--header-height));
    min-height: 620px;
    background: var(--ink);
}
.hero-slider { position: relative; min-width: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:first-child img { object-position: 54% center; }
.hero-slide:nth-child(2) img { object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 8, 8, .78) 0%, rgba(8, 8, 8, .46) 37%, rgba(8, 8, 8, .04) 72%); }
.hero-copy {
    position: absolute;
    left: max(var(--gutter), calc((100vw - var(--hero-content)) / 2));
    top: 50%;
    width: min(720px, 62%);
    color: #fff;
    transform: translateY(-50%);
}
.hero-copy .eyebrow { color: var(--accent); }
.hero-copy > p:not(.eyebrow) { max-width: 55ch; margin: 26px 0 32px; font-size: clamp(17px, 1.25vw, 21px); }
.hero-slider.is-travel-slide .hero-copy { color: var(--ink); }
.hero-slider.is-travel-slide .hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 43%, rgba(255,255,255,.05) 78%); }
.hero-travel-link {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 215px auto;
    align-items: center;
    gap: 24px;
    width: min(550px, calc(100vw - 48px));
    min-height: 104px;
    padding: 20px 30px;
    border-radius: 28px 0 0 0;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
}
.hero-travel-link::before {
    position: absolute;
    bottom: 0;
    left: -28px;
    width: 28px;
    height: 28px;
    border-radius: 0 0 28px 0;
    box-shadow: 14px 14px 0 14px #fff;
    content: "";
}

/* Bildherkunft des jeweils aktiven Hero-Motivs. */
.hero-travel-link::after {
    position: absolute;
    bottom: 15px;
    left: calc(-1 * clamp(128px, 13vw, 176px));
    width: clamp(110px, 12vw, 160px);
    aspect-ratio: 1700.79 / 566.93;
    background: url("/assets/media/source/labels/ai-modified-white.svg") center / contain no-repeat;
    content: "";
    pointer-events: none;
}

.hero.is-travel-slide .hero-travel-link::after {
    background-image: url("/assets/media/source/labels/ai-generated-white.svg");
}
.hero-travel-link img { width: 215px; max-height: 68px; object-fit: contain; }
.hero-travel-link span { justify-self: start; padding-bottom: 3px; border-bottom: 1px solid var(--accent-dark); font-size: 17px; font-weight: 500; }
.hero-travel-link:hover span { color: var(--accent-dark); }
.hero-slider-controls { position: absolute; bottom: 28px; left: max(var(--gutter), calc((100vw - var(--hero-content)) / 2)); z-index: 4; display: flex; gap: 9px; }
.hero-slider-controls button { width: 36px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.5); cursor: pointer; }
.hero-slider-controls button.is-active { background: var(--accent); }
.telc-bar {
    grid-column: 1 / -1;
    background: var(--accent);
}
.telc-bar-inner {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 40px;
    width: min(calc(100% - (2 * var(--gutter))), var(--content));
    height: 100%;
    margin-inline: auto;
}
.telc-bar img { width: 170px; max-height: 72px; object-fit: contain; }
.telc-bar p { color: var(--ink); font-size: clamp(17px, 1.4vw, 22px); font-weight: 500; }
.telc-bar .button-dark { background: var(--ink); color: #fff; }

.intro-heading h2 { max-width: none; }
.intro-heading h2 span { display: block; white-space: nowrap; }
.intro-content { max-width: 780px; }
.intro-lead { max-width: 60ch; font-size: clamp(19px, 1.4vw, 23px); line-height: 1.55; }
.intro-copy { max-width: 68ch; margin-top: 34px; }
.contact-line { display: grid; grid-template-columns: minmax(220px, auto) 1fr; align-items: center; gap: 24px; margin-top: 32px; color: var(--muted); font-size: 14px; }
.contact-line a { position: relative; display: grid; gap: 2px; min-width: 220px; padding: 16px 20px; overflow: hidden; isolation: isolate; background: var(--accent); color: var(--ink); text-decoration: none; transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.contact-line a span { font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.contact-line a strong { font-size: 22px; font-weight: 500; line-height: 1.25; }
.contact-line a:hover, .contact-line a:focus-visible { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(157,82,0,.16); }

.film { background: var(--soft); }
.film-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(48px, 6vw, 100px); }
.film-copy h2 { max-width: none; }
.film-copy h2 span { display: block; white-space: nowrap; }
.feature-list { display: grid; gap: 17px; margin: 36px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 26px; color: #373739; }
.feature-list li::before { position: absolute; top: .68em; left: 0; width: 9px; height: 9px; background: var(--accent); content: ""; }
.film-media { position: relative; order: -1; }
.film-media::before { position: absolute; z-index: 0; inset: -28px 28px 28px -28px; border: 1px solid var(--accent); content: ""; }
.film-media video { position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 9; background: #111; object-fit: cover; }

.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 420px; gap: 18px; }
.service-card { position: relative; grid-column: span 4; overflow: hidden; background: var(--ink); color: #fff; }
.service-card-large { grid-column: span 7; }
.service-card-large + .service-card { grid-column: span 5; }
.service-card:nth-child(3), .service-card:nth-child(4) { grid-column: span 6; }
.service-card-wide { grid-column: span 7; }
.service-card-travel { grid-column: span 5; }
.service-card-telc { grid-column: span 5; }
.service-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover > img { transform: scale(1.025); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 22%, rgba(0,0,0,.86) 100%); }
.service-copy { position: absolute; inset: auto 34px 32px; }
.service-number { display: block; margin-bottom: 12px; color: var(--accent); font-size: 14px; font-weight: 500; }
.service-copy p { max-width: 55ch; margin: 14px 0 18px; color: rgba(255,255,255,.86); }
.service-copy a { font-weight: 500; text-decoration-color: var(--accent); text-underline-offset: 5px; }

.languages { background: var(--surface); }
.languages-grid { display: grid; grid-template-columns: minmax(300px, .7fr) 1.3fr; gap: clamp(54px, 8vw, 140px); align-items: start; }
.languages-heading { position: sticky; top: calc(var(--header-height) + 48px); }
.languages-heading h2 { max-width: 12ch; }
.languages-heading > p:last-child { max-width: 42ch; margin-top: 24px; color: var(--muted); }
.language-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.language-list a { display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-bottom: 1px solid var(--line); font-size: 17px; text-decoration: none; transition: color 180ms ease, background-color 180ms ease; }
.language-list a:not(:nth-child(3n + 1)) { border-left: 1px solid var(--line); }
.language-list a img { width: 28px; height: 28px; flex: 0 0 28px; padding: 2px; border-radius: 50%; background: #fff; object-fit: contain; }
.language-list a:hover,
.language-list a:focus-visible { color: var(--accent-dark); background: var(--soft); }

.quality { padding-block: clamp(80px, 7vw, 130px); background: var(--ink); color: #fff; }
.quality-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(52px, 8vw, 150px); align-items: center; }
.quality-copy h2 { max-width: 15ch; }
.quality-copy .eyebrow { color: var(--accent); }
.quality-copy > p:not(.eyebrow) { max-width: 65ch; margin: 28px 0 34px; color: #d7d7d8; }
.quality-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quality-logos figure { display: grid; place-items: center; min-height: 160px; padding: 26px; background: #fff; }
.quality-logo--education { grid-column: 1 / -1; }
.quality-logos img { max-width: 270px; max-height: 94px; object-fit: contain; }
.quality-logo--training img { max-width: 340px; max-height: 116px; transform: scale(1.18); }
.quality-logo--education img { max-width: 430px; }

.founder { position: relative; min-height: 780px; overflow: hidden; color: #fff; }
.founder-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 45% 24%; }
.founder-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.58) 42%, rgba(8,8,8,.03) 75%); }
.founder-inner { position: relative; display: flex; align-items: center; min-height: 780px; }
.founder-copy { max-width: 650px; padding-block: 80px; }
.founder-copy .eyebrow { color: var(--accent); }
.founder-copy h2 { margin-bottom: 30px; }
.founder-copy p:not(.eyebrow) { color: rgba(255,255,255,.9); font-size: var(--text-base); }

.blog { background: var(--soft); }
.blog .section-heading { margin-bottom: clamp(38px, 4vw, 58px); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(24px, 2.5vw, 40px);
}
.blog-card {
    min-width: 0;
    background: #fff;
    box-shadow: 0 18px 44px rgba(58, 43, 26, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(58, 43, 26, .13);
}
.blog-card > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
}
.blog-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e9dfd2;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.025); }
.blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 2vw, 32px);
}
.blog-card time {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 6px 10px;
    background: #fff3df;
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.blog-card h3 {
    margin: 0 0 15px;
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.2;
}
.blog-card p {
    margin: 0 0 24px;
    color: var(--muted);
}
.blog-card .text-link { margin-top: auto; }


.faq { background: #fff; }
.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
    gap: clamp(52px, 8vw, 136px);
    align-items: start;
}
.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 48px);
}
.faq-heading h2 {
    max-width: 16ch;
}
.faq-heading > p:last-child {
    max-width: 42ch;
    margin-top: 22px;
    color: var(--muted);
}
.faq-list {
    border-top: 1px solid var(--ink);
}
.faq-list details {
    border-bottom: 1px solid var(--line);
}
.faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    color: var(--ink);
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 600;
    line-height: 1.3;
    list-style: none;
    cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--accent-dark);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.faq-list summary:hover::after,
.faq-list summary:focus-visible::after {
    border-color: var(--accent);
    background: var(--soft);
}
.faq-list summary:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 5px;
}
.faq-list details[open] summary::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-width: 72ch;
    padding: 0 56px 25px 0;
    color: var(--muted);
}
.faq-answer p { margin: 0; }
.faq-answer a {
    color: var(--ink);
    text-underline-offset: 4px;
}

.final-cta {
    background: var(--soft);
}
.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: clamp(44px, 7vw, 112px);
    align-items: start;
}
.final-cta-inner > header {
    padding-left: clamp(20px, 2.2vw, 34px);
    border-left: 5px solid var(--accent);
}
.final-cta-inner .eyebrow {
    margin: 0 0 10px;
}
.final-cta-inner h2 {
    margin: 0;
    max-width: 20ch;
}
.final-cta-action > p {
    max-width: 58ch;
    margin: 0 0 28px;
    color: var(--muted);
}
.basic-form,
.rp-page form {
    padding: clamp(28px, 4vw, 54px);
    border-top: 5px solid var(--accent);
    background: #fff;
}
.form-grid,
.rp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.basic-form label,
.rp-page form label {
    display: grid;
    gap: 8px;
    color: #373739;
    font-size: 14px;
    font-weight: 500;
}
.basic-form :where(input:not([type="checkbox"]), select, textarea),
.rp-page form :where(input:not([type="checkbox"]), select, textarea) {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfcfd2;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    font-weight: 400;
}
.basic-form textarea,
.rp-page form textarea { resize: vertical; }
.basic-form :where(input:not([type="checkbox"]), select, textarea):focus,
.rp-page form :where(input:not([type="checkbox"]), select, textarea):focus {
    border-color: var(--accent-dark);
    outline: 2px solid var(--focus-ring);
    outline-offset: 0;
}
.form-field-wide { grid-column: 1 / -1; }
.form-consent,
.rp-page form .rp-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 11px !important;
    margin-top: 22px;
    font-weight: 400 !important;
}
.form-consent input,
.rp-page form input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
}
.form-consent a { text-underline-offset: 3px; }
.form-actions,
.rp-form-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
}
.form-status,
.rp-form-actions p { color: var(--muted); font-size: 14px; }


.site-footer { padding-block: 80px 32px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: clamp(30px, 4vw, 68px); }
.footer-brand img { width: min(330px, 100%); margin-bottom: 26px; }
.footer-brand p { max-width: 35ch; color: #bdbdbf; }
.footer-grid h2 { margin-bottom: 20px; font-size: 16px; letter-spacing: 0; }
.footer-grid nav, .footer-grid address { display: flex; flex-direction: column; gap: 10px; font-style: normal; }
.footer-grid a { color: #c9c9ca; font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid address p { margin-bottom: 8px; color: #c9c9ca; font-size: 14px; }
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.footer-social-icon {
    width: 32px;
    height: 32px;
    padding: 7px;
    border: 1px solid #4a4a4c;
    color: #c9c9ca;
    fill: currentColor;
}
.footer-social-icon--instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}
.footer-social-icon-dot {
    fill: currentColor;
    stroke: none;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 70px; padding-top: 28px; border-top: 1px solid #3d3d3f; color: #9c9c9e; font-size: 13px; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a { text-decoration: none; }

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: minmax(220px, 270px) 1fr auto; gap: 24px; }
    .main-navigation { gap: 16px; }
    .main-navigation a { font-size: 13px; }
    .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    :root { --header-height: 88px; }
    .header-inner { grid-template-columns: 1fr auto; padding-block: 10px; }
    .brand img { width: 225px; }
    .header-cta { display: none; }
    .menu-toggle {
        position: relative;
        display: grid;
        width: 44px;
        height: 44px;
        padding: 10px;
        place-items: center;
        border: 0;
        background: transparent;
    }
    .menu-toggle span:not(.sr-only) {
        position: absolute;
        top: 50%;
        left: 10px;
        display: block;
        width: 24px;
        height: 2px;
        margin-top: -1px;
        background: var(--ink);
        transform-origin: center;
        transition: transform .26s cubic-bezier(.4, 0, .2, 1), opacity .16s ease;
    }
    .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
    .menu-toggle span:nth-child(2) { transform: translateY(0); }
    .menu-toggle span:nth-child(3) { transform: translateY(7px); }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 28px var(--gutter);
        background: #fff;
    }
    .main-navigation.is-open { display: flex; }
    .main-navigation a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
    .hero { grid-template-rows: minmax(520px, 65svh) auto; height: auto; min-height: 0; }
    .hero-slide:first-child img { object-position: 62% center; }
    .hero-copy { left: var(--gutter); width: calc(100% - (2 * var(--gutter))); }
    .hero-travel-link { grid-template-columns: 145px auto; padding-right: var(--gutter); }
    .hero-travel-link img { width: 145px; }
    .telc-bar { grid-column: 1; min-height: 130px; }
    .telc-bar-inner { grid-template-columns: 140px 1fr; padding-block: 20px; }
    .telc-bar .button { grid-column: 2; justify-self: start; }
    .film-grid, .languages-grid, .quality-grid, .faq-grid, .final-cta-inner { grid-template-columns: 1fr; }
    .faq-heading { position: static; }
    .faq-heading h2 { max-width: 22ch; }
    .film-media { order: initial; }
    .intro-lead { padding-top: 0; }
    .intro-copy { grid-column: 1; }
    .languages-heading { position: static; }
    .service-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 400px; }
    .service-card, .service-card-large, .service-card-large + .service-card, .service-card-wide, .service-card-travel, .service-card-telc { grid-column: span 1; }
    .language-list { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; gap: 60px; }
    .blog-card img { height: min(56vw, 420px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    h1 { font-size: clamp(40px, 12vw, 56px); }
    h2 { font-size: clamp(29px, 7.5vw, 38px); }
    .intro-heading h2 span { white-space: normal; }
    .telc-bar-inner { grid-template-columns: 1fr; }
    .telc-bar .button { grid-column: 1; }
    .film-grid { gap: 60px; }
    .film-media::before { inset: -16px 16px 16px -16px; }
    .language-list { grid-template-columns: 1fr 1fr; }
    .quality-logos { grid-template-columns: 1fr; }
    .quality-logo--education { grid-column: 1; }
    .founder, .founder-inner { min-height: 760px; }
    .founder-inner { align-items: end; }
    .section-heading-row { align-items: flex-start; flex-direction: column; }
    .registration-widget { padding: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

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


/* Language directory: shared responsive column dividers */
@media (max-width: 1100px) {
    .language-list a:not(:nth-child(3n + 1)) { border-left: 0; }
    .language-list a:nth-child(even) { border-left: 1px solid var(--line); }
}

/* Shared 50/50 editorial layout: title block left, content right. */
.rp-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: start;
  gap: clamp(64px, 7vw, 124px);
}

.rp-editorial-split > * {
  min-width: 0;
  align-self: start;
}

.rp-editorial-split--accent > :first-child {
  padding-left: clamp(22px, 2.4vw, 36px);
  border-left: 6px solid var(--rp-orange, var(--accent));
}

.rp-editorial-split--accent .rp-eyebrow,
.rp-editorial-split--accent .eyebrow {
  color: var(--rp-orange-dark, var(--accent-dark));
}

@media (max-width: 1100px) {
  .rp-editorial-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
}

/* Floating WhatsApp contact */
.whatsapp-link {
    position: fixed;
    right: clamp(18px, 2.2vw, 32px);
    bottom: clamp(18px, 2.2vw, 32px);
    z-index: 95;
    display: block;
    width: clamp(48px, 3.5vw, 56px);
    height: clamp(48px, 3.5vw, 56px);
    overflow: hidden;
    border-radius: 50%;
    line-height: 0;
    transition: transform .2s ease;
}
.whatsapp-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.whatsapp-link:hover,
.whatsapp-link:focus-visible {
    transform: translateY(-3px) scale(1.03);
}
.whatsapp-link:active {
    transform: translateY(0) scale(.98);
}

/* Mobile homepage: clear editorial flow, accessible header and consistent gutters. */
@media (max-width: 1200px) {
    html, body { overflow-x: clip; }
    .site-header {
        background: #fff;
        backdrop-filter: none;
    }
    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
        padding-inline: var(--gutter);
    }
    .brand { grid-column: 1; min-width: 0; }
    .language-switcher {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        z-index: 121;
    }
    .language-switcher summary {
        min-width: 48px;
        min-height: 44px;
        padding: 8px 4px;
        border: 0;
        background: transparent;
    }
    .language-switcher-menu {
        top: calc(100% + 8px);
        right: -8px;
        min-width: 96px;
        padding: 8px;
    }
    .language-switcher-menu a { min-height: 44px; }
    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
        z-index: 121;
    }
    .site-header::after {
        position: fixed;
        inset: 0;
        z-index: 108;
        background: rgba(15, 15, 15, .44);
        content: "";
        opacity: 0;
        pointer-events: none;
        transition: opacity .24s ease;
    }
    .site-header:has(.main-navigation.is-open)::after {
        opacity: 1;
        pointer-events: auto;
    }
    .main-navigation {
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 110;
        display: flex;
        width: min(88vw, 390px);
        height: 100dvh;
        max-height: 100dvh;
        align-items: stretch;
        padding: calc(var(--header-height) + 18px) 28px 40px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #fff;
        box-shadow: -18px 0 48px rgba(0, 0, 0, .16);
        visibility: hidden;
        transform: translate3d(102%, 0, 0);
        transition: transform .26s ease, visibility 0s linear .26s;
    }
    .main-navigation.is-open {
        visibility: visible;
        transform: translate3d(0, 0, 0);
        transition-delay: 0s;
    }
    .main-navigation > a,
    .main-navigation > .nav-dropdown {
        flex: 0 0 auto;
        width: 100%;
    }
    .main-navigation > a {
        align-self: stretch;
        height: auto;
    }
    .nav-dropdown-trigger {
        width: 100%;
        height: auto;
        min-height: 54px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
    }
    .main-navigation .nav-dropdown-trigger {
        position: relative;
    }
    .main-navigation .nav-dropdown-trigger::after {
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        height: 3px;
        background: var(--accent);
        content: "";
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
    }
    .main-navigation .nav-dropdown:hover > .nav-dropdown-trigger::after,
    .main-navigation .nav-dropdown:focus-within > .nav-dropdown-trigger::after {
        transform: scaleX(1);
    }
    .main-navigation .nav-dropdown-trigger > a::after,
    .main-navigation .nav-dropdown-root::after {
        display: none;
    }
    .nav-dropdown-trigger > a,
    .main-navigation .nav-dropdown-root {
        flex: 1 1 auto;
        min-height: 54px;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 0;
        font-size: 17px;
        text-align: left;
    }
    .main-navigation .nav-dropdown-root > span {
        margin-right: 16px;
    }
    .nav-dropdown-trigger > button {
        flex: 0 0 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .main-navigation > .nav-root-link {
        min-height: 54px;
        padding: 15px 0;
        font-size: 17px;
    }
    .main-navigation .nav-submenu {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 8px 0 18px;
        border-top: 0;
        box-shadow: none;
    }
    .main-navigation .nav-dropdown {
        position: static;
    }
    .main-navigation .nav-dropdown:not(.is-open) > .nav-submenu {
        display: none;
    }
    .main-navigation .nav-dropdown.is-open > .nav-submenu {
        display: grid;
    }
    .main-navigation .nav-megamenu {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .main-navigation .nav-megamenu-intro {
        display: none;
    }
    .main-navigation .nav-submenu a {
        font-size: 14px;
        line-height: 1.35;
    }
    .main-navigation .language-menu-grid {
        grid-template-columns: 1fr;
    }
    .main-navigation .language-menu-priority,
    .main-navigation .language-menu-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .main-navigation .language-menu-secondary {
        border-top: 3px solid #b8b4ad;
        border-left: 0;
    }
    .main-navigation .language-menu-grid a {
        min-height: 44px;
        padding: 10px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }
    .main-navigation .language-menu-priority a:nth-child(odd),
    .main-navigation .language-menu-secondary a:nth-child(odd) {
        border-left: 0;
    }
    .main-navigation .language-menu-priority a:nth-child(even),
    .main-navigation .language-menu-secondary a:nth-child(even) {
        border-left: 1px solid var(--line);
    }
    .quality,
    .founder-inner,
    .site-footer {
        padding-inline: var(--gutter);
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 76px;
        --gutter: 20px;
    }
    .site-header { height: var(--header-height); }
    .whatsapp-link { right: 16px; bottom: 16px; width: 50px; height: 50px; }
    .header-inner {
        gap: 8px;
        padding-block: 8px;
    }
    .brand img { width: min(208px, 55vw); }
    .language-switcher { font-size: 12px; }
    .language-switcher summary { gap: 6px; }
    .menu-toggle { width: 44px; height: 44px; }
    .main-navigation {
        width: min(90vw, 370px);
        padding-inline: 24px;
    }

    .hero {
        display: block;
        height: auto;
        min-height: 0;
        background: #fff;
    }
    .hero-slider {
        --hero-media-height: clamp(290px, 78vw, 350px);
        display: grid;
        grid-template-rows: var(--hero-media-height) auto auto;
        overflow: hidden;
        background: var(--ink);
    }
    .hero-slide {
        top: 0;
        bottom: auto;
        height: var(--hero-media-height);
    }
    .hero-slide:first-child img { object-position: 57% center; }
    .hero-slide:nth-child(2) img { object-position: 63% center; }
    .hero-shade {
        top: 0;
        bottom: auto;
        height: var(--hero-media-height);
        background: linear-gradient(180deg, rgba(8,8,8,.04), rgba(8,8,8,.18));
    }
    .hero.is-travel-slide .hero-shade,
    .hero-slider.is-travel-slide .hero-shade {
        background: linear-gradient(180deg, rgba(8,8,8,.02), rgba(8,8,8,.18));
    }
    .hero-travel-link::after { display: none; }
    .hero-shade::after {
        position: absolute;
        right: var(--gutter);
        bottom: 14px;
        width: 116px;
        aspect-ratio: 1700.79 / 566.93;
        background: url("/assets/media/source/labels/ai-modified-white.svg") center / contain no-repeat;
        content: "";
        pointer-events: none;
    }
    .hero.is-travel-slide .hero-shade::after {
        background-image: url("/assets/media/source/labels/ai-generated-white.svg");
    }
    .hero-copy {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        grid-row: 2;
        width: auto;
        padding: 30px var(--gutter) 32px;
        color: #fff;
        transform: none;
    }
    .hero.is-travel-slide .hero-copy,
    .hero-slider.is-travel-slide .hero-copy { color: #fff; }
    .hero-copy .eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.4;
    }
    .hero-copy h1 {
        max-width: none;
        font-size: clamp(30px, 7.8vw, 34px);
        line-height: 1.06;
        text-wrap: balance;
    }
    .hero-copy > p:not(.eyebrow) {
        margin: 18px 0 24px;
        font-size: 16px;
        line-height: 1.55;
    }
    .hero-copy .button { width: 100%; }
    .hero .hero-slider-controls {
        top: calc(var(--hero-media-height) - 50px);
        right: auto;
        bottom: auto;
        left: var(--gutter);
        z-index: 6;
        height: 44px;
        transform: none;
    }
    .hero .hero-slider-controls button {
        width: 44px;
        height: 44px;
    }
    .hero-travel-link {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-row: 3;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
        width: auto;
        min-height: 0;
        margin: 0 var(--gutter) 28px;
        padding: 16px;
        border-radius: 0;
    }
    .hero-travel-link::before { display: none; }
    .hero-travel-link img { width: 112px; max-height: 54px; }
    .hero-travel-link span {
        font-size: 15px;
        line-height: 1.35;
    }
    .telc-bar { min-height: 0; }
    .telc-bar-inner {
        width: 100%;
        gap: 20px;
        padding: 30px var(--gutter) 34px;
    }
    .telc-bar img { width: 138px; }
    .telc-bar p {
        width: 100%;
        max-width: none;
        font-size: 17px;
        line-height: 1.45;
        text-wrap: balance;
    }
    .telc-bar .button {
        width: 100%;
        justify-self: stretch;
    }

    .section {
        padding: 68px var(--gutter);
    }
    .section-inner,
    .section-heading,
    .intro-content,
    .founder-copy,
    .footer-grid,
    .footer-bottom {
        width: 100%;
        max-width: none;
    }
    .section-heading { margin-bottom: 36px; }
    .intro-heading h2 {
        max-width: none;
        font-size: clamp(28px, 7.2vw, 32px);
        line-height: 1.1;
        text-wrap: balance;
    }
    .film-grid,
    .languages-grid,
    .quality-grid,
    .faq-grid,
    .final-cta-inner { gap: 42px; }

    .service-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 24px;
    }
    .service-card,
    .service-card-large,
    .service-card-large + .service-card,
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card-wide,
    .service-card-travel,
    .service-card-telc {
        display: grid;
        grid-column: 1;
        grid-template-rows: auto auto;
        min-height: 0;
        overflow: hidden;
        border: 1px solid var(--line);
        background: #fff;
        color: var(--ink);
    }
    .service-card > img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
    .service-overlay { display: none; }
    .service-copy {
        position: static;
        padding: 24px;
    }
    .service-copy p { color: var(--muted); }
    .service-copy a { color: var(--ink); }
    .service-number,
    .founder-copy .eyebrow { color: var(--accent-dark); }

    .quality {
        padding-block: 68px;
    }
    .quality-copy h2 {
        max-width: 14ch;
        font-size: clamp(30px, 8vw, 38px);
    }
    .quality-logos figure {
        min-height: 130px;
        padding: 22px;
    }

    .founder {
        display: grid;
        min-height: 0;
        overflow: visible;
        background: var(--soft);
        color: var(--ink);
    }
    .founder-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-position: 50% 28%;
    }
    .founder-shade { display: none; }
    .founder-inner {
        min-height: 0;
        padding-block: 38px 64px;
    }
    .founder-copy {
        max-width: none;
        padding: 0;
    }
    .founder-copy h2 {
        margin-bottom: 22px;
        font-size: clamp(30px, 8vw, 38px);
    }
    .founder-copy p:not(.eyebrow) {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.7;
    }

    .language-list a {
        min-width: 0;
        padding-inline: 10px;
        font-size: 14px;
    }
    .languages-heading h2 {
        max-width: none;
        font-size: clamp(29px, 7.4vw, 32px);
        line-height: 1.08;
        text-wrap: balance;
    }
    .language-list a img {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .site-footer {
        padding-block: 56px 28px;
        text-align: center;
    }
    .footer-grid {
        justify-items: center;
        gap: 36px;
    }
    .footer-brand img {
        width: min(280px, 84vw);
        margin-inline: auto;
    }
    .footer-brand p { margin-inline: auto; }
    .footer-grid nav,
    .footer-grid address { align-items: center; }
    .footer-social-icons { justify-content: center; }
    .footer-bottom {
        align-items: center;
        gap: 24px;
        margin-top: 48px;
        text-align: center;
    }
    .footer-bottom nav {
        order: 1;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 22px;
    }
    .footer-bottom > p { order: 2; }

    :where(.button, .header-cta, .menu-toggle, .language-switcher summary, .language-switcher-menu a):focus-visible {
        outline: 3px solid var(--accent);
        outline-offset: 3px;
    }
}

@media (forced-colors: active) {
    .main-navigation,
    .language-switcher-menu,
    .service-card { border: 1px solid CanvasText; }
    .site-header::after { background: CanvasText; }
}
