@font-face{
    font-family: Montserrat;
    src: url('assets/montserrat-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: Montserrat;
    src: url('assets/montserrat-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #534232;
    --fg: #fff;
    --muted: #d8ccbe;
    --accent: #d8ccbe;
    --line: #d8ccbe40;
    --dark: #080808;
    --header-height: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: Montserrat,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
}

.skip {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 100;
    background: var(--accent);
    color: #111;
    padding: 12px;
}

.skip:focus {
    top: 12px;
}

header {
    height: var(--header-height);
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 20;
    background: #53423235;
    backdrop-filter: blur(14px);
    color: #d8ccbe;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    line-height: 0;
}

.logo img {
    width: 83px;
    height: 35px;
    object-fit: contain;
}

.store-link {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.store-link span {
    font-size: 20px;
}

.site-menu summary {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    cursor: pointer;
    list-style: none;
    min-height: 44px;
}

.site-menu summary::-webkit-details-marker {
    display: none;
}

.hamburger {
    width: 25px;
    height: 15px;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    position: relative;
}

.hamburger:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    border-top: 1px solid var(--accent);
}

.site-menu nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    background: #534232fa;
    padding: 45px 45px 55px;
    box-shadow: 0 15px 30px #0003;
    min-width: 350px;
    font-size: 14px;
}

.site-menu nav a:hover {
    color: white;
}

.site-menu[open] .hamburger {
    border: 0;
}

.site-menu[open] .hamburger:before,
.site-menu[open] .hamburger:after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    top: 7px;
    border-top: 1px solid var(--accent);
    transform: rotate(45deg);
}

.site-menu[open] .hamburger:after {
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 660px;
    height: 100svh;
    max-height: 1200px;
    overflow: hidden;
    background: var(--dark);
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.hero-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-copy {
    position: absolute;
    top: 46%;
    left: 15%;
    transform: translateY(-50%);
    max-width: 540px;
    padding: 0 24px 0 0;
}

.eyebrow {
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .5px;
    font-weight: 400;
    color: var(--muted);
    margin: 0 0 22px;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: #d8ccbe;
    font-size: 16px;
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(32px,3.2vw,48px);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #d8ccbe;
}

.lead {
    font-size: 15px;
    line-height: 1.65;
    margin: 16px 0 30px;
    text-transform: uppercase;
    color: #d8ccbe;
}

.hero-cta,
.cta,
.text-link {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    padding: 15px 25px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    transition: background .2s,color .2s;
}

.hero-cta:hover,
.cta:hover,
.text-link:hover {
    background: var(--accent);
    color: #414141;
}

.hero-bottom {
    position: absolute;
    bottom: 30px;
    left: 4%;
    right: 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
}

.hero-bottom a span {
    display: inline-block;
    margin-left: 20px;
    font-size: 20px;
}

.intro {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 25px;
    border-bottom: 1px solid var(--line);
}

.intro .eyebrow {
    grid-column: 1/-1;
}

h2 {
    font-size: clamp(26px,2.6vw,38px);
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: #d8ccbe;
}

.intro>p:not(.eyebrow) {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
    align-self: center;
    text-transform: uppercase;
}

.text-link {
    grid-column: 2;
    margin-top: 28px;
    justify-self: start;
}

.text-link span {
    display: none;
}

.details {
    display: grid;
    grid-template-columns: 60% 40%;
    position: relative;
    background: #534232;
}

.visual-stage {
    position: sticky;
    top: var(--header-height);
    height: calc(100svh - var(--header-height));
    min-height: 500px;
    overflow: hidden;
    align-self: start;
    background: var(--dark);
}

.image-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.zoom-watch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: 50% 50%;
    will-change: transform;
}

.image-frame:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -100px 70px -55px #080808,inset 0 95px 60px -40px #080808;
}

.target {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 8px #d8ccbe16;
}

/* Radar pulse: adjust duration and final scale below to tune the effect. */
.target::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    animation: bespoke-radar-pulse 1s ease-out infinite;
}

@keyframes bespoke-radar-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    80%,
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.target:after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 50%;
}

.stage-label {
    position: absolute;
    top: 30px;
    left: 7%;
    right: 7%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    z-index: 2;
}

