.hero {
    position: relative;
    isolation: isolate;
    height: min(44rem, calc(100svh - var(--header-height) - 2rem - 1px));
    overflow: hidden;
    color: var(--paper);
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0 var(--page-pad);
    border-radius: 2rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .62) 31%, rgba(0, 0, 0, .04) 68%), linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 35%);
    content: '';
    pointer-events: none;
}

.hero__media {
    position: absolute;
    z-index: 0;
    inset: 0 var(--page-pad);
    overflow: hidden;
    border-radius: 2rem;
    background: #05070a;
}

.hero__poster,
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__poster { z-index: 1; transition: opacity .6s ease; pointer-events: none; }
.hero__poster.is-hidden { opacity: 0; }
.hero__video { pointer-events: none; }
.hero__video::-webkit-media-controls-start-playback-button { display: none; }

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(53rem, 60%);
    min-width: 0;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5.5vw, 6rem) 7rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero__eyebrow span { width: 1.75rem; height: 1px; background: currentColor; }

.hero h1 {
    margin: clamp(1.5rem, 3vw, 2.75rem) 0 1.7rem;
    font-size: clamp(3.8rem, 5.2vw, 6.25rem);
    font-weight: 300;
    letter-spacing: -.07em;
    line-height: .87;
    max-width: 100%;
    white-space: nowrap;
}

.hero h1 em { font-family: var(--font-serif); font-size: .93em; font-weight: 400; letter-spacing: -.055em; }
.hero__description { max-width: 30rem; margin: 0 0 2.25rem; color: rgba(255, 255, 255, .8); font-size: clamp(.94rem, 1.2vw, 1.05rem); line-height: 1.75; }
.hero__button { display: inline-flex; max-width: 100%; min-height: 3.4rem; align-items: center; justify-content: center; gap: 1.2rem; padding: .9rem 1.45rem; background: var(--paper); color: var(--black); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-align: center; text-transform: uppercase; transition: background 220ms ease, color 220ms ease, transform 220ms ease; }
.hero__button:hover { transform: translateY(-2px); background: var(--black); color: var(--paper); }
.hero__button span { font-size: 1rem; font-weight: 400; }

.hero__footer {
    position: absolute;
    z-index: 2;
    right: calc(var(--page-pad) + 3rem);
    bottom: 2rem;
    left: calc(var(--page-pad) + 3rem);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .58);
    font-size: .56rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero__video-toggle {
    position: absolute;
    z-index: 3;
    right: calc(var(--page-pad) + 3rem);
    bottom: 4.3rem;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: rgba(0, 0, 0, .3);
    color: var(--paper);
    cursor: pointer;
    font-size: .62rem;
}

.hero__video-toggle[hidden] { display: none; }
.hero__video-toggle:hover { border-color: #fff; background: rgba(0, 0, 0, .65); }
.hero__video-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.hero__video-sound-icon { display: none; width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.hero__video-toggle[data-mode="unmute"] .hero__video-play-icon,
.hero__video-toggle[data-mode="mute"] .hero__video-play-icon { display: none; }
.hero__video-toggle[data-mode="unmute"] .hero__video-sound-icon,
.hero__video-toggle[data-mode="mute"] .hero__video-sound-icon { display: block; }
.hero__video-toggle[data-mode="unmute"] .hero__video-sound-waves,
.hero__video-toggle[data-mode="mute"] .hero__video-muted-mark { display: none; }

.heritage {
    display: grid;
    grid-template-columns: minmax(20rem, .78fr) minmax(30rem, 1.22fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
    padding-top: clamp(4.5rem, 7vw, 7rem);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.heritage__copy { max-width: 31rem; }

.heritage__eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .85rem;
    color: #77736e;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.heritage__eyebrow span { width: 1.45rem; height: 1px; background: currentColor; }

.heritage__copy h2 {
    margin: 0 0 1.6rem;
    font-family: var(--font-serif);
    font-size: clamp(3.4rem, 4.5vw, 4.9rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .87;
}

.heritage__copy h2 em { font-weight: 400; }

.heritage__copy > p:not(.heritage__eyebrow) {
    max-width: 28rem;
    margin: 0 0 1.15rem;
    color: #575450;
    font-size: clamp(.82rem, 1vw, .92rem);
    line-height: 1.55;
}

.heritage__copy > a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(1.5rem, 3vw, 2.75rem);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease;
}

.heritage__copy > a:hover { transform: translateY(-1px); opacity: .58; }
.heritage__copy > a span { font-size: .95rem; }

.heritage__visual {
    position: relative;
    min-height: clamp(27rem, 35vw, 32rem);
    overflow: hidden;
    border-radius: 2rem;
    background: #0b0203 url('../images/banners/Heritage-section-image-banner.png') center / cover no-repeat;
}

.heritage__visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .25);
    content: '';
    pointer-events: none;
}

.heritage__tagline {
    position: absolute;
    z-index: 1;
    top: clamp(3rem, 5vw, 5rem);
    right: clamp(2rem, 4vw, 4rem);
    color: rgba(255, 255, 255, .72);
}

.heritage__tagline p {
    margin: 0;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.55;
    text-transform: uppercase;
}

.heritage__tagline span {
    display: block;
    width: 1.7rem;
    height: 1px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, .42);
}

.journey {
    padding-top: clamp(4.5rem, 7vw, 7rem);
    padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.journey__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(15rem, .8fr);
    align-items: end;
    gap: clamp(2rem, 8vw, 9rem);
}

.journey__eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .8rem;
    color: #77736e;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.journey__eyebrow span { width: 1.5rem; height: 1px; background: currentColor; }

.journey__heading h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.6vw, 5rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .95;
}

