:root {
    color-scheme: dark;
    --canvas: #090b0e;
    --canvas-raised: #0e1115;
    --graphite: #171a1f;
    --gunmetal: #2b3037;
    --steel: #aeb5be;
    --steel-muted: #7f8791;
    --paper: #f4f6f8;
    --line: rgba(174, 181, 190, 0.22);
    --line-strong: rgba(174, 181, 190, 0.42);
    --focus: #d9e0e6;
    --max-width: 80rem;
    --header-height: 5rem;
    --font-sans: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 20rem;
    background: var(--canvas);
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

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

h1,
h2,
h3 {
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    max-width: 15ch;
    margin-bottom: 1.4rem;
    font-size: clamp(2.65rem, 4.55vw, 4.7rem);
    overflow-wrap: break-word;
}

h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 4.2vw, 4.2rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    background: var(--paper);
    color: var(--canvas);
    transform: translateY(-150%);
}

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

:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 5px;
}

.site-header {
    position: relative;
    z-index: 20;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(9, 11, 14, 0.94);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-height);
    align-items: center;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    color: var(--paper);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    text-decoration: none;
}

.brand__ai {
    color: var(--steel);
}

.primary-nav {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 2.4rem);
}

.primary-nav a,
.site-header__tools a,
.site-footer a {
    color: var(--steel);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.primary-nav a {
    position: relative;
    padding-block: 1.8rem;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1.25rem;
    left: 0;
    height: 1px;
    background: var(--paper);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.site-header__tools a:hover,
.site-footer a:hover {
    color: var(--paper);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-header__tools {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.language-link {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid var(--line-strong);
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 28% 25%, rgba(67, 73, 82, 0.28), transparent 34%),
        linear-gradient(120deg, #0e1115 0%, #090b0e 62%);
}

.hero::after {
    position: absolute;
    right: -16vw;
    bottom: -30vw;
    width: 64vw;
    height: 64vw;
    border: 1px solid rgba(174, 181, 190, 0.15);
    background: linear-gradient(145deg, rgba(53, 58, 66, 0.2), transparent 60%);
    content: "";
    transform: rotate(31deg);
}

.hero__planes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__planes::before,
.hero__planes::after {
    position: absolute;
    content: "";
    transform: skewX(-28deg);
}

.hero__planes::before {
    top: -17rem;
    right: 5%;
    width: 34rem;
    height: 30rem;
    border: 1px solid rgba(174, 181, 190, 0.18);
    background: linear-gradient(145deg, rgba(69, 75, 84, 0.24), rgba(12, 14, 18, 0.05));
}

.hero__planes::after {
    right: 28%;
    bottom: -25rem;
    width: 24rem;
    height: 45rem;
    border-left: 1px solid rgba(174, 181, 190, 0.2);
    background: linear-gradient(90deg, rgba(43, 48, 55, 0.18), transparent);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(22rem, 0.88fr) minmax(32rem, 1.12fr);
    min-height: calc(100svh - var(--header-height));
    align-items: stretch;
}

.hero__portrait-wrap {
    position: relative;
    align-self: end;
    height: min(82vh, 58rem);
    min-height: 37rem;
}

.hero__portrait-wrap::after {
    position: absolute;
    right: -10%;
    bottom: 0;
    left: 0;
    height: 25%;
    background: linear-gradient(0deg, var(--canvas) 0%, transparent 100%);
    content: "";
    pointer-events: none;
}

.hero__portrait {
    position: absolute;
    right: -5rem;
    bottom: -1.5rem;
    width: auto;
    height: 116%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(1.5rem 1rem 2.2rem rgba(0, 0, 0, 0.35));
}

.hero__copy {
    align-self: center;
    max-width: 48rem;
    padding: 2.75rem 0 2.75rem clamp(2rem, 3.2vw, 4rem);
}

.eyebrow {
    margin-bottom: 1.25rem;
    color: var(--steel);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 42rem;
    margin-bottom: 1.7rem;
    color: var(--steel);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.3rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.2rem;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.035em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button--primary {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--canvas);
}

.button--primary:hover {
    border-color: var(--steel);
    background: var(--steel);
}

.button--quiet:hover {
    border-color: var(--paper);
    background: rgba(244, 246, 248, 0.06);
}

.section {
    padding-block: clamp(5rem, 9vw, 9rem);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 49rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading > p:last-child {
    max-width: 42rem;
    color: var(--steel);
    font-size: 1.08rem;
}

.section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: 1fr minmax(20rem, 0.65fr);
    align-items: end;
    gap: 3rem;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading--split > p {
    margin-bottom: 0;
}

.section-heading--compact {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading--compact .eyebrow {
    margin-bottom: 0.75rem;
}

.section-heading--compact h2 {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-heading__link {
    margin-top: 1.4rem;
}

.section--video {
    background: var(--canvas-raised);
}

.video-feature {
    display: grid;
    min-height: 31rem;
    overflow: hidden;
    border: 1px solid var(--line);
    grid-template-columns: 1.35fr 0.65fr;
    background: var(--canvas);
}

.video-feature__visual {
    position: relative;
    display: block;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--canvas-raised);
    color: var(--paper);
    text-decoration: none;
}

.video-feature__image {
    width: 100%;
    height: 100%;
    min-height: 31rem;
    object-fit: cover;
}

.video-feature__play {
    position: absolute;
    z-index: 2;
    right: clamp(2rem, 4vw, 4rem);
    bottom: clamp(2rem, 4vw, 4rem);
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: rgba(9, 11, 14, 0.7);
    font-size: 0.95rem;
    transition: background-color 180ms ease, color 180ms ease;
}

.video-feature__visual:hover .video-feature__play {
    background: var(--paper);
    color: var(--canvas);
}

.video-feature__copy {
    align-self: center;
    padding: clamp(2rem, 4vw, 4rem);
}

.video-feature__copy > p {
    color: var(--steel);
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: var(--steel-muted) !important;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-bottom: 1px solid var(--line-strong);
    color: var(--paper);
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: none;
}

.text-link:hover {
    border-color: var(--paper);
}

.section--blog {
    background:
        linear-gradient(110deg, rgba(39, 44, 50, 0.16), transparent 35%),
        var(--canvas);
}

.post-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
}

.post-card {
    display: flex;
    min-height: 34rem;
    overflow: hidden;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
    transition: background-color 180ms ease;
}

.post-card:hover {
    background: rgba(255, 255, 255, 0.035);
}

.post-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--line);
    background: var(--canvas-raised);
}

.post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(2rem, 4vw, 3.5rem);
}

.post-card h3 {
    max-width: 20ch;
    margin: 2rem 0 1rem;
}

.post-card h3 a {
    text-decoration: none;
}

.post-card__copy > p:not(.content-meta) {
    max-width: 34rem;
    color: var(--steel);
}

.post-card__copy .text-link {
    align-self: flex-start;
    margin-top: auto;
}

.section--newsletter {
    overflow: hidden;
    background: var(--graphite);
}

.newsletter-panel {
    position: relative;
    display: grid;
    padding: clamp(2.5rem, 6vw, 5rem);
    border: 1px solid var(--line-strong);
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 8vw, 8rem);
}

.newsletter-panel::after {
    position: absolute;
    top: -12rem;
    right: -8rem;
    width: 28rem;
    height: 18rem;
    border: 1px solid var(--line);
    content: "";
    transform: rotate(-32deg);
}

.newsletter-panel h2 {
    max-width: 8ch;
    margin-bottom: 0;
}

.newsletter-panel__copy {
    position: relative;
    z-index: 1;
    align-self: end;
}

.newsletter-panel__copy > p {
    max-width: 35rem;
    color: var(--steel);
    font-size: 1.08rem;
}

.newsletter-panel__copy .button {
    margin-top: 0.75rem;
}

.newsletter-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 10vw, 9rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(138deg, rgba(61, 67, 76, 0.3), transparent 48%),
        var(--canvas-raised);
}

