@font-face {
    font-family: 'BeoSupreme';
    src: url('../fonts/BeoSupreme-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BeoSupreme';
    src: url('../fonts/BeoSupreme-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BeoSupreme';
    src: url('../fonts/BeoSupreme-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GTStandard';
    src: url('../fonts/GTStandard-MRegular.woff2') format('woff2');
    font-weight: 300 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --img-hero: url('../bilder/FOUR_3.png');

    --black: #191817; /* BeoBlack */
    --paper: #fcfaee; /* BeoWhite */
    --white: #ffffff; /* White */
    --grey-1: #d7d2cb; /* BeoGrey 1  -- 11.8:1 on BeoBlack */
    --grey-5: #aca69f; /* BeoGrey 5  --  7.4:1 on BeoBlack */
    --grey-8: #8b847e; /* BeoGrey 8  --  4.8:1 on BeoBlack */
    --grey-10: #766e68; /* BeoGrey 10 --  4.8:1 on BeoWhite, AA-large only on BeoBlack */
    --line: rgba(255, 255, 255, .14);

    --error: #e0574f;
    --ease: cubic-bezier(.2, .7, .2, 1);
    --gutter: 16px; /* one horizontal inset for the whole page; steps up at 48rem */

    --hero-scrim: linear-gradient(180deg,
    rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .56) 16%, rgba(0, 0, 0, .18) 34%,
    rgba(0, 0, 0, .22) 52%, rgba(0, 0, 0, .56) 68%, rgba(0, 0, 0, .78) 100%);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--black);
    overflow-x: clip
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'BeoSupreme', 'GTStandard', Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em; /* p.18: lower/title case is capped at 1% */
    line-height: 1.5;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

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

button, input {
    font: inherit
}

::selection {
    background: var(--paper);
    color: var(--black)
}

.display {
    font-weight: 500
}

.statement h2,
.feature-copy h2,
.experience h2,
.invite h2,
.number b {
    font-size: clamp(1.75rem, 1.7vw + 1.48rem, 3rem);
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 500
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-5)
}

.wrap {
    width: min(100% - var(--gutter) * 2, 1440px);
    margin-inline: auto
}

.progress {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    height: 2px;
    width: 0;
    background: var(--paper)
}

.topbar {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: 0;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(var(--gutter), 4vw, 72px);
    color: var(--paper)
}

.brand {
    display: flex;
    align-items: center
}

.brand-logo {
    display: block;
    height: 35px;
    width: auto
}

.menu-btn {
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 0
}

.menu-icon {
    width: 24px;
    height: 8px;
    position: relative
}

.menu-icon:before, .menu-icon:after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 1px;
    background: currentColor
}

.menu-icon:before {
    top: 0
}

.menu-icon:after {
    bottom: 0
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    align-content: end;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
   background: var(--hero-scrim), var(--img-hero) center/cover;
    transform: scale(1.04);
    animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
   padding: 120px max(var(--gutter), (100% - 1440px) / 2) 32px;
    display: grid;
    grid-template-columns:1fr;
    gap: 40px;
    align-items: end
}

.hero h1 {
    margin: 16px 0 24px;
    font-size: clamp(2rem, 4.2vw + 1rem, 4rem);
    line-height: 1.14;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--paper);
    max-width: 620px
}

.hero h1 span {
    display: block;
    overflow: hidden
}

.hero h1 i {
    display: block;
    font-style: normal;
    transform: translateY(115%);
    animation: reveal 1.2s var(--ease) forwards
}

.hero h1 span:nth-child(2) i {
    animation-delay: .12s
}

.hero h1 span:nth-child(3) i {
    animation-delay: .24s
}

@keyframes reveal {
    to {
        transform: none
    }
}

.hero-side {
    position: relative;
    z-index: 2;
    justify-self: start;
    width: min(360px, 100% - var(--gutter) * 2);
    margin-inline: max(var(--gutter), (100% - 1440px) / 2);
    padding-bottom: 75px;
    font-weight: bold;
}

.hero-side p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 30px
}