.journey__intro {
    max-width: 20rem;
    margin: 0 0 .45rem;
    color: #53504c;
    font-size: .8rem;
    line-height: 1.55;
}

.journey__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6.5rem);
    margin: clamp(2.5rem, 4vw, 4rem) 0 0;
    padding: 0;
    list-style: none;
}

.journey__timeline::before {
    position: absolute;
    top: .36rem;
    right: 0;
    left: 0;
    height: 1px;
    background: #c9c6c2;
    content: '';
}

.journey__milestone {
    position: relative;
    min-width: 0;
    padding-top: 2.4rem;
}

.journey__marker {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: .75rem;
    height: .75rem;
    border: .18rem solid #f7efed;
    border-radius: 50%;
    background: #921f2b;
    box-shadow: 0 0 0 1px rgba(146, 31, 43, .45);
}

.journey__milestone time {
    display: block;
    margin-bottom: .85rem;
    color: #8f2630;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    letter-spacing: -.03em;
    line-height: 1;
}

.journey__milestone h3 {
    margin: 0 0 .9rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.55;
    text-transform: uppercase;
}

.journey__milestone p {
    max-width: 13.5rem;
    margin: 0;
    color: #5c5955;
    font-size: .82rem;
    line-height: 1.55;
}

.story { margin-top: clamp(1rem, 2vw, 1.5rem); }

.story__card {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: clamp(27rem, 34vw, 31rem);
    align-items: stretch;
    overflow: hidden;
    padding: clamp(2.75rem, 4vw, 4.5rem);
    border-radius: 2rem;
    background: #080504 url('../images/banners/our-story-section-image-banner.png') center / cover no-repeat;
    color: #fff;
}

.story__card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .84) 34%, rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .08) 100%);
    content: '';
}

.story__card::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.story__content {
    display: flex;
    width: min(44%, 36rem);
    flex-direction: column;
}

.story__eyebrow {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 .8rem;
    color: rgba(255, 255, 255, .68);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.story__eyebrow span { width: 1.4rem; height: 1px; background: currentColor; }

.story__content h2 {
    margin: 0 0 .8rem;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.2vw, 4.35rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .84;
}

.story__description {
    max-width: 32rem;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.78rem, .95vw, .88rem);
    line-height: 1.52;
}

.story__milestones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
    padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.story__milestone {
    min-width: 0;
    padding-inline: clamp(1rem, 2vw, 2rem);
    border-left: 1px solid rgba(255, 255, 255, .24);
}

.story__milestone:first-child { padding-left: 0; border-left: 0; }

.story__milestone strong {
    display: block;
    margin-bottom: .35rem;
    color: #c57b64;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1;
}

.story__milestone p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    line-height: 1.55;
}

