@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-600.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/poppins-700.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/roboto-latin-ext.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/roboto-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
    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;
}

:root {
    --ink: #323335;
    --night: #0c131f;
    --white: #fff;
    --line: #c6c6c6;
    --muted: #76777a;
    --content-width: 900px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

:focus-visible {
    outline: 2px solid #00d59a;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 5000;
    padding: 10px 14px;
    color: var(--night);
    background: var(--white);
    transform: translateY(-140%);
    transition: transform 160ms ease;
}

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

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 100px;
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 100px;
}

.desktop-languages {
    display: flex;
    align-self: stretch;
    justify-self: start;
    align-items: center;
    padding-left: 40px;
}

.language-menu {
    position: relative;
    height: 100%;
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 64px;
    margin: 18px 0 0;
    padding: 20px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    line-height: 24px;
}

.language-trigger::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 17px;
    left: 20px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.language-menu:first-child .language-trigger::after,
.language-trigger:hover::after,
.language-trigger[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.language-trigger span,
.mobile-language > button span {
    width: 0;
    height: 0;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 180ms ease;
}

.language-trigger[aria-expanded="true"] span,
.mobile-language > button[aria-expanded="true"] span {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 82px;
    left: 0;
    display: grid;
    min-width: 235px;
    padding: 8px 0;
    color: var(--white);
    background: rgba(12, 19, 31, .97);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.language-menu:hover .language-dropdown,
.language-menu:focus-within .language-dropdown,
.language-menu.is-open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    padding: 10px 20px;
    line-height: 24px;
    white-space: nowrap;
}

.language-dropdown a:hover,
.language-dropdown a:focus-visible {
    background: rgba(255, 255, 255, .09);
}

.brand {
    position: relative;
    z-index: 2001;
    display: block;
    width: 83px;
    justify-self: center;
}

.brand img {
    width: 83px;
    height: auto;
}

.header-spacer {
    display: block;
}

.header-dark {
    color: var(--white);
}

.header-light {
    color: var(--ink);
}

.menu-toggle,
.mobile-navigation {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: var(--night);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center center;
}

.hero-shade {
    background: rgba(4, 11, 24, .48);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(750px, calc(100% - 60px));
    padding-top: 80px;
    color: var(--white);
    text-align: center;
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-copy p {
    margin: 0;
    line-height: 1.6;
}

.hero-copy p + p {
    margin-top: 25px;
}

.scroll-cue {
    position: absolute;
    bottom: 27px;
    left: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    transform: translateX(-50%);
}

.scroll-cue::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 12px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

.content-section,
.contact-section,
.not-found-section {
    position: relative;
    color: var(--white);
    background: var(--night);
}

.content-section {
    background: #000;
}

.content-wrap {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.content-image {
    width: 100%;
    height: auto;
}

.content-copy {
    padding: 20px 0;
}

.content-copy h1 {
    margin: 0 0 20px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.content-copy p {
    margin: 0 0 25.6px;
    line-height: 1.6;
}

.content-copy p:last-child {
    margin-bottom: 0;
}

.contact-section {
    min-height: 1049px;
}

.contact-wrap {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    padding: 230px 20px 80px;
}

.contact-card {
    min-height: 740px;
    padding: 60px 30px 40px;
    color: var(--ink);
    background: var(--white);
}

.contact-card h1 {
    margin: 0 0 80px;
    color: var(--night);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: .88fr .98fr 1.2fr;
    gap: 20px;
}

.contact-form label:not(.consent-label) {
    display: grid;
    gap: 10px;
    font-size: 18px;
    line-height: 27px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 20px;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    height: 50px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--night);
    box-shadow: 0 0 0 2px rgba(12, 19, 31, .14);
    outline: 0;
}

.consent-label {
    display: grid;
    grid-template-columns: 13px 1fr;
    gap: 8px;
    margin-top: 7px;
    min-height: 129.375px;
    font-size: 18px;
    line-height: 1.5;
}

.consent-label input {
    width: 13px;
    height: 13px;
    margin: 6px 0 0;
}

.consent-label a,
.legal-wrap a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.submit-button,
.cookie-page-actions button,
.cookie-actions button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 5px;
    color: var(--white);
    background: var(--night);
    cursor: pointer;
    transition: opacity 150ms ease, transform 150ms ease;
}

.submit-button {
    justify-self: center;
    min-width: 144px;
    margin-top: 10px;
}

.submit-button:hover,
.cookie-page-actions button:hover,
.cookie-actions button:hover,
.outline-button:hover {
    opacity: .88;
}

.submit-button:active,
.cookie-page-actions button:active,
.cookie-actions button:active,
.outline-button:active {
    transform: translateY(1px);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin: -35px 0 30px;
    padding: 12px 15px;
    border-radius: 4px;
}

.form-notice p {
    margin: 0;
}

.form-notice.success {
    color: #124c36;
    background: #dff4eb;
}

.form-notice.error {
    color: #7b1f1f;
    background: #fde5e5;
}

.legal-section {
    min-height: 795px;
    color: var(--ink);
    background: var(--white);
}

.legal-wrap {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    padding: 160px 20px 60px;
}

.legal-wrap.wide {
    padding-bottom: 100px;
}

.legal-wrap h1,
.legal-wrap h2,
.legal-wrap h3 {
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.legal-wrap h1 {
    margin: 4px 0 24px;
    font-size: 18px;
}

.page-imprint .legal-wrap h1,
.page-privacy .legal-wrap h1 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.legal-wrap h2 {
    margin: 42px 0 16px;
    font-size: 18px;
}

.legal-wrap h3 {
    margin: 34px 0 16px;
    font-size: 17px;
}

.legal-wrap p,
.legal-wrap ul {
    margin: 4px 0 24px;
    line-height: 1.6;
}

.image-credit {
    margin-top: 110px !important;
    font-size: 14px;
}

.cookie-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 18px;
}

.cookie-current {
    min-height: 26px;
    color: var(--muted);
}

.cookie-page details {
    border-top: 1px solid #ddd;
}

.cookie-page details:last-child {
    border-bottom: 1px solid #ddd;
}

.cookie-page summary {
    padding: 22px 0;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.cookie-page details > div {
    padding: 0 0 22px 25px;
}

.cookie-page details h2 {
    margin-top: 0;
}

.not-found-section {
    display: grid;
    min-height: 720px;
    place-items: center;
    padding: 140px 20px 60px;
    text-align: center;
}

.not-found-section h1 {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 72px;
}

.outline-button {
    margin-top: 16px;
    border: 1px solid var(--white);
}

.footer-shell {
    padding: 60px 0;
    color: var(--ink);
    background: var(--white);
}

.site-footer {
    display: flex;
    align-items: center;
    width: min(860px, calc(100% - 40px));
    min-height: 74px;
    margin: 0 auto;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.site-footer a {
    color: #67686b;
    font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--night);
}

.cookie-layer {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .62);
}

.cookie-layer[hidden] {
    display: none;
}

.cookie-dialog {
    position: relative;
    width: min(660px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 34px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
}

.cookie-dialog h2 {
    margin: 0 40px 18px 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.3;
}

.cookie-dialog p {
    margin: 0 0 18px;
    line-height: 1.5;
}

.cookie-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.cookie-more {
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-details {
    margin-top: 18px;
    padding: 16px;
    background: #f4f5f5;
}

.cookie-details label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.cookie-details p:last-child {
    margin-bottom: 0;
}

.cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.cookie-actions .secondary {
    grid-column: 1 / -1;
    color: var(--night);
    background: #e5e7e8;
}

@media (max-width: 800px) {
    .desktop-languages {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .menu-toggle {
        position: relative;
        z-index: 2001;
        display: block;
        justify-self: start;
        width: 20px;
        height: 24px;
        margin-left: 40px;
        padding: 0;
        border: 0;
        color: inherit;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        position: absolute;
        left: 0;
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        transition: transform 220ms ease, opacity 160ms ease, top 220ms ease;
    }

    .menu-toggle span:nth-child(1) { top: 4px; }
    .menu-toggle span:nth-child(2),
    .menu-toggle span:nth-child(3) { top: 11px; }
    .menu-toggle span:nth-child(4) { top: 18px; }

    .menu-toggle[aria-expanded="true"] span:nth-child(1),
    .menu-toggle[aria-expanded="true"] span:nth-child(4) {
        top: 11px;
        opacity: 0;
    }

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

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

    .mobile-navigation {
        position: fixed;
        inset: 100px 0 0;
        z-index: 1000;
        display: block;
        overflow: auto;
        color: var(--white);
        background: var(--night);
    }

    .mobile-navigation[hidden] {
        display: none;
    }

    .mobile-navigation-inner {
        padding: 18px 20px 40px;
    }

    .mobile-language > button,
    .mobile-submenu a {
        display: flex;
        align-items: center;
        min-height: 60px;
        padding: 10px 20px;
        border: 0;
        color: var(--white);
        background: transparent;
        line-height: 40px;
    }

    .mobile-language > button {
        gap: 12px;
        width: 100%;
        cursor: pointer;
    }

    .mobile-submenu {
        display: grid;
        max-height: 0;
        overflow: hidden;
        transition: max-height 220ms ease;
    }

    .mobile-language.is-open .mobile-submenu {
        max-height: 260px;
    }

    .mobile-submenu a {
        padding-left: 40px;
    }

    .hero-copy {
        width: calc(100% - 60px);
        padding-top: 70px;
        transform: translateY(5px);
    }

    .hero-copy h1 {
        font-size: 40px;
        line-height: 1.3;
    }

    .hero-image {
        object-position: 48% center;
    }

    .content-wrap {
        padding-top: 140px;
    }

    .legal-wrap {
        padding-top: 160px;
    }

    .content-copy h1 {
        font-size: 18px;
    }

    .contact-section {
        min-height: 0;
    }

    .contact-wrap {
        padding: 140px 20px 60px;
    }

    .contact-card {
        min-height: 0;
        padding: 30px 20px 36px;
    }

    .contact-card h1 {
        margin-bottom: 45px;
        font-size: 24px;
    }

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

    .consent-label {
        min-height: 0;
        font-size: 16px;
        line-height: 1.5;
    }

    .image-credit {
        margin-top: 70px !important;
    }

    .site-footer {
        min-height: 142px;
    }

    .site-footer nav {
        display: grid;
        gap: 10px;
    }

    .cookie-dialog {
        padding: 28px 22px 22px;
    }

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

    .cookie-actions .secondary {
        grid-column: auto;
    }
}

@media (min-width: 801px) {
    html:has(body.page-home) {
        scrollbar-width: none;
    }

    html:has(body.page-home)::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
}

@media (max-width: 420px) {
    .menu-toggle {
        margin-left: 40px;
    }

    .hero-copy {
        width: calc(100% - 60px);
    }

    .content-wrap,
    .legal-wrap,
    .contact-wrap {
        padding-right: 20px;
        padding-left: 20px;
    }

    .cookie-layer {
        align-items: end;
        padding: 0;
    }

    .cookie-dialog {
        width: 100%;
        max-height: 88vh;
    }
}

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