.hero-side .button {
    display: flex;
    width: 100%;
    justify-content: space-between
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    font-size: 0.75rem;
    letter-spacing: 0.01em; /* title case content -- p.18 caps this at 1% */
    color: var(--grey-1)
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, .2)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 52px;
    padding: 0 32px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: transparent;
    font-size: 0.875rem;
    letter-spacing: 0.01em; /* Title Case, so p.18 caps this at 1% */
    transition: .45s var(--ease);
    cursor: pointer;
    color: inherit
}

.button .icon {
    flex: none;
    width: 14px;
    height: 14px
}

.button:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white)
}

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

.statement {
    padding: 150px 0 110px;
    background: var(--black)
}

.statement-grid {
    display: grid;
    grid-template-columns:.55fr 1.45fr;
    gap: 48px
}

.statement h2 {
    margin: 0;
    max-width: 1100px
}

.statement .lead {
    font-size: 1.04rem;
    line-height: 1.5;
    color: var(--grey-5);
    max-width: 430px;
    margin: 48px 0 0 auto
}

.feature {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    min-height: 820px;
    background: var(--black);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.feature-media, .location-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--black)
}

.feature-media img, .location-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%
}

.feature-media img {
    object-fit: contain
}

.feature-copy {
    padding: 70px clamp(32px, 5vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.feature-copy h2 {
    margin: 22px 0 28px
}

.feature-copy p {
    color: var(--grey-5);
    line-height: 1.5;
    max-width: 440px
}

.feature-list {
    border-top: 1px solid var(--line)
}

.feature-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
    letter-spacing: 0.18em; /* p.18: all caps >= 18% */
    text-transform: uppercase;
    color: var(--grey-1)
}

.feature-list span:last-child {
    color: var(--grey-8)
}

.numbers {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    border-bottom: 1px solid var(--line)
}

.number {
    min-height: 250px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line)
}

.number:last-child {
    border-right: 0
}

.number small {
    color: var(--grey-8);
    font-size: 0.75rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.18em /* p.18: all caps >= 18% */
}

.location {
    grid-template-columns: 1.25fr .75fr;
    min-height: 720px;
    background: var(--black)
}

.location-media img {
    object-fit: cover
}

.location-facts span:first-child {
    color: var(--grey-8)
}

.location-facts span:last-child {
    color: var(--grey-1)
}

.experience {
    padding: 160px 0;
    background: var(--paper);
    color: var(--black)
}

.experience-head {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 74px
}

.experience h2 {
    margin: 0
}

.experience-intro {
    max-width: 450px;
    justify-self: end;
    line-height: 1.5;
    color: var(--grey-10)
}

.cards {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--black);
    color: var(--white)
}

.card-media {
    --media-h: 380px;
    display: grid;
    place-items: center;
    height: var(--media-h)
}

/* max-height is the --media-h *length*, not 100%: a percentage height on a
   child of a flex item does not resolve against that item's own height in
   Chrome, so the portrait sources overflowed the band and were clipped. */
.card-media img {
    display: block;
    max-width: 100%;
    max-height: var(--media-h);
    width: auto;
    height: auto
}

.card-content {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 30px 34px 38px
}

.card h3 {
    font-size: clamp(1.375rem, 1vw + 1.1rem, 1.75rem);
    line-height: 1.33;
    letter-spacing: 0;
    font-weight: 500;
    margin: 8px 0 10px
}

.card p {
    color: var(--grey-1);
    line-height: 1.5;
    max-width: 330px
}

@media (hover: hover) {
    .card[href]:hover h3 {
        text-decoration: underline;
        text-underline-offset: 4px
    }
}

.invite {
    background: var(--black);
    padding: clamp(72px, 8vw, 120px) 0
}

.invite-inner {
    width: min(680px, 100% - var(--gutter) * 2);
    margin-inline: auto;
    display: grid;
    grid-template-columns:minmax(0, 1fr);
    gap: 56px;
    justify-items: start
}

.invite-media {
    display: grid;
    place-items: center start;
    width: 100%
}

.invite-media img {
    display: block;
    max-width: 100%;
    max-height: 46svh;
    width: auto;
    height: auto
}