.about-sveston {
    display: grid;
    grid-template-columns: minmax(22rem, .86fr) minmax(30rem, 1.14fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 7rem);
    padding-top: clamp(4.5rem, 7vw, 7rem);
    padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.about-sveston__copy { max-width: 36rem; }

.about-sveston__eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .85rem;
    color: #77736e;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.about-sveston__eyebrow span { width: 1.45rem; height: 1px; background: currentColor; }

.about-sveston__copy h2 {
    margin: 0 0 1.65rem;
    font-family: var(--font-serif);
    font-size: clamp(3.75rem, 5vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .82;
}

.about-sveston__copy h2 em { font-weight: 400; }

.about-sveston__story {
    display: grid;
    gap: .85rem;
    max-width: 35rem;
}

.about-sveston__story p {
    margin: 0;
    color: #575450;
    font-size: clamp(.8rem, .92vw, .9rem);
    line-height: 1.58;
}

.about-sveston__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 35rem;
    margin: clamp(1.5rem, 2.5vw, 2.25rem) 0 0;
    padding: 1.15rem 0 0;
    border-top: 1px solid #d8d4cf;
}

.about-sveston__principles div {
    min-width: 0;
    padding-inline: clamp(.75rem, 1.5vw, 1.35rem);
    border-left: 1px solid #d8d4cf;
}

.about-sveston__principles div:first-child { padding-left: 0; border-left: 0; }

.about-sveston__principles dt {
    margin: 0 0 .35rem;
    color: #b64b2d;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    line-height: 1;
}

.about-sveston__principles dd {
    margin: 0;
    color: #77736e;
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-sveston__copy > a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease;
}

.about-sveston__copy > a:hover { transform: translateY(-1px); opacity: .58; }
.about-sveston__copy > a span { font-size: .95rem; }

.about-sveston__visual {
    position: relative;
    min-height: clamp(31rem, 37vw, 36rem);
    overflow: hidden;
    border-radius: 2rem;
    background: #050505 url('../images/banners/about-us-section-banner.png') 44% center / cover no-repeat;
}

.about-sveston__visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: inherit;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .24);
    content: '';
    pointer-events: none;
}

.about-sveston__tagline {
    position: absolute;
    z-index: 1;
    top: clamp(2rem, 4vw, 3.75rem);
    right: clamp(1.5rem, 3vw, 3rem);
    color: rgba(255, 255, 255, .8);
    text-shadow: 0 1px 1rem rgba(0, 0, 0, .8);
}

.about-sveston__tagline p {
    margin: 0;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.55;
    text-transform: uppercase;
}

.about-sveston__tagline span {
    display: block;
    width: 1.7rem;
    height: 1px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, .48);
}

.about-sveston__visual-note {
    position: absolute;
    z-index: 1;
    bottom: clamp(1.75rem, 3vw, 2.75rem);
    left: clamp(1.5rem, 3vw, 2.75rem);
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-sveston__visual-note span { width: 1rem; height: 1px; background: rgba(255, 255, 255, .4); }

.philosophy { margin-top: clamp(1rem, 2vw, 1.5rem); }

.philosophy__card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(19rem, 25vw, 22.5rem);
    grid-template-columns: minmax(20rem, .9fr) minmax(20rem, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4.5rem);
    border-radius: 2rem;
    background: #080303 url('../images/banners/sveston_Crown.jpeg') center / cover no-repeat;
    color: #fff;
}

.philosophy__card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .82) 29%, rgba(0, 0, 0, .18) 53%, rgba(0, 0, 0, .14) 75%, rgba(0, 0, 0, .7) 100%);
    content: '';
}

.philosophy__card::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.philosophy__copy,
.philosophy__aside { position: relative; z-index: 1; }

.philosophy__copy { max-width: 27rem; }

.philosophy__eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 .8rem;
    color: rgba(255, 255, 255, .68);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.philosophy__eyebrow span { width: 2rem; height: 1px; background: currentColor; }

.philosophy__copy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(3.25rem, 4.8vw, 4.85rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .82;
}

.philosophy__copy h2 em { font-weight: 400; }

.philosophy__description {
    max-width: 25rem;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.79rem, 1vw, .9rem);
    line-height: 1.55;
}