.newsletter-hero::after {
    position: absolute;
    top: -14rem;
    right: -7rem;
    width: 36rem;
    height: 24rem;
    border: 1px solid var(--line);
    content: "";
    transform: rotate(-28deg);
}

.newsletter-hero .shell {
    position: relative;
    z-index: 1;
}

.newsletter-hero h1 {
    max-width: 13ch;
}

.newsletter-hero > .shell > p:last-child {
    max-width: 44rem;
    margin-bottom: 0;
    color: var(--steel);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.newsletter-choices {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
}

.newsletter-choice {
    min-height: 23rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.newsletter-choice h3 {
    max-width: 18ch;
    margin: 3rem 0 1.25rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.newsletter-choice > p:last-child {
    max-width: 32rem;
    margin-bottom: 0;
    color: var(--steel);
    font-size: 1.05rem;
}

.section--cta {
    background:
        linear-gradient(112deg, rgba(69, 84, 102, 0.2), transparent 55%),
        #101720;
}

.content-cta {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
    gap: clamp(3rem, 9vw, 10rem);
}

.content-cta h2 {
    max-width: 11ch;
    margin-bottom: 0;
}

.content-cta__actions {
    justify-content: flex-start;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(3rem, 9vw, 10rem);
}

.about-grid__lead {
    max-width: 40rem;
    color: var(--steel);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 10vw, 9rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(138deg, rgba(61, 67, 76, 0.3), transparent 48%),
        var(--canvas-raised);
}

.legal-hero::after {
    position: absolute;
    top: -15rem;
    right: -8rem;
    width: 34rem;
    height: 24rem;
    border: 1px solid var(--line);
    content: "";
    transform: rotate(-28deg);
}

.legal-hero .shell {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    margin-bottom: 1.5rem;
}

.legal-hero > .shell > p:last-child {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--steel);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    padding-block: 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(138deg, rgba(61, 67, 76, 0.3), transparent 48%),
        var(--canvas-raised);
}

.subpage-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: clamp(23rem, 34vw, 29rem);
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
    align-items: stretch;
    gap: clamp(2rem, 7vw, 7rem);
}

.subpage-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.subpage-hero__copy > p:last-child {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--steel);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.subpage-hero__portrait-wrap {
    position: relative;
    align-self: stretch;
    min-height: 23rem;
}

.subpage-hero__portrait-wrap::before {
    position: absolute;
    inset: 12% -18% -18% 5%;
    border: 1px solid var(--line);
    background: linear-gradient(142deg, rgba(75, 84, 96, 0.2), transparent 52%);
    content: "";
    transform: skewX(-8deg);
}

.subpage-hero__portrait {
    position: absolute;
    z-index: 1;
    right: -1rem;
    bottom: 0;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(-0.85rem 1rem 1.6rem rgba(0, 0, 0, 0.3));
}

.content-index {
    background: var(--canvas);
}

.video-index {
    display: grid;
    gap: 2rem;
}

.page-cta__body {
    max-width: 39rem;
    color: var(--steel);
    font-size: 1.08rem;
}

.about-page__intro {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(3rem, 9vw, 10rem);
}

.about-page__intro h2 {
    max-width: 15ch;
}

.about-page__intro > div > p {
    max-width: 46rem;
    color: var(--steel);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.editorial-values {
    margin-top: clamp(3rem, 7vw, 6rem);
    border-top: 1px solid var(--line);
}

.editorial-values article {
    display: grid;
    padding-block: clamp(2rem, 4vw, 3.5rem);
    border-bottom: 1px solid var(--line);
    grid-template-columns: minmax(4rem, 0.25fr) minmax(0, 1fr);
    gap: 2rem;
}

.editorial-values h3 {
    margin-bottom: 0.75rem;
}

.editorial-values article > div > p {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--steel);
}

.legal-layout {
    display: grid;
    padding-block: clamp(4rem, 8vw, 8rem);
    grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr);
    gap: clamp(3rem, 9vw, 10rem);
}