.invite-copy {
    width: min(100%, 520px)
}

.invite h2 {
    margin: 12px 0 20px
}

.invite-lead {
    margin: 0;
    line-height: 1.5;
    color: var(--grey-1)
}

.invite-sender {
    margin: 24px 0 0;
    color: var(--grey-5);
    font-size: 0.875rem;
    line-height: 1.5
}

.form {
    display: grid;
    grid-template-columns:1fr;
    gap: 28px 16px;
    margin-top: 36px
}

.form .field-full, .form .privacy, .form button {
    grid-column: 1/-1
}

.field {
    position: relative
}

.field input, .field select {
    min-width: 0;
    width: 100%;
    height: 58px;
    padding: 0 32px;
    background: transparent;
    border: 1px solid var(--grey-10);
    border-radius: 999px;
    color: var(--white);
    font: inherit;
    outline: none;
    transition: border-color .3s var(--ease)
}

@media (hover: hover) {
    .field input:hover, .field select:hover {
        border-color: var(--grey-5)
    }
}

.field input:focus, .field select:focus {
    border-color: var(--paper);
    outline: 2px solid var(--paper);
    outline-offset: 2px
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 26px center;
    background-size: 10px 6px
}

.field select option {
    background: var(--black);
    color: var(--white)
}

.field select option[disabled] {
    color: var(--grey-8)
}

.field label {
    position: absolute;
    left: 33px; /* 32px padding + 1px border */
    top: 50%;
    translate: 0 -50%;
    color: var(--grey-5); /* 7.4:1 on BeoBlack */
    line-height: 1;
    pointer-events: none;
    transition: .2s var(--ease)
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field input.is-invalid + label,
.field select:focus + label,
.field select:valid + label,
.field select.is-invalid + label {
    top: -10px;
    translate: 0 -100%;
    font-size: 0.625rem;
    letter-spacing: 0.18em; /* all caps up here -- p.18's floor */
    text-transform: uppercase
}

.privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--grey-5);
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer
}

.privacy input {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    border: 1px solid var(--grey-10);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: .2s var(--ease)
}

.privacy input:checked {
    border-color: var(--paper);
    background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.6l3.4 3.3L11 1.1' fill='none' stroke='%23191817' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px 9px no-repeat
}

.privacy input:focus-visible {
    outline: 2px solid var(--paper);
    outline-offset: 2px
}

.form button {
    justify-self: start;
    min-width: 220px;
    height: 58px;
    padding: 0 40px;
    border: 0;
    border-radius: 999px;
    background: var(--paper);
    color: var(--black);
    cursor: pointer;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: .3s var(--ease)
}

@media (hover: hover) {
    .form button:hover {
        background: var(--white)
    }
}

.form.is-sending button {
    opacity: .6;
    cursor: progress
}

.success {
    display: none;
    padding: 18px 24px;
    border: 1px solid var(--grey-10);
    border-left: 3px solid var(--paper);
    border-radius: 16px;
    margin-top: 28px;
    color: var(--paper);
    font-size: 0.9375rem;
    line-height: 1.5
}

.form-error {
    border-color: var(--grey-5);
    margin-bottom: 24px;
    font-weight: 500
}

.field input.is-invalid, .field select.is-invalid {
    border-width: 2px;
    border-color: var(--paper)
}

.field input.is-invalid + label,
.field select.is-invalid + label {
    color: var(--paper);
    font-weight: 500
}

.privacy.is-invalid {
    color: var(--paper)
}

.privacy.is-invalid input:not(:checked) {
    border-width: 2px;
    border-color: var(--paper)
}

.privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .3s var(--ease)
}

@media (hover: hover) {
    .privacy a[href]:hover {
        color: var(--white)
    }
}

@media (min-width: 30rem) {
    .form {
        grid-template-columns:minmax(8rem, 10rem) 1fr
    }
}