.philosophy__rule {
    display: block;
    width: 1.5rem;
    height: 1px;
    margin: 1.15rem 0 1rem;
    background: rgba(255, 255, 255, .45);
}

.philosophy__copy > a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, .82);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color 180ms ease, transform 180ms ease;
}

.philosophy__copy > a:hover { transform: translateY(-1px); color: #fff; }
.philosophy__copy > a span { font-size: .95rem; }

.philosophy__aside {
    justify-self: end;
    align-self: end;
    margin-bottom: .25rem;
    color: rgba(255, 255, 255, .74);
}

.philosophy__aside p {
    margin: 0;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.6;
    text-transform: uppercase;
}

.philosophy__aside span {
    display: block;
    width: 1.75rem;
    height: 1px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, .45);
}

.global-presence { padding-top: clamp(4.5rem, 8vw, 8rem); padding-bottom: clamp(4.5rem, 7vw, 7rem); }

.global-presence__inner {
    display: grid;
    grid-template-columns: minmax(16rem, .85fr) minmax(25rem, 1.65fr) minmax(12rem, .65fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
}

.global-presence__eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .8rem;
    color: #85827e;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.global-presence__eyebrow span { width: 1.35rem; height: 1px; background: currentColor; }

.global-presence__copy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(3.25rem, 4.3vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .82;
}

.global-presence__copy > p:not(.global-presence__eyebrow) {
    max-width: 23rem;
    margin: 0;
    color: #575552;
    font-size: .86rem;
    line-height: 1.55;
}

.global-presence__copy > a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.35rem;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: opacity 180ms ease;
}

.global-presence__copy > a:hover { opacity: .55; }
.global-presence__copy > a span { font-size: .95rem; }

.global-presence__map { min-width: 0; }

.global-presence__map img {
    display: block;
    width: 100%;
    height: auto;
}

.global-presence__stats { display: flex; flex-direction: column; align-items: flex-start; }

.global-presence__stat { display: flex; flex-direction: column; }

.global-presence__stat strong {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .9;
    text-transform: uppercase;
}

.global-presence__stat > span {
    margin-top: .4rem;
    color: #817e79;
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.6;
    text-transform: uppercase;
}

.global-presence__stat--community strong { font-size: clamp(1.75rem, 2.1vw, 2.4rem); line-height: .88; }

.global-presence__divider {
    width: 1.55rem;
    height: 1px;
    margin: 1.2rem 0;
    background: #aaa6a0;
}

.brand-films { padding-top: clamp(1rem, 2vw, 1.5rem); padding-bottom: clamp(4.5rem, 7vw, 7rem); }

.brand-films__heading {
    display: grid;
    grid-template-columns: minmax(22rem, 1fr) minmax(18rem, .7fr) auto;
    align-items: end;
    gap: clamp(2rem, 6vw, 7rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.brand-films__eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .65rem;
    color: #77736e;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.brand-films__eyebrow span { width: 1.5rem; height: 1px; background: currentColor; }

.brand-films__heading h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 5vw, 5.25rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .85;
}

.brand-films__intro {
    max-width: 25rem;
    margin: 0 .25rem .25rem 0;
    color: #55524e;
    font-size: .82rem;
    line-height: 1.55;
}

.brand-films__prompt {
    margin: 0 0 .15rem;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .14em;
    line-height: 1.55;
    text-transform: uppercase;
}

.brand-films__prompt span {
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    margin: 0 0 .2rem .45rem;
    background: #9b9894;
}

.brand-films__grid {
    display: grid;
    grid-template-columns: minmax(26rem, 1.12fr) minmax(22rem, .88fr);
    grid-template-rows: repeat(2, minmax(13.5rem, 1fr));
    gap: clamp(.75rem, 1.3vw, 1.25rem);
}

.brand-films__card {
    position: relative;
    isolation: isolate;
    min-height: 13.5rem;
    overflow: hidden;
    border-radius: 1.35rem;
    background: #071018;
    color: #fff;
}

.brand-films__card--feature { min-height: clamp(28rem, 38vw, 35rem); grid-row: 1 / 3; }

.brand-films__card video,
.brand-films__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.brand-films__card video {
    z-index: -2;
    object-fit: cover;
    transition: transform 700ms var(--ease), filter 300ms ease;
}

.brand-films__card:hover video { transform: scale(1.025); }
.brand-films__card.is-playing video { transform: none; }

.brand-films__shade {
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 7, 12, .22), rgba(2, 7, 12, .12) 42%, rgba(2, 7, 12, .78));
    pointer-events: none;
}