.legal-nav {
    position: sticky;
    top: 2rem;
    align-self: start;
    padding-top: 1rem;
    border-top: 1px solid var(--line-strong);
}

.legal-nav p {
    color: var(--steel-muted);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-nav li + li {
    margin-top: 0.65rem;
}

.legal-nav a {
    color: var(--steel);
    font-size: 0.9rem;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--paper);
}

.legal-prose {
    max-width: 49rem;
}

.legal-prose section {
    scroll-margin-top: 2rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--line);
}

.legal-prose section + section {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.legal-prose h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-prose p,
.legal-prose li,
.legal-prose address {
    color: var(--steel);
}

.legal-prose address {
    margin-block: 1.5rem;
    font-style: normal;
}

.legal-prose a {
    color: var(--paper);
    text-underline-offset: 0.25em;
}

.legal-prose .section-number {
    margin-bottom: 1rem;
    color: var(--steel-muted);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
}

.legal-updated {
    margin: 3rem 0 0;
    color: var(--steel-muted);
    font-size: 0.82rem;
}

.site-footer {
    padding-block: 3.5rem;
    background: #07090b;
}

.site-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.brand--footer {
    margin-bottom: 1rem;
}

.site-footer p {
    max-width: 30rem;
    margin-bottom: 0;
    color: var(--steel-muted);
    font-size: 0.82rem;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.8rem;
}

@media (max-width: 70rem) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 1.2rem;
    }

    .sibling-link {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 0.78fr 1.22fr;
    }

    .hero__portrait {
        right: -7rem;
    }

}