.step-nav {
    position: absolute;
    bottom: 20px;
    left: 7%;
    right: 7%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    background: linear-gradient(transparent,#080808b0);
}

.step-nav a {
    font-size: 12px;
    color: #b3afa9;
    border-top: 1px solid #716b63;
    padding-top: 14px;
    flex: 1;
    text-transform: uppercase;
    transition: color .3s,border-color .3s;
}

.step-nav a.active {
    color: #fff;
    border-color: #d8ccbe;
}

.chapter {
    min-height: 100svh;
    padding: 100px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 0;
}

.chapter h3 {
    font-size: clamp(28px,2.5vw,38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 25px;
    text-transform: uppercase;
    color: #d8ccbe;
}

.chapter p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0 0 26px;
}

.options {
    padding: 0;
    list-style: none;
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    text-transform: uppercase;
}

.options li {
    padding: 8px 11px;
    border: 1px solid #d8ccbe60;
}

.variations {
    padding: 110px 0;
    background: #534232;
}

.variations > .section-heading {
    width: 86%;
    max-width: none;
    display: block;
}

.variations > .section-heading > p:last-child {
    max-width: none;
    margin-top: 25px;
}

.section-heading {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 13%;
    align-items: end;
}

.section-heading .eyebrow {
    grid-column: 1/-1;
}

.section-heading>p:last-child {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 420px;
    margin: 0;
}

/* Full-width, automatically playing Bespoke film. */
.bespoke-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 65px;
    overflow: hidden;
    background: #080808;
}

.bespoke-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 760px) {
    .bespoke-video {
        margin-top: 40px;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 65px;
}

.gallery figure {
    margin: 0;
}

.gallery figure>div {
    overflow: hidden;
    aspect-ratio: 1.05;
    background: #080808;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.22);
}

figcaption {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--accent);
}

.closing {
    position: relative;
    padding: 120px 53% 120px 12%;
    min-height: 620px;
    background: #534232;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.closing>img {
    position: absolute;
    right: 0;
    width: 44%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    top: 0;
    background-image: url('assets/atelier_1.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    border-top: 0px solid #da0000;
}

.closing p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin: 30px 0;
}

.closing .eyebrow {
    color: var(--muted);
}

footer {
    padding: 65px 12% 30px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 45px;
    background: #34291f;
    border-top: 1px solid var(--line);
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    font-size: 12px;
}

.footer-column h2 {
    color: var(--accent);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: 0;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    grid-column: 1/-1;
    border-top: 1px solid var(--line);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--accent);
}

@media (max-width:900px){
    .intro {
        padding: 90px 8%;
    }

    .hero-copy {
        left: 9%;
    }

    .step-nav {
        gap: 8px;
    }

    .step-nav a {
        font-size: 11px;
    }

    .chapter {
        padding: 80px 10%;
    }

    .closing {
        padding-left: 8%;
    }

    footer {
        padding-left: 8%;
        padding-right: 8%;
    }
}