@media (min-width: 64rem) {
    .invite-inner {
        width: min(1440px, 100% - var(--gutter) * 2);
        grid-template-columns:minmax(0, 1fr) minmax(400px, 520px);
        gap: clamp(48px, 6vw, 96px);
        align-items: center;
        justify-items: stretch
    }

    .invite-media {
        place-items: center
    }

   .invite-media img {
        max-height: 680px
    }
}

footer {
    padding: 64px clamp(var(--gutter), 4vw, 72px) 40px;
    background: var(--black);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 40px;
    color: var(--grey-5);
    font-size: 0.75rem;
    line-height: 1.7;
    letter-spacing: 0.01em
}

.footer-top {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: start
}

.footer-logo {
    display: block;
    height: 28px;
    width: auto
}

.footer-store {
    margin: 22px 0 0;
    color: var(--grey-1)
}

.footer-store strong {
    display: block;
    font-weight: 500;
    color: var(--paper)
}

.footer-contact {
    display: grid;
    justify-self: end;
    text-align: right
}

.footer-contact a {
    padding-block: 7px
}

.footer-hours dt {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--grey-8)
}

.footer-hours dd {
    margin: 0 0 10px
}

.footer-bottom {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px;
    align-items: center;
    color: var(--grey-8)
}

.footer-legal {
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.18em
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease);
    display: inline-block;
    padding-block: 13px
}

@media (hover: hover) {
    footer a[href]:hover {
        color: var(--white)
    }
}

footer a[href]:focus-visible {
    color: var(--white);
    outline: 1px solid var(--white);
    outline-offset: 4px
}

.overlay {
    position: fixed;
    z-index: 80;
    inset: 0;
    background: var(--black);
    transform: translateY(-100%);
    transition: .75s var(--ease);
    display: grid;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain
}

.menu-open .overlay {
    transform: none
}

.overlay-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: end;
    padding-block: 96px 40px
}

.overlay nav a {
    display: block;
    font-size: clamp(2rem, 4.2vw + 1rem, 4rem);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--grey-8);
    transition: .3s
}

/* translateX on a full-width link inside a fixed overlay can push past the
   right edge if a tap leaves :hover stuck -- so hover-capable pointers only. */
@media (hover: hover) {
    .overlay nav a:hover {
        color: var(--white);
        transform: translateX(12px)
    }
}

.overlay-aside {
    border-left: 1px solid var(--line);
    padding-left: 50px;
    color: var(--grey-5);
    line-height: 1.5
}

.overlay-close {
    position: absolute;
    right: clamp(var(--gutter), 4vw, 72px);
    top: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    padding-block: 13px;
    min-height: 44px
}