@media (max-width: 52rem) {
    :root {
        --header-height: auto;
    }

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

    .site-header__inner {
        grid-template-columns: 1fr auto;
        padding-block: 1rem;
    }

    .primary-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-top: 0.4rem;
    }

    .primary-nav a {
        padding-block: 0.4rem;
        white-space: nowrap;
    }

    .primary-nav a::after {
        bottom: 0;
    }

    .site-header__tools {
        grid-column: 2;
        grid-row: 1;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        display: flex;
        min-height: auto;
        flex-direction: column-reverse;
    }

    .hero__copy {
        padding: 4.5rem 0 2rem;
    }

    .hero__portrait-wrap {
        width: 100%;
        height: 34rem;
        min-height: 0;
    }

    .hero__portrait {
        right: 50%;
        height: 38rem;
        transform: translateX(50%);
    }

    .section-heading--split,
    .video-feature,
    .newsletter-panel,
    .content-cta,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .video-feature {
        min-height: 0;
    }

    .video-feature__visual {
        aspect-ratio: 16 / 9;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .video-feature__image {
        min-height: 0;
    }

    .newsletter-panel,
    .content-cta,
    .about-grid {
        gap: 2.5rem;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-choices {
        grid-template-columns: 1fr;
    }

    .post-card {
        min-height: 0;
    }

    .subpage-hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .subpage-hero__copy {
        padding: 4.5rem 0 1.5rem;
    }

    .subpage-hero__portrait-wrap {
        justify-self: end;
        width: min(100%, 24rem);
        min-height: 18rem;
    }

    .subpage-hero__portrait-wrap::before {
        inset: 10% 0 -25% 12%;
    }

    .subpage-hero__portrait {
        right: -0.75rem;
        bottom: 0;
        height: 100%;
    }

    .about-page__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .legal-nav {
        position: static;
    }

    .site-footer__inner {
        display: block;
    }

    .site-footer nav {
        justify-content: flex-start;
        margin-top: 2rem;
    }
}

@media (max-width: 35rem) {
    h1 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    html[lang="de"] h1 {
        font-size: clamp(2rem, 8.4vw, 2.8rem);
        hyphens: auto;
    }

    .brand {
        font-size: 0.88rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__portrait-wrap {
        height: 29rem;
    }

    .hero__portrait {
        height: 32rem;
    }

    .subpage-hero__portrait-wrap {
        min-height: 16rem;
    }

    .subpage-hero__portrait {
        height: 100%;
    }

    .editorial-values article {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