.brand-films__card::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.brand-films__number {
    position: absolute;
    top: clamp(1.25rem, 2vw, 2rem);
    left: clamp(1.25rem, 2vw, 2rem);
    color: rgba(255, 255, 255, .82);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.brand-films__copy {
    position: absolute;
    right: clamp(1.25rem, 2vw, 2rem);
    bottom: clamp(1.25rem, 2vw, 2rem);
    left: clamp(1.25rem, 2vw, 2rem);
}

.brand-films__copy h3 {
    margin: 0 0 .55rem;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.6vw, 3rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .95;
}

.brand-films__card:not(.brand-films__card--feature) .brand-films__copy h3 { font-size: clamp(1.55rem, 2.1vw, 2.3rem); }

.brand-films__copy p {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.brand-films__copy p span { width: 1.5rem; height: 1px; background: currentColor; }

.brand-films__toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(3.5rem, 5vw, 4.75rem);
    height: clamp(3.5rem, 5vw, 4.75rem);
    transform: translate(-50%, -50%);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    background: rgba(6, 13, 20, .48);
    box-shadow: 0 .75rem 2.5rem rgba(0, 0, 0, .25);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(.35rem);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.brand-films__toggle:hover { transform: translate(-50%, -50%) scale(1.06); background: rgba(6, 13, 20, .72); }
.brand-films__toggle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.brand-films__play {
    width: 0;
    height: 0;
    margin-left: .2rem;
    border-top: .55rem solid transparent;
    border-bottom: .55rem solid transparent;
    border-left: .85rem solid currentColor;
}

.brand-films__pause { display: none; width: .9rem; height: 1.1rem; justify-content: space-between; }
.brand-films__pause::before,
.brand-films__pause::after { width: .28rem; height: 100%; background: currentColor; content: ''; }
.brand-films__card.is-playing .brand-films__play { display: none; }
.brand-films__card.is-playing .brand-films__pause { display: flex; }

@media (hover: hover) and (pointer: fine) {
    .brand-films__card.is-playing .brand-films__toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(.92);
    }

    .brand-films__card.is-playing:hover .brand-films__toggle,
    .brand-films__card.is-playing .brand-films__toggle:focus-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%);
    }

    .brand-films__card.is-playing.is-controls-suppressed .brand-films__toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(.92);
    }
}

.brand-story { margin-top: clamp(1rem, 2vw, 1.5rem); }

.brand-story__card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(19rem, 23vw, 21.5rem);
    grid-template-columns: minmax(24rem, 1.2fr) minmax(16rem, .8fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4.5rem);
    border-radius: 2rem;
    background: #070808 url('../images/banners/sveston-westminster.png') center / cover no-repeat;
    color: #fff;
}

.brand-story__card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .27) 45%, rgba(0, 0, 0, .2) 62%, rgba(0, 0, 0, .78) 100%);
    content: '';
}

.brand-story__card::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.brand-story__copy,
.brand-story__store { position: relative; z-index: 1; }

.brand-story__eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 .75rem;
    color: rgba(255, 255, 255, .66);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.brand-story__eyebrow span { width: 1.35rem; height: 1px; background: currentColor; }

.brand-story__copy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 4.15vw, 4rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .92;
}

.brand-story__copy > p:not(.brand-story__eyebrow) {
    max-width: 31rem;
    margin: 0 0 .75rem;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.78rem, 1vw, .92rem);
    line-height: 1.5;
}

.brand-story__store { justify-self: end; text-align: center; }

.brand-story__store > p {
    margin: 0;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .15em;
    line-height: 1.55;
    text-transform: uppercase;
}

.brand-story__store > p span { color: rgba(255, 255, 255, .72); font-size: .74rem; }

.brand-story__rule {
    display: block;
    width: 1.75rem;
    height: 1px;
    margin: 1.1rem auto 1.35rem;
    background: rgba(255, 255, 255, .46);
}