.overlay-close .icon {
    flex: none;
    width: 14px;
    height: 14px
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (max-width: 63.9375rem) {
    .hero-content, .statement-grid, .experience-head, .overlay-inner {
        grid-template-columns:1fr
    }

    .hero-side {
        justify-self: start
    }

    .feature {
        grid-template-columns:1fr;
        min-height: 0
    }

    .feature-media {
        aspect-ratio: 1919/1440
    }

    .location {
        grid-template-columns:1fr;
        min-height: 0
    }

    .location-media {
        aspect-ratio: 16/9;
        min-height: 0
    }

    .numbers {
        grid-template-columns:1fr 1fr
    }

    .number:nth-child(2) {
        border-right: 0
    }

    .number:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .cards {
        grid-template-columns:1fr
    }

    .card-media {
        --media-h: 70svh;
        height: auto
    }

    .experience-intro {
        justify-self: start
    }

    .experience-head {
        gap: 32px;
        margin-bottom: 40px
    }

    .overlay-inner {
        gap: 40px
    }

    .overlay-aside {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 30px 0 0
    }
}

@media (max-width: 47.9375rem) {
    .topbar {
        height: 72px
    }

    /* Headline dropped on phones. Visually hidden rather than removed:
       this is the page's only h1, and display:none would take it out of
       the accessibility tree and the document outline too, leaving the
       mobile page -- the one Google indexes -- with no heading at all.
       Same clip as .sr-only. */
    .hero h1 {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
        border: 0
    }

    /* The h1 is this wrapper's only child and it is out of flow now, so
       the padding would otherwise hold 128px of empty space above the side
       block. Restore `padding-top: 96px; gap: 28px` if the headline
       comes back. */
    .hero-content {
        padding-block: 0
    }

    .hero-meta {
        flex-direction: column;
        gap: 7px
    }

    .statement {
        padding: 100px 0 80px
    }

    .statement-grid {
        gap: 28px
    }

    .feature-copy {
        padding: 64px var(--gutter)
    }

    .numbers {
        grid-template-columns:1fr
    }

    .number {
        min-height: 180px;
        padding: 32px var(--gutter);
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .number:last-child {
        border-bottom: 0
    }

    .experience {
        padding: 100px 0
    }

    .invite {
        padding-block: 100px
    }

    footer {
        gap: 32px
    }

    .footer-top, .footer-bottom {
        grid-template-columns:1fr
    }

    .footer-contact, .footer-legal {
        justify-self: start;
        text-align: left
    }

    .hero-media {
        background-position: 0 0, 32% center
    }
}

@media (max-height: 32rem) {
    .overlay nav a {
        font-size: 1.75rem;
        line-height: 2.25rem
    }

    .overlay-inner {
        padding-block: 72px 32px
    }
}

@media (min-width: 48rem) {
    :root {
        --gutter: 24px
    }
}

@media (min-width: 64rem) {
    .hero {
        height: 100svh;
        container-type: inline-size;

        --tile-left: .48; /* left mullion of the top-right panel */
        --tile-right: .70; /* its right edge */
        --tile-bottom: .55; /* seam where the copper photo ends */
        --mullion-left: .172; /* left edge of the first blue panel */

        --frame-w: max(107cqw, calc(100svh * 2048 / 1536));
        --frame-h: calc(var(--frame-w) * 1536 / 2048);
        --frame-x: calc((100cqw - var(--frame-w)) / 2);
        --frame-y: calc((100svh - var(--frame-h)) / 2);
    }

    .hero-content {
        width: 100cqw;
        max-width: none;
        margin-inline: 0;
        padding: 120px var(--gutter) 75px calc(var(--frame-x) + var(--mullion-left) * var(--frame-w));
    }

    .hero-side {
        position: absolute;
        left: calc(var(--frame-x) + var(--tile-left) * var(--frame-w));
        width: calc((var(--tile-right) - var(--tile-left)) * var(--frame-w));
        top: calc(var(--frame-y) + var(--tile-bottom) * var(--frame-h));
        translate: 0 -100%; /* bottom edge lands on the seam */
        margin-inline: 0;
        padding: 30px clamp(20px, 2cqw, 36px) 26px
    }

    .hero-side p {
        color: var(--paper)
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 24px
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    letter-spacing: 0.18em; /* menu item, all caps -- p.18 floor */
    text-transform: uppercase
}

/* Both labels sit at full BeoWhite rather than one being dimmed: no
   reduced-alpha step clears AA against every part of the hero's header
   region (BeoGrey 1 measures 3.5:1 at the worst pixel). Weight and an
   underline carry the state instead. */
.language-switch button {
    border: 0;
    background: transparent;
    color: var(--paper);
    font-weight: 300;
    padding: 8px 3px;
    cursor: pointer;
    transition: .3s var(--ease)
}

.language-switch button.active {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px
}

.language-switch button:hover {
    text-decoration: underline;
    text-underline-offset: 5px
}

.language-switch .divider {
    color: var(--grey-5)
}

@media (max-width: 47.9375rem) {
    .top-actions {
        gap: 14px
    }

    .menu-btn > span:first-child {
        display: none
    }

    .menu-btn {
        min-height: 44px;
        padding-inline: 10px;
        margin-inline: -10px
    }

    .language-switch {
        gap: 0
    }

    .language-switch button {
        min-width: 44px;
        min-height: 44px;
        display: grid;
        place-items: center;
        padding: 0
    }

    .language-switch .divider {
        margin-inline: -2px
    }
}

@media (max-width: 22.5rem) {
    .brand-logo {
        height: 17px
    }

    .top-actions {
        gap: 8px
    }
}