@media (max-width:760px){
    :root {
        --header-height: 58px;
    }

    header {
        padding: 0 16px;
    }

    .logo img {
        width: 64px;
        height: 28px;
    }

    .store-link {
        font-size: 10px;
    }

    .site-menu summary {
        font-size: 11px;
        gap: 10px;
    }

    .hamburger {
        width: 21px;
    }

    .site-menu nav {
        width: 100vw;
        min-width: 0;
        padding: 35px 25px;
        font-size: 14px;
    }

    .hero {
        height: 100svh;
        min-height: 700px;
        max-height: 1000px;
    }

    .hero-copy {
        top: auto;
        bottom: 90px;
        left: 7%;
        right: 7%;
        transform: none;
        text-align: center;
        max-width: none;
        padding: 0;
    }

    .hero-copy .eyebrow {
        font-size: 13px;
        color: #d8ccbe;
    }

    .hero-image {
        inset: 0;
    }

    .hero-image video {
        transform: scale(1.05);
        object-fit: cover;
    }

    .hero-image:after {
        background: rgba(0, 0, 0, 0.5);
    }

    h1 {
        font-size: 30px;
        color: #d8ccbe;
    }

    .lead {
        font-size: 12px;
        margin: 13px 0 24px;
        color: #d8ccbe;
    }

    .hero-cta {
        padding: 13px 22px;
    }

    .hero-bottom {
        left: 7%;
        right: 7%;
        bottom: 24px;
        font-size: 10px;
        justify-content: center;
    }

    .hero-bottom>span {
        display: none;
    }

    .intro {
        padding: 70px 7%;
        display: block;
    }

    .intro .eyebrow {
        font-size: 11px;
    }

    .intro h2 {
        margin-bottom: 25px;
        color: #d8ccbe;
    }

    .intro>p:not(.eyebrow) {
        font-size: 16px;
    }

    .text-link {
        margin-top: 28px;
    }

    .details {
        display: block;
    }

    .visual-stage {
        height: 43svh;
        min-height: 260px;
        z-index: 3;
        border-bottom: 1px solid var(--line);
    }

    .zoom-watch {
        object-fit: contain;
        transform: scale(1.45);
    }

    .stage-label {
        top: 17px;
        font-size: 11px;
    }

    .step-nav {
        bottom: 8px;
        gap: 8px;
    }

    .step-nav a {
        font-size: 10px;
        padding-top: 9px;
        min-height: 32px;
    }

    .chapter {
        min-height: 66svh;
        padding: 38px 7% 60px;
        scroll-margin-top: 43svh;
        justify-content: flex-start;
    }

    .chapter h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #d8ccbe;
    }

    .chapter p:not(.eyebrow) {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .chapter .eyebrow {
        margin-bottom: 16px;
    }

    .options {
        font-size: 11px;
    }

    .variations {
        padding: 70px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading>p:last-child {
        margin-top: 25px;
    }

    .gallery {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 45px;
    }

    .gallery figure>div {
        aspect-ratio: 1.3;
    }

    .closing {
        padding: 70px 7%;
        min-height: 0;
        display: block;
        border-top: 2px solid #d8ccbe;
    }

    .closing>img {
        position: relative;
        display: block;
        margin: -70px -8.139535% 40px;
        width: 116.27907%;
        height: 420px;
    }

    .closing p:not(.eyebrow) {
        margin: 25px 0;
    }

    .closing h2 {
        font-size: 28px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 45px 7% 25px;
    }

    .footer-column {
        font-size: 11px;
        gap: 15px;
    }

    .footer-column h2 {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion:reduce){
    .target::before {
        animation: none;
    }

    .zoom-watch {
        will-change: auto;
    }

    .target {
        display: none;
    }
}

.mx-auto-bespoke {
    margin-left: auto;
    margin-right: auto;
}

/* HYT official footer. Scoped Bootstrap utilities keep this block standalone. */
@font-face {
    font-family: 'HYT Themify';
    src: url('assets/themify.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

footer.bg-brown4.border_top_green.full-overlay {
    display: block;
    position: relative;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 6vh 0 0;
    border-top: 1px solid #d8ccbe;
    background: #534232;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.8vh;
    letter-spacing: normal;
}

footer.bg-brown4 .container {
    width: 95%;
    max-width: 90vw;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
}

footer.bg-brown4 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

footer.bg-brown4 .col-12 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}

footer.bg-brown4 .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

footer.bg-brown4 .mb-2 {
    margin-bottom: .5rem;
}

footer.bg-brown4 .mb-4 {
    margin-bottom: 1.5rem;
}

footer.bg-brown4 .mt-5 {
    margin-top: 3rem;
}

footer.bg-brown4 .pt-5 {
    padding-top: 3rem;
}

footer.bg-brown4 .pb-3 {
    padding-bottom: 1rem;
}

footer.bg-brown4 .text-left {
    text-align: left;
}

footer.bg-brown4 .text-center {
    text-align: center;
}

footer.bg-brown4 .text-uppercase {
    text-transform: uppercase;
}

footer.bg-brown4 .font-weight-bold {
    font-weight: 700;
}

footer.bg-brown4 h2.footer_titre {
    margin-top: 0;
    padding: 0;
    font-weight: 700;
    line-height: 2.2vh;
    letter-spacing: normal;
}

footer.bg-brown4 .footer_titre {
    color: #d8ccbe;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5vh;
}

footer.bg-brown4 p.footer_titre {
    margin-top: 1em;
    font-weight: 400;
    line-height: 2vh;
}

footer.bg-brown4 .font_gotham_light {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2vh;
    font-weight: 700;
}

footer.bg-brown4 .list-unstyled {
    list-style: none;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0;
}

footer.bg-brown4 li.small {
    display: flex;
    padding: 0;
    font-size: 80%;
    font-weight: 400;
}

footer.bg-brown4 .small a {
    display: block;
    padding: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    transition: color .1s;
}

footer.bg-brown4 .small a + a {
    margin-left: 15px;
}

footer.bg-brown4 .small a.footer_link {
    width: 100%;
    border: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5vh;
    line-height: 3vh;
}

footer.bg-brown4 .small a:hover,
footer.bg-brown4 .small a:focus-visible {
    color: #d8ccbe;
}

footer.bg-brown4 [class^="ti-"],
footer.bg-brown4 [class*=" ti-"] {
    font-family: 'HYT Themify';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer.bg-brown4 .ti-instagram::before {
    content: '\e73d';
}

footer.bg-brown4 .ti-facebook::before {
    content: '\e741';
}

footer.bg-brown4 .ti-youtube::before {
    content: '\e728';
}

footer.bg-brown4 .ti-linkedin::before {
    content: '\e735';
}

@media (min-width: 576px) {
    footer.bg-brown4 .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    footer.bg-brown4 .container {
        max-width: 80vw;
    }
}

@media (min-width: 992px) {
    footer.bg-brown4 .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* HYT shared header, desktop/mobile menu and split-panel loader. */
:root {
    --header-height: 6vh;
}

header.hyt-header {
    height: 6vh;
    padding: 0 2vw 0 1.5vw;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #d8ccbe;
}

.hyt-menu-toggle,
.hyt-menu-close {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 6vh;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: #d8ccbe;
    font: 400 1.2vh 'Montserrat', sans-serif;
    cursor: pointer;
}

.hyt-menu-bars {
    display: block;
    width: 3vh;
    height: 13px;
    border-top: 1px solid #d8ccbe;
    border-bottom: 1px solid #d8ccbe;
}

.hyt-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height: 4vh;
}

.hyt-brand img {
    display: block;
    width: auto;
    height: 100%;
}

.hyt-brand .hyt-brand-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.hyt-brand:hover .hyt-brand-hover {
    opacity: 1;
}

.hyt-brand:hover > img:first-child {
    opacity: 0;
}

.hyt-store {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 1.2vh;
    font-weight: 400;
    color: #d8ccbe;
}

.hyt-pin,
.hyt-menu-social span {
    font-family: 'HYT Themify';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.hyt-pin::before {
    content: '\e693';
}

.hyt-menu-dialog {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    overflow: hidden;
}

.hyt-menu-dialog::backdrop {
    background: transparent;
}

.hyt-menu-close {
    position: absolute;
    top: 0;
    left: 1.5vw;
}

.hyt-menu-cross {
    position: relative;
    display: block;
    width: 3vh;
    height: 3vh;
}

.hyt-menu-cross::before,
.hyt-menu-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
}

.hyt-menu-cross::after {
    transform: rotate(-45deg);
}

.hyt-menu-panel {
    position: absolute;
    top: 6vh;
    left: 0;
    width: 30vw;
    height: calc(100dvh - 6vh);
    padding: 2vh 20px 20px 1.5vw;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: transparent;
    animation: hyt-menu-enter .3s ease both;
}

.hyt-menu-links {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-bottom: 10vh;
}

.hyt-nav-group + .hyt-nav-group {
    margin-top: 1rem;
}

.hyt-nav-group h2 {
    color: #d8ccbe;
    font-size: 1.5vh;
    line-height: 2vh;
    font-weight: 400;
    letter-spacing: normal;
    margin: 0 0 1rem;
    padding: 10px 5px 0;
    border-bottom: 1px solid #d8ccbe;
    padding-bottom: 8px;
}

.hyt-nav-group h2 a {
    color: inherit;
}

.hyt-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hyt-nav-group li a {
    display: block;
    padding: 0 5px;
    color: white;
    font-size: 1.2vh;
    font-weight: 700;
    line-height: 2.2rem;
    transition: color .1s;
}

.hyt-nav-group a:hover,
.hyt-menu-social a:hover {
    color: #d8ccbe;
}

.hyt-menu-social {
    display: flex;
    flex: none;
    gap: 15px;
    padding: 12px 5px 0;
}

.hyt-menu-social a {
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.hyt-instagram::before {
    content: '\e73d';
}

.hyt-facebook::before {
    content: '\e741';
}

.hyt-youtube::before {
    content: '\e728';
}

.hyt-linkedin::before {
    content: '\e735';
}

.hyt-menu-toggle:focus-visible,
.hyt-menu-close:focus-visible,
.hyt-menu-dialog a:focus-visible {
    outline: 2px solid #d8ccbe;
    outline-offset: 3px;
}

@keyframes hyt-menu-enter {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 899px) {
    .hyt-store {
        display: none;
    }
}

@media (max-width: 800px) {
    .hyt-menu-panel {
        width: 90vw;
        padding-top: 0;
    }
}

html.hyt-loading {
    overflow: hidden;
}

.hyt-loader {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
}

.hyt-loading .hyt-loader,
.hyt-loaded .hyt-loader {
    display: block;
}

.hyt-loading .hyt-loader {
    pointer-events: auto;
}

.hyt-loader-left,
.hyt-loader-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    transition: transform .7s .3s cubic-bezier(.645,.045,.355,1);
}

.hyt-loader-left {
    left: 0;
    width: 51%;
    background: radial-gradient(ellipse at right center, #dbc6ad 0%, #b0967d 24%, #7b614a 56%, #534232 86%, #534233 100%);
}

.hyt-loader-right {
    right: 0;
    background: radial-gradient(ellipse at left center, #dbc6ad 0%, #b0967d 24%, #7b614a 56%, #534232 86%, #534233 100%);
}

.hyt-loader-brand {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}

.hyt-loader-brand img {
    width: auto;
    height: 5vh;
}

.hyt-loader-brand p {
    color: #fff;
    font: 700 1.2vh/5vh 'Montserrat', sans-serif;
    margin: 1rem 0 0;
}

.hyt-loaded .hyt-loader-left {
    transform: translateX(-100%);
}

.hyt-loaded .hyt-loader-right {
    transform: translateX(100%);
}

.hyt-loaded .hyt-loader-brand {
    opacity: 0;
}

.hyt-loaded .hyt-loader {
    visibility: hidden;
    transition: visibility 0s 1s;
}

@media (prefers-reduced-motion: reduce) {
    .hyt-menu-panel {
        animation: none;
    }

    .hyt-loader-left,
    .hyt-loader-right,
    .hyt-loader-brand,
    .hyt-loaded .hyt-loader {
        transition: none;
    }
}

.hyt-menu-open .hyt-menu-toggle {
    visibility: hidden;
}

/* Programmatic focus on opening must not draw a frame around MENU. */
.hyt-menu-close:focus {
    outline: none;
    box-shadow: none;
}

.hyt-menu-dialog.hyt-keyboard-navigation .hyt-menu-close:focus-visible {
    outline: 1px dashed #d8ccbe;
    outline-offset: -2px;
}

/* The watch and one complete text panel share the same scroll steps. */
.details.is-stepped {
    height: calc(100svh - var(--header-height));
}

.details.is-stepped .visual-stage {
    position: relative;
    top: 0;
    height: 100%;
    min-height: 0;
}

.details.is-stepped .chapters {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.details.is-stepped .chapter {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    padding: 32px 12%;
    border: 0;
    overflow-y: auto;
    justify-content: safe center;
}

@media (max-width: 760px) {
    .details.is-stepped {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 40% 60%;
    }

    .details.is-stepped .chapter {
        padding: 20px 7%;
    }

    .details.is-stepped .chapter .eyebrow {
        margin-bottom: 12px;
    }

    .details.is-stepped .chapter h3 {
        margin-bottom: 16px;
    }

    .details.is-stepped .chapter p:not(.eyebrow) {
        margin-bottom: 18px;
    }
}