.brand-story__store > a {
    display: inline-flex;
    min-width: 13.5rem;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: .9rem 1.2rem;
    background: #fff;
    color: #0a0a0a;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-align: left;
    text-transform: uppercase;
    transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.brand-story__store > a:hover { transform: translateY(-2px); background: #0a0a0a; color: #fff; }
.brand-story__store > a span { font-size: .9rem; }

.legacy-quote { margin-top: clamp(1rem, 2vw, 1.5rem); }

.legacy-quote__card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(14rem, 15vw, 16rem);
    grid-template-columns: minmax(8rem, 1fr) minmax(26rem, 2.4fr) minmax(8rem, 1fr);
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(2.25rem, 4vw, 4rem);
    border-radius: 2rem;
    background: #130709 url('../images/banners/sveston-video-poster.jpg') center 48% / cover no-repeat;
    color: #fff;
}

.legacy-quote__card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .22));
    content: '';
}

.legacy-quote__card::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    content: '';
    pointer-events: none;
}

.legacy-quote__since,
.legacy-quote__legacy p,
.legacy-quote__signature {
    margin: 0;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.65;
    text-transform: uppercase;
}

.legacy-quote__since { color: rgba(255, 255, 255, .62); }

.legacy-quote__statement {
    min-width: 0;
    text-align: center;
}

.legacy-quote__statement h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.7vw, 3.15rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.legacy-quote__signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    margin-top: 1.3rem;
    color: rgba(255, 255, 255, .54);
}

.legacy-quote__signature span {
    width: 1.55rem;
    height: 1px;
    background: rgba(255, 255, 255, .42);
}

.legacy-quote__legacy { justify-self: end; color: rgba(255, 255, 255, .62); }

.legacy-quote__legacy > span {
    display: block;
    width: 1.75rem;
    height: 1px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, .42);
}

@media (max-width: 72rem) {
    .hero__content { width: 70%; }
    .hero__poster, .hero__video { object-position: 58% center; }

    .heritage { grid-template-columns: minmax(18rem, .8fr) minmax(25rem, 1.2fr); gap: 3rem; }
    .heritage__copy h2 { font-size: clamp(3.1rem, 5.5vw, 4.25rem); }
    .heritage__visual { background-position: 46% center; }

    .journey__heading { grid-template-columns: minmax(0, 1.5fr) minmax(14rem, .7fr); gap: 3rem; }
    .journey__timeline { gap: 2.5rem; }

    .story__content { width: min(51%, 34rem); }
    .story__card { background-position: 56% center; }
    .story__content h2 { font-size: clamp(2.9rem, 5vw, 3.8rem); }

    .about-sveston { grid-template-columns: minmax(20rem, .9fr) minmax(25rem, 1.1fr); gap: 3rem; }
    .about-sveston__copy h2 { font-size: clamp(3.1rem, 5.5vw, 4.25rem); }
    .about-sveston__visual { background-position: 43% center; }

    .philosophy__card { grid-template-columns: minmax(20rem, 1fr) minmax(15rem, .75fr); background-position: 47% center; }
    .philosophy__copy h2 { font-size: clamp(3.1rem, 5.8vw, 4.25rem); }

    .global-presence__inner { grid-template-columns: minmax(16rem, .9fr) minmax(24rem, 1.5fr); }
    .global-presence__stats { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: flex-start; padding-top: 1rem; }
    .global-presence__divider { width: 1px; height: 3rem; margin: 0 2rem; }

    .brand-films__heading { grid-template-columns: minmax(22rem, 1fr) minmax(18rem, .8fr); gap: 2rem; }
    .brand-films__prompt { display: none; }

    .brand-story__card { grid-template-columns: minmax(22rem, 1.2fr) minmax(14rem, .8fr); gap: 2rem; }
    .brand-story__copy h2 { font-size: clamp(2.6rem, 5vw, 3.5rem); }
}

@media (min-width: 48.001rem) and (max-height: 44rem) {
    .hero__content { padding-top: 2rem; padding-bottom: 4rem; }
    .hero h1 { margin: 1rem 0; font-size: clamp(3.5rem, 5vw, 5rem); }
    .hero__description { margin-bottom: 1.25rem; }
}

@media (max-width: 48rem) {
    .hero { height: min(40rem, calc(100svh - var(--header-height) - 1.85rem - 1px)); }
    .hero::before, .hero__media { border-radius: 1.25rem; }
    .hero::before { background: linear-gradient(0deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .57) 43%, rgba(0, 0, 0, .06) 100%); }
    .hero__poster, .hero__video { object-position: 50% center; }
    .hero__content { width: 100%; justify-content: flex-end; padding: 4rem clamp(.85rem, 4vw, 1.25rem) 8.2rem; }
    .hero__eyebrow { flex-wrap: wrap; gap: .5rem; font-size: .58rem; letter-spacing: .1em; }
    .hero h1 { margin: 1.25rem 0; font-size: clamp(2.4rem, 11vw, 4.8rem); line-height: .9; white-space: normal; }
    .hero__description { max-width: 25rem; margin-bottom: 1.45rem; font-size: .9rem; line-height: 1.65; }
    .hero__button { gap: .65rem; padding-inline: 1rem; }
    .hero__video-toggle { right: calc(var(--page-pad) + 1.25rem); bottom: 4rem; }
    .hero__footer { right: calc(var(--page-pad) + 1.25rem); bottom: 1.35rem; left: calc(var(--page-pad) + 1.25rem); gap: 1rem; font-size: .5rem; }

    .heritage { grid-template-columns: 1fr; gap: 3rem; padding-top: 4rem; padding-bottom: 2rem; }
    .heritage__copy { max-width: 32rem; }
    .heritage__copy h2 { font-size: clamp(3.25rem, 14vw, 4.5rem); }
    .heritage__copy > p:not(.heritage__eyebrow) { max-width: 31rem; }
    .heritage__visual { min-height: 30rem; border-radius: 1.25rem; background-position: 45% center; }
    .heritage__tagline { top: 2rem; right: 1.5rem; }

    .journey { padding-top: 4rem; padding-bottom: 4rem; }
    .journey__heading { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
    .journey__heading h2 { max-width: 26rem; font-size: clamp(3.25rem, 14vw, 4.5rem); }
    .journey__intro { max-width: 26rem; margin: 0; }
    .journey__timeline { grid-template-columns: 1fr; gap: 0; margin-top: 3rem; padding-left: 2rem; }
    .journey__timeline::before { top: .35rem; right: auto; bottom: .35rem; left: .35rem; width: 1px; height: auto; }
    .journey__milestone { padding: 0 0 3.25rem; }
    .journey__milestone:last-child { padding-bottom: 0; }
    .journey__marker { top: 0; left: -2rem; }
    .journey__milestone time { font-size: 2.25rem; }
    .journey__milestone p { max-width: 25rem; }

    .story__card {
        min-height: 54rem;
        padding: 2.25rem 1.25rem;
        border-radius: 1.25rem;
        background-position: 63% center;
    }

    .story__card::before { background: linear-gradient(180deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .84) 47%, rgba(0, 0, 0, .32) 67%, rgba(0, 0, 0, .9) 100%); }
    .story__content { width: 100%; }
    .story__content h2 { font-size: clamp(3.1rem, 14vw, 4.4rem); }
    .story__description { max-width: 31rem; font-size: .8rem; }
    .story__milestones { grid-template-columns: 1fr; gap: 0; padding-top: 2rem; }
    .story__milestone,
    .story__milestone:first-child { padding: .85rem 0; border-top: 1px solid rgba(255, 255, 255, .22); border-left: 0; }
    .story__milestone:first-child { border-top: 0; }
    .story__milestone strong { font-size: 1.7rem; }

    .about-sveston { grid-template-columns: 1fr; gap: 3rem; padding-top: 4rem; padding-bottom: 4rem; }
    .about-sveston__copy { max-width: 32rem; }
    .about-sveston__copy h2 { font-size: clamp(3.25rem, 14vw, 4.5rem); }
    .about-sveston__story { max-width: 31rem; }
    .about-sveston__principles { max-width: 31rem; }
    .about-sveston__visual { min-height: 30rem; border-radius: 1.25rem; background-position: 42% center; }
    .about-sveston__tagline { top: 1.75rem; right: 1.25rem; }
    .about-sveston__visual-note { bottom: 1.5rem; left: 1.25rem; }

    .philosophy__card {
        min-height: 39rem;
        grid-template-columns: 1fr;
        align-content: space-between;
        gap: 4rem;
        padding: 2.25rem 1.25rem;
        border-radius: 1.25rem;
        background-position: 61% center;
    }

    .philosophy__card::before { background: linear-gradient(180deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .5) 36%, rgba(0, 0, 0, .12) 58%, rgba(0, 0, 0, .82) 100%); }
    .philosophy__copy { max-width: 25rem; }
    .philosophy__copy h2 { font-size: clamp(3.1rem, 14vw, 4.4rem); }
    .philosophy__description { font-size: .82rem; }
    .philosophy__aside { justify-self: end; text-align: right; }
    .philosophy__aside span { margin-left: auto; }

    .global-presence { padding-top: 4rem; padding-bottom: 4rem; }
    .global-presence__inner { grid-template-columns: 1fr; gap: 3rem; }
    .global-presence__copy h2 { font-size: clamp(3.5rem, 17vw, 5rem); }
    .global-presence__copy > p:not(.global-presence__eyebrow) { max-width: 31rem; }
    .global-presence__map { margin-inline: -.5rem; }
    .global-presence__stats { grid-column: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 0; }
    .global-presence__divider { display: none; }
    .global-presence__stat--community { grid-column: 1 / -1; }

    .brand-films { padding-top: 0; padding-bottom: 4rem; }
    .brand-films__heading { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
    .brand-films__heading h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
    .brand-films__intro { max-width: 31rem; }
    .brand-films__grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .brand-films__card,
    .brand-films__card--feature { min-height: clamp(18rem, 72vw, 25rem); grid-row: auto; border-radius: 1.25rem; }
    .brand-films__card video { object-position: center; }
    .brand-films__card:nth-child(2) video { object-position: center; }
    .brand-films__copy h3,
    .brand-films__card:not(.brand-films__card--feature) .brand-films__copy h3 { font-size: clamp(2rem, 9vw, 3rem); }

    .brand-story__card {
        min-height: 41rem;
        grid-template-columns: 1fr;
        align-content: space-between;
        gap: 3rem;
        padding: 2.25rem 1.25rem;
        border-radius: 1.25rem;
        background-position: 61% center;
    }

    .brand-story__card::before { background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .8)); }
    .brand-story__copy h2 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
    .brand-story__copy > p:not(.brand-story__eyebrow) { font-size: .82rem; }
    .brand-story__copy > p:not(.brand-story__eyebrow) br { display: none; }
    .brand-story__store { width: 100%; justify-self: stretch; }
    .brand-story__store > a { width: 100%; }

    .legacy-quote__card {
        min-height: 20rem;
        grid-template-columns: 1fr;
        padding: 5.25rem 1.25rem 3rem;
        border-radius: 1.25rem;
        background-position: center 45%;
    }

    .legacy-quote__since,
    .legacy-quote__legacy { position: absolute; top: 1.5rem; }
    .legacy-quote__since { left: 1.25rem; }
    .legacy-quote__legacy { right: 1.25rem; text-align: right; }
    .legacy-quote__legacy > span { margin-left: auto; }
    .legacy-quote__statement h2 { font-size: clamp(2rem, 8.5vw, 3rem); }
}

@media (max-width: 48rem) and (max-height: 43rem) {
    .hero__content { padding: 1.5rem 1rem 4.75rem; }
    .hero h1 { margin: .75rem 0; font-size: clamp(2.5rem, 11vw, 3.5rem); }
    .hero__description { margin-bottom: .75rem; font-size: .8rem; line-height: 1.45; }
    .hero__button { min-height: 2.8rem; padding: .6rem 1rem; font-size: .58rem; }
    .hero__video-toggle { bottom: .4rem; }
    .hero__footer { display: none; }
}

@media (max-width: 25rem) {
    .hero__button { width: 100%; }
    .hero__footer { font-size: .43rem; }
}

@media (max-width: 22rem) {
    .hero h1 { font-size: clamp(2.1rem, 10.4vw, 2.4rem); }
    .hero__button { gap: .4rem; padding-inline: .6rem; font-size: .55rem; letter-spacing: .04em; }
    .hero__eyebrow span { width: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__poster, .hero__button, .brand-films__card video, .brand-films__toggle { transition-duration: 0s; }
}